From 0885c8102a4c4e6321fb1d8754a30bd9531d5cc6 Mon Sep 17 00:00:00 2001 From: abuiquoc <78238832+abuiquoc@users.noreply.github.com> Date: Tue, 20 Jan 2026 11:28:25 +0100 Subject: [PATCH 1/3] Delete old migration_of_opensearch_to_stac_guide.ipynb --- ...igration_of_opensearch_to_stac_guide.ipynb | 8113 ----------------- 1 file changed, 8113 deletions(-) delete mode 100644 geo/migration_of_opensearch_to_stac_guide.ipynb diff --git a/geo/migration_of_opensearch_to_stac_guide.ipynb b/geo/migration_of_opensearch_to_stac_guide.ipynb deleted file mode 100644 index 22ea68a..0000000 --- a/geo/migration_of_opensearch_to_stac_guide.ipynb +++ /dev/null @@ -1,8113 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "id": "39d4bfb3-2594-48b5-8b4e-cd879500c7c6", - "metadata": {}, - "source": [ - "# **Switch to STAC Catalogue API - OpenSearch Catalogue API Decommissioning**" - ] - }, - { - "cell_type": "markdown", - "id": "e354bcb1-9a35-42d6-b8ed-a767f698ff76", - "metadata": {}, - "source": [ - "## **Introduction**" - ] - }, - { - "attachments": {}, - "cell_type": "markdown", - "id": "7ade6582-c6a6-43e1-ac26-d17159d50ecf", - "metadata": {}, - "source": [ - "Due to the planned **[decommissioning of the OpenSearch Catalogue API](https://dataspace.copernicus.eu/news/2025-10-16-opensearch-catalogue-api-decommissioning-notice)** (hereafter referred to as Resto) scheduled for **2 February 2026**, users are encouraged to prepare their services and integrations for a transition to the STAC Catalogue API. This Jupyter notebook has been created as a practical migration guide to support that process and to facilitate a smooth and informed transition." - ] - }, - { - "attachments": {}, - "cell_type": "markdown", - "id": "8e259776-6382-48e7-9558-c602c7b6de0f", - "metadata": {}, - "source": [ - "The primary goal of this notebook is to help users understand how existing Resto-based workflows can be translated into equivalent STAC API queries. It provides conceptual guidance as well as concrete examples, enabling users to gradually adapt their applications while preserving existing functionality.\n", - "\n", - "Beyond serving as a replacement for Resto interface, STAC introduces a richer and more expressive data model, along with extended capabilities. By providing a standardized schema to describe spatiotemporal assets, STAC improves data interoperability across platforms and tools. This standardization lowers the entry barrier to efficiently discover, access, and exploit satellite and remote sensing data." - ] - }, - { - "attachments": {}, - "cell_type": "markdown", - "id": "47b0d475-3d1f-482b-91e2-1e4683ff12a8", - "metadata": {}, - "source": [ - "This notebook is structured into three main sections, focusing respectively on:\n", - "\n", - "* Collections & Items,\n", - "* Specific Items,\n", - "* Filters & Extensions.\n", - " \n", - "Each section focuses on practical usage patterns and highlights the correspondence between Resto query parameters and their STAC equivalents, allowing users to incrementally migrate their discovery workflows with confidence." - ] - }, - { - "cell_type": "markdown", - "id": "b673f64a-3bbd-413b-aa18-6c0827ac00e0", - "metadata": {}, - "source": [ - "## **Libraries**\n", - "\n", - "Before we begin, we need to make sure that all the required libraries are installed and imported.\n", - "\n", - "* `pandas`: Python library used for data manipulation and analysis \n", - "* `requests`: Python library used for sending HTTP requests and interacting with APIs \n", - "* `xml.etree.ElementTree`: Python library used for parsing and navigating an XML document" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "id": "2cbc4397-4453-4aa1-b353-e5d27b53d136", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Requirement already satisfied: pandas in /opt/conda/lib/python3.11/site-packages (2.3.3)\n", - "Requirement already satisfied: numpy>=1.23.2 in /opt/conda/lib/python3.11/site-packages (from pandas) (2.4.0)\n", - "Requirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/lib/python3.11/site-packages (from pandas) (2.8.2)\n", - "Requirement already satisfied: pytz>=2020.1 in /opt/conda/lib/python3.11/site-packages (from pandas) (2023.3)\n", - "Requirement already satisfied: tzdata>=2022.7 in /opt/conda/lib/python3.11/site-packages (from pandas) (2025.2)\n", - "Requirement already satisfied: six>=1.5 in /opt/conda/lib/python3.11/site-packages (from python-dateutil>=2.8.2->pandas) (1.16.0)\n" - ] - } - ], - "source": [ - "!pip install pandas\n", - "import pandas as pd\n", - "import requests\n", - "import xml.etree.ElementTree as ET" - ] - }, - { - "cell_type": "markdown", - "id": "7d90fbf7-3016-407d-9254-5a24e101fa16", - "metadata": {}, - "source": [ - "## **Collections & Items**\n", - "\n", - "This section is dedicated to exploring **collections** - discovering which collections are available, examining the products they contain, and accessing metadata and properties associated with them. \n", - "\n", - "It also covers **items** within those collections, including how to search for them, retrieve their attributes, and understand their spatial, temporal, and product-specific information.\n", - "\n", - "We will first cover aspects related to Resto and then transition smoothly to STAC." - ] - }, - { - "cell_type": "markdown", - "id": "72a007a8-041a-411f-bf77-3128c14e0653", - "metadata": {}, - "source": [ - "### **Resto**\n", - "\n", - "Data in Resto are organized into collections, which correspond to different satellites or data sources. Queries can target either all collections or a specific collection. \n", - "\n", - "Accessing the base Resto URL provides information about products available in the catalogue, rather than details about collections themselves - it does not provide collection-level summaries or structure." - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "id": "c4bc044f-e18d-4e5c-8576-0306bf5bf746", - "metadata": {}, - "outputs": [], - "source": [ - "resto_url = (\n", - " \"https://catalogue.dataspace.copernicus.eu/resto/api/collections/search.json?\"\n", - ")" - ] - }, - { - "attachments": {}, - "cell_type": "markdown", - "id": "9c448cb6-fd79-4add-a891-06507570c80d", - "metadata": {}, - "source": [ - "Executing the query below will return metadata about the products in the catalogue. The response includes key fields for each product: type, id, geometry, properties. \n", - "\n", - "> **Hint:** The `.head()` function is used to display the first five rows of a DataFrame. This is useful for quickly inspecting the structure of your data and verifying that it has been loaded correctly." - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "id": "138b99a2-c08c-435d-a333-b370e3e54806", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "HTTPS Request: https://catalogue.dataspace.copernicus.eu/resto/api/collections/search.json?\n" - ] - }, - { - "data": { - "text/html": [ - "
| \n", - " | type | \n", - "id | \n", - "geometry | \n", - "properties | \n", - "
|---|---|---|---|---|
| 0 | \n", - "Feature | \n", - "91822f33-b15c-5b60-aa39-6d9f6f5c773b | \n", - "{'type': 'Polygon', 'coordinates': [[[-176.587... | \n", - "{'collection': 'SENTINEL-3', 'status': 'ONLINE... | \n", - "
| 1 | \n", - "Feature | \n", - "bfd8cd54-52a7-48e2-88d0-58df86167399 | \n", - "{'type': 'Polygon', 'coordinates': [[[-145.885... | \n", - "{'collection': 'SENTINEL-3', 'status': 'ONLINE... | \n", - "
| 2 | \n", - "Feature | \n", - "eb59e26f-c472-4f5f-8289-49bce7b13b7e | \n", - "{'type': 'MultiPolygon', 'coordinates': [[[[10... | \n", - "{'collection': 'SENTINEL-3', 'status': 'ONLINE... | \n", - "
| 3 | \n", - "Feature | \n", - "85899f29-0854-30a0-b9a7-5f2d332e6f10 | \n", - "{'type': 'Polygon', 'coordinates': [[[140.656,... | \n", - "{'collection': 'SENTINEL-3', 'status': 'ONLINE... | \n", - "
| 4 | \n", - "Feature | \n", - "2b5ae1be-1831-447d-90b0-1e4b4d34d7b2 | \n", - "{'type': 'Polygon', 'coordinates': [[[138.511,... | \n", - "{'collection': 'SENTINEL-3', 'status': 'ONLINE... | \n", - "
| \n", - " | collection | \n", - "short_name | \n", - "description | \n", - "parameters | \n", - "
|---|---|---|---|---|
| 0 | \n", - "Sentinel1 | \n", - "Sentinel-1 | \n", - "Sentinel-1 Collection | \n", - "[maxRecords, index, page, identifier, geometry... | \n", - "
| 1 | \n", - "Sentinel2 | \n", - "Sentinel-2 | \n", - "Sentinel-2 Collection | \n", - "[maxRecords, index, page, identifier, geometry... | \n", - "
| 2 | \n", - "Sentinel3 | \n", - "Sentinel-3 | \n", - "Sentinel-3 Collection | \n", - "[maxRecords, index, page, identifier, geometry... | \n", - "
| 3 | \n", - "Sentinel5P | \n", - "Sentinel-5P | \n", - "Sentinel-5P Collection | \n", - "[maxRecords, index, page, identifier, geometry... | \n", - "
| 4 | \n", - "CLMS | \n", - "CLMS | \n", - "Copernicus Land Monitoring Service Collection | \n", - "[maxRecords, index, page, identifier, geometry... | \n", - "
| \n", - " | type | \n", - "id | \n", - "geometry | \n", - "properties | \n", - "
|---|---|---|---|---|
| 0 | \n", - "Feature | \n", - "000bcf77-ddcf-4fba-b559-d4caaa972e96 | \n", - "{'type': 'Point', 'coordinates': [67.04, 40.87]} | \n", - "{'collection': 'CLMS', 'status': 'ONLINE', 'li... | \n", - "
| 1 | \n", - "Feature | \n", - "0018595d-a646-44ed-9b44-b32b0acf2cc1 | \n", - "{'type': 'Point', 'coordinates': [-87.0, 44.0]} | \n", - "{'collection': 'CLMS', 'status': 'ONLINE', 'li... | \n", - "
| 2 | \n", - "Feature | \n", - "0029ff2f-67ed-4d14-bc45-7486c03af258 | \n", - "{'type': 'Point', 'coordinates': [13.29, 58.81]} | \n", - "{'collection': 'CLMS', 'status': 'ONLINE', 'li... | \n", - "
| 3 | \n", - "Feature | \n", - "003beb57-788a-4ed1-b4f2-440fba282b07 | \n", - "{'type': 'Point', 'coordinates': [-62.8, 7.41]} | \n", - "{'collection': 'CLMS', 'status': 'ONLINE', 'li... | \n", - "
| 4 | \n", - "Feature | \n", - "00684216-d9a5-4cc1-9944-e0bba63a09d5 | \n", - "{'type': 'Point', 'coordinates': [28.0, -16.93]} | \n", - "{'collection': 'CLMS', 'status': 'ONLINE', 'li... | \n", - "
| \n", - " | collection | \n", - "status | \n", - "parentIdentifier | \n", - "title | \n", - "description | \n", - "organisationName | \n", - "startDate | \n", - "completionDate | \n", - "productType | \n", - "processingLevel | \n", - "... | \n", - "license.grantedOrganizationCountries | \n", - "license.grantedFlags | \n", - "license.viewService | \n", - "license.signatureQuota | \n", - "license.description.shortName | \n", - "centroid.type | \n", - "centroid.coordinates | \n", - "services.download.url | \n", - "services.download.mimeType | \n", - "services.download.size | \n", - "
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", - "CLMS | \n", - "ONLINE | \n", - "None | \n", - "c_gls_WL_202509220600_1300000000138_ALTI_V2.2.... | \n", - "Copernicus program priorities are to gain from... | \n", - "None | \n", - "1995-06-02T15:31:00.000000Z | \n", - "2025-09-22T06:00:00.000000Z | \n", - "river_and_lake_water_level | \n", - "None | \n", - "... | \n", - "None | \n", - "None | \n", - "public | \n", - "-1 | \n", - "No license | \n", - "Point | \n", - "[67.04, 40.87] | \n", - "https://catalogue.dataspace.copernicus.eu/down... | \n", - "application/geo+json | \n", - "281916 | \n", - "
| 1 | \n", - "CLMS | \n", - "ONLINE | \n", - "None | \n", - "c_gls_WL_202510170900_1300000000006_ALTI_V2.2.... | \n", - "Copernicus program priorities are to gain from... | \n", - "None | \n", - "1992-09-27T02:35:00.000000Z | \n", - "2025-10-17T09:00:00.000000Z | \n", - "river_and_lake_water_level | \n", - "None | \n", - "... | \n", - "None | \n", - "None | \n", - "public | \n", - "-1 | \n", - "No license | \n", - "Point | \n", - "[-87.0, 44.0] | \n", - "https://catalogue.dataspace.copernicus.eu/down... | \n", - "application/geo+json | \n", - "688083 | \n", - "
| 2 | \n", - "CLMS | \n", - "ONLINE | \n", - "None | \n", - "c_gls_WL_202509260506_1300000000105_ALTI_V2.2.... | \n", - "Copernicus program priorities are to gain from... | \n", - "None | \n", - "1992-09-28T22:30:00.000000Z | \n", - "2025-09-26T05:06:00.000000Z | \n", - "river_and_lake_water_level | \n", - "None | \n", - "... | \n", - "None | \n", - "None | \n", - "public | \n", - "-1 | \n", - "No license | \n", - "Point | \n", - "[13.29, 58.81] | \n", - "https://catalogue.dataspace.copernicus.eu/down... | \n", - "application/geo+json | \n", - "373184 | \n", - "
| 3 | \n", - "CLMS | \n", - "ONLINE | \n", - "None | \n", - "c_gls_WL_202505171602_1300000000073_ALTI_V2.2.... | \n", - "Copernicus program priorities are to gain from... | \n", - "None | \n", - "1992-09-30T00:51:00.000000Z | \n", - "2025-05-17T16:02:00.000000Z | \n", - "river_and_lake_water_level | \n", - "None | \n", - "... | \n", - "None | \n", - "None | \n", - "public | \n", - "-1 | \n", - "No license | \n", - "Point | \n", - "[-62.8, 7.41] | \n", - "https://catalogue.dataspace.copernicus.eu/down... | \n", - "application/geo+json | \n", - "182737 | \n", - "
| 4 | \n", - "CLMS | \n", - "ONLINE | \n", - "None | \n", - "c_gls_WL_202507122311_1300000000172_ALTI_V2.2.... | \n", - "Copernicus program priorities are to gain from... | \n", - "None | \n", - "1992-09-26T00:14:00.000000Z | \n", - "2025-07-12T23:11:00.000000Z | \n", - "river_and_lake_water_level | \n", - "None | \n", - "... | \n", - "None | \n", - "None | \n", - "public | \n", - "-1 | \n", - "No license | \n", - "Point | \n", - "[28.0, -16.93] | \n", - "https://catalogue.dataspace.copernicus.eu/down... | \n", - "application/geo+json | \n", - "355715 | \n", - "
5 rows × 37 columns
\n", - "| \n", - " | id | \n", - "type | \n", - "links | \n", - "title | \n", - "assets | \n", - "extent | \n", - "license | \n", - "keywords | \n", - "providers | \n", - "summaries | \n", - "... | \n", - "auth:schemes | \n", - "sci:citation | \n", - "stac_version | \n", - "stac_extensions | \n", - "storage:schemes | \n", - "bands | \n", - "sci:doi | \n", - "ceosard:type | \n", - "ceosard:specification | \n", - "ceosard:specification_version | \n", - "
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", - "sentinel-3-sl-2-aod-nrt | \n", - "Collection | \n", - "[{'rel': 'items', 'type': 'application/geo+jso... | \n", - "Sentinel-3 SLSTR Aerosol Optical Depth (NRT) | \n", - "{'thumbnail': {'href': 'https://s3.waw3-2.clou... | \n", - "{'spatial': {'bbox': [[-180, -90, 180, 90]]}, ... | \n", - "other | \n", - "[Sentinel, Copernicus, ESA, Satellite, Global,... | \n", - "[{'url': 'https://sentinels.copernicus.eu/web/... | \n", - "{'gsd': [9500], 'platform': ['sentinel-3a', 's... | \n", - "... | \n", - "{'s3': {'type': 's3'}, 'oidc': {'type': 'openI... | \n", - "Copernicus Sentinel data [Year] | \n", - "1.1.0 | \n", - "[https://stac-extensions.github.io/alternate-a... | \n", - "{'cdse-s3': {'type': 'custom-s3', 'title': 'Co... | \n", - "NaN | \n", - "NaN | \n", - "NaN | \n", - "NaN | \n", - "NaN | \n", - "
| 1 | \n", - "sentinel-1-global-mosaics | \n", - "Collection | \n", - "[{'rel': 'items', 'type': 'application/geo+jso... | \n", - "Sentinel-1 Global Mosaics | \n", - "{'thumbnail': {'href': 'https://s3.waw3-2.clou... | \n", - "{'spatial': {'bbox': [[-180, -90, 180, 90]]}, ... | \n", - "other | \n", - "[Sentinel, Copernicus, ESA, GRD, SAR, C-Band, ... | \n", - "[{'url': 'https://sentinels.copernicus.eu/web/... | \n", - "{'gsd': [20, 40], 'instruments': ['sar'], 'pro... | \n", - "... | \n", - "{'s3': {'type': 's3'}, 'oidc': {'type': 'openI... | \n", - "Copernicus Sentinel data [Year] | \n", - "1.1.0 | \n", - "[https://stac-extensions.github.io/authenticat... | \n", - "{'cdse-s3': {'type': 'custom-s3', 'title': 'Co... | \n", - "NaN | \n", - "NaN | \n", - "NaN | \n", - "NaN | \n", - "NaN | \n", - "
| 2 | \n", - "sentinel-3-olci-2-wfr-nrt | \n", - "Collection | \n", - "[{'rel': 'items', 'type': 'application/geo+jso... | \n", - "Sentinel-3 OLCI Water Full Resolution (NRT) | \n", - "{'thumbnail': {'href': 'https://s3.waw3-2.clou... | \n", - "{'spatial': {'bbox': [[-180, -90, 180, 90]]}, ... | \n", - "other | \n", - "[Sentinel, Copernicus, ESA, Satellite, Global,... | \n", - "[{'url': 'https://sentinels.copernicus.eu/web/... | \n", - "{'gsd': [300], 'platform': ['sentinel-3a', 'se... | \n", - "... | \n", - "{'s3': {'type': 's3'}, 'oidc': {'type': 'openI... | \n", - "Copernicus Sentinel data [Year] | \n", - "1.1.0 | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "{'cdse-s3': {'type': 'custom-s3', 'title': 'Co... | \n", - "[{'name': 'Oa01', 'description': 'Aerosol corr... | \n", - "NaN | \n", - "NaN | \n", - "NaN | \n", - "NaN | \n", - "
| 3 | \n", - "sentinel-5p-l2-ch4-nrti | \n", - "Collection | \n", - "[{'rel': 'items', 'type': 'application/geo+jso... | \n", - "Sentinel-5P Level 2 Methane (NRTI) | \n", - "{'thumbnail': {'href': 'https://s3.waw3-2.clou... | \n", - "{'spatial': {'bbox': [[-180, -90, 180, 90]]}, ... | \n", - "other | \n", - "[7000m, Atmosphere, CH4, Copernicus, EC, ESA, ... | \n", - "[{'url': 'https://sentinel.esa.int/web/sentine... | \n", - "{'gsd': [7000], 'platform': ['sentinel-5p'], '... | \n", - "... | \n", - "{'s3': {'type': 's3'}, 'oidc': {'type': 'openI... | \n", - "Copernicus Sentinel data [Year] | \n", - "1.1.0 | \n", - "[https://stac-extensions.github.io/alternate-a... | \n", - "{'cdse-s3': {'type': 'custom-s3', 'title': 'Co... | \n", - "NaN | \n", - "NaN | \n", - "NaN | \n", - "NaN | \n", - "NaN | \n", - "
| 4 | \n", - "sentinel-1-slc-wv | \n", - "Collection | \n", - "[{'rel': 'items', 'type': 'application/geo+jso... | \n", - "Sentinel-1 Single Look Complex: WV | \n", - "{'thumbnail': {'href': 'https://s3.waw3-2.clou... | \n", - "{'spatial': {'bbox': [[-180, -90, 180, 90]]}, ... | \n", - "other | \n", - "[Sentinel, Copernicus, ESA, SLC, SAR, C-Band, ... | \n", - "[{'url': 'https://sentinel.esa.int/web/sentine... | \n", - "{'platform': ['sentinel-1a', 'sentinel-1b', 's... | \n", - "... | \n", - "{'s3': {'type': 's3'}, 'oidc': {'type': 'openI... | \n", - "Copernicus Sentinel data [Year] | \n", - "1.1.0 | \n", - "[https://stac-extensions.github.io/authenticat... | \n", - "{'cdse-s3': {'type': 'custom-s3', 'title': 'Co... | \n", - "NaN | \n", - "NaN | \n", - "NaN | \n", - "NaN | \n", - "NaN | \n", - "
5 rows × 22 columns
\n", - "| \n", - " | id | \n", - "title | \n", - "summaries | \n", - "
|---|---|---|---|
| 0 | \n", - "sentinel-3-sl-2-aod-nrt | \n", - "Sentinel-3 SLSTR Aerosol Optical Depth (NRT) | \n", - "{'gsd': [9500], 'platform': ['sentinel-3a', 's... | \n", - "
| 1 | \n", - "sentinel-1-global-mosaics | \n", - "Sentinel-1 Global Mosaics | \n", - "{'gsd': [20, 40], 'instruments': ['sar'], 'pro... | \n", - "
| 2 | \n", - "sentinel-3-olci-2-wfr-nrt | \n", - "Sentinel-3 OLCI Water Full Resolution (NRT) | \n", - "{'gsd': [300], 'platform': ['sentinel-3a', 'se... | \n", - "
| 3 | \n", - "sentinel-5p-l2-ch4-nrti | \n", - "Sentinel-5P Level 2 Methane (NRTI) | \n", - "{'gsd': [7000], 'platform': ['sentinel-5p'], '... | \n", - "
| 4 | \n", - "sentinel-1-slc-wv | \n", - "Sentinel-1 Single Look Complex: WV | \n", - "{'platform': ['sentinel-1a', 'sentinel-1b', 's... | \n", - "
| \n", - " | id | \n", - "
|---|---|
| 0 | \n", - "sentinel-3-sl-2-aod-nrt | \n", - "
| 1 | \n", - "sentinel-1-global-mosaics | \n", - "
| 2 | \n", - "sentinel-3-olci-2-wfr-nrt | \n", - "
| 3 | \n", - "sentinel-5p-l2-ch4-nrti | \n", - "
| 4 | \n", - "sentinel-1-slc-wv | \n", - "
| ... | \n", - "... | \n", - "
| 135 | \n", - "sentinel-5p-l2-o3-nrti | \n", - "
| 136 | \n", - "sentinel-5p-l2-o3-offl | \n", - "
| 137 | \n", - "sentinel-5p-l2-so2-offl | \n", - "
| 138 | \n", - "sentinel-5p-l2-so2-nrti | \n", - "
| 139 | \n", - "sentinel-5p-l2-so2-rpro | \n", - "
140 rows × 1 columns
\n", - "| \n", - " | id | \n", - "type | \n", - "bands | \n", - "links | \n", - "title | \n", - "assets | \n", - "extent | \n", - "license | \n", - "sci:doi | \n", - "keywords | \n", - "... | \n", - "description | \n", - "item_assets | \n", - "auth:schemes | \n", - "ceosard:type | \n", - "sci:citation | \n", - "stac_version | \n", - "stac_extensions | \n", - "storage:schemes | \n", - "ceosard:specification | \n", - "ceosard:specification_version | \n", - "
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", - "sentinel-2-l2a | \n", - "Collection | \n", - "[{'gsd': 60, 'name': 'B01', 'description': 'Co... | \n", - "[{'rel': 'items', 'type': 'application/geo+jso... | \n", - "Sentinel-2 Level-2A | \n", - "{'thumbnail': {'href': 'https://s3.waw3-2.clou... | \n", - "{'spatial': {'bbox': [[-180, -90, 180, 90]]}, ... | \n", - "other | \n", - "10.5270/S2_-znk9xsj | \n", - "[Copernicus, Sentinel, EU, ESA, Satellite, Glo... | \n", - "... | \n", - "The Sentinel-2 Level-2A Collection 1 product p... | \n", - "{'AOT_10m': {'gsd': 10, 'type': 'image/jp2', '... | \n", - "{'s3': {'type': 's3'}, 'oidc': {'type': 'openI... | \n", - "optical | \n", - "Copernicus Sentinel data [Year] | \n", - "1.1.0 | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "{'cdse-s3': {'type': 'custom-s3', 'title': 'Co... | \n", - "SR | \n", - "5.0.1 | \n", - "
1 rows × 22 columns
\n", - "| \n", - " | id | \n", - "bbox | \n", - "type | \n", - "links | \n", - "assets | \n", - "geometry | \n", - "collection | \n", - "properties | \n", - "stac_extensions | \n", - "stac_version | \n", - "
|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", - "S2B_MSIL2A_20251231T051319_N0511_R133_T31CEJ_2... | \n", - "[2.998598727270369, -82.62787974508461, 3.5898... | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[2.998682... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-12-31T07:23:05.00... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 1 | \n", - "S2B_MSIL2A_20251231T051319_N0511_R133_T31CDM_2... | \n", - "[-2.277998803053058, -80.22883981478951, 0.184... | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[-2.18323... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-12-31T07:23:23.00... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 2 | \n", - "S2B_MSIL2A_20251231T051319_N0511_R133_T31CDL_2... | \n", - "[-2.803841979337122, -81.13320280779526, 1.437... | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[0.108578... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-12-31T07:30:58.00... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 3 | \n", - "S2B_MSIL2A_20251231T051319_N0511_R133_T31CDK_2... | \n", - "[-3.447304707739892, -82.03781529080683, 2.739... | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[1.369168... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-12-31T07:31:31.00... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 4 | \n", - "S2B_MSIL2A_20251231T051319_N0511_R133_T30CWS_2... | \n", - "[-3.001058129404774, -80.25242038514605, 0.184... | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[-3.00103... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-12-31T07:24:46.00... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| \n", - " | gsd | \n", - "created | \n", - "expires | \n", - "updated | \n", - "datetime | \n", - "platform | \n", - "grid:code | \n", - "published | \n", - "instruments | \n", - "end_datetime | \n", - "... | \n", - "storage:schemes.cdse-s3.title | \n", - "storage:schemes.cdse-s3.platform | \n", - "storage:schemes.cdse-s3.description | \n", - "storage:schemes.cdse-s3.requester_pays | \n", - "storage:schemes.creodias-s3.type | \n", - "storage:schemes.creodias-s3.title | \n", - "storage:schemes.creodias-s3.platform | \n", - "storage:schemes.creodias-s3.description | \n", - "storage:schemes.creodias-s3.requester_pays | \n", - "processing:software.eometadatatool | \n", - "
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", - "10 | \n", - "2025-12-31T07:23:05.000000Z | \n", - "9999-01-01T00:00:00.000000Z | \n", - "2025-12-31T07:25:38.002693Z | \n", - "2025-12-31T05:13:19.024000Z | \n", - "sentinel-2b | \n", - "MGRS-31CEJ | \n", - "2025-12-31T07:25:38.002693Z | \n", - "[msi] | \n", - "2025-12-31T05:13:19.024000Z | \n", - "... | \n", - "Copernicus Data Space Ecosystem S3 | \n", - "https://eodata.dataspace.copernicus.eu | \n", - "This endpoint provides access to EO data which... | \n", - "False | \n", - "custom-s3 | \n", - "CREODIAS S3 | \n", - "https://eodata.cloudferro.com | \n", - "Comprehensive Earth Observation Data (EODATA) ... | \n", - "True | \n", - "251021130925+dirty | \n", - "
| 1 | \n", - "10 | \n", - "2025-12-31T07:23:23.000000Z | \n", - "9999-01-01T00:00:00.000000Z | \n", - "2025-12-31T07:26:10.381080Z | \n", - "2025-12-31T05:13:19.024000Z | \n", - "sentinel-2b | \n", - "MGRS-31CDM | \n", - "2025-12-31T07:26:10.381080Z | \n", - "[msi] | \n", - "2025-12-31T05:13:19.024000Z | \n", - "... | \n", - "Copernicus Data Space Ecosystem S3 | \n", - "https://eodata.dataspace.copernicus.eu | \n", - "This endpoint provides access to EO data which... | \n", - "False | \n", - "custom-s3 | \n", - "CREODIAS S3 | \n", - "https://eodata.cloudferro.com | \n", - "Comprehensive Earth Observation Data (EODATA) ... | \n", - "True | \n", - "251021130925+dirty | \n", - "
| 2 | \n", - "10 | \n", - "2025-12-31T07:30:58.000000Z | \n", - "9999-01-01T00:00:00.000000Z | \n", - "2025-12-31T07:33:41.761622Z | \n", - "2025-12-31T05:13:19.024000Z | \n", - "sentinel-2b | \n", - "MGRS-31CDL | \n", - "2025-12-31T07:33:41.761622Z | \n", - "[msi] | \n", - "2025-12-31T05:13:19.024000Z | \n", - "... | \n", - "Copernicus Data Space Ecosystem S3 | \n", - "https://eodata.dataspace.copernicus.eu | \n", - "This endpoint provides access to EO data which... | \n", - "False | \n", - "custom-s3 | \n", - "CREODIAS S3 | \n", - "https://eodata.cloudferro.com | \n", - "Comprehensive Earth Observation Data (EODATA) ... | \n", - "True | \n", - "251021130925+dirty | \n", - "
| 3 | \n", - "10 | \n", - "2025-12-31T07:31:31.000000Z | \n", - "9999-01-01T00:00:00.000000Z | \n", - "2025-12-31T07:34:43.634267Z | \n", - "2025-12-31T05:13:19.024000Z | \n", - "sentinel-2b | \n", - "MGRS-31CDK | \n", - "2025-12-31T07:34:43.634267Z | \n", - "[msi] | \n", - "2025-12-31T05:13:19.024000Z | \n", - "... | \n", - "Copernicus Data Space Ecosystem S3 | \n", - "https://eodata.dataspace.copernicus.eu | \n", - "This endpoint provides access to EO data which... | \n", - "False | \n", - "custom-s3 | \n", - "CREODIAS S3 | \n", - "https://eodata.cloudferro.com | \n", - "Comprehensive Earth Observation Data (EODATA) ... | \n", - "True | \n", - "251021130925+dirty | \n", - "
| 4 | \n", - "10 | \n", - "2025-12-31T07:24:46.000000Z | \n", - "9999-01-01T00:00:00.000000Z | \n", - "2025-12-31T07:27:44.406225Z | \n", - "2025-12-31T05:13:19.024000Z | \n", - "sentinel-2b | \n", - "MGRS-30CWS | \n", - "2025-12-31T07:27:44.406225Z | \n", - "[msi] | \n", - "2025-12-31T05:13:19.024000Z | \n", - "... | \n", - "Copernicus Data Space Ecosystem S3 | \n", - "https://eodata.dataspace.copernicus.eu | \n", - "This endpoint provides access to EO data which... | \n", - "False | \n", - "custom-s3 | \n", - "CREODIAS S3 | \n", - "https://eodata.cloudferro.com | \n", - "Comprehensive Earth Observation Data (EODATA) ... | \n", - "True | \n", - "251021130925+dirty | \n", - "
5 rows × 58 columns
\n", - "| \n", - " | $id | \n", - "type | \n", - "title | \n", - "$schema | \n", - "properties | \n", - "additionalProperties | \n", - "
|---|---|---|---|---|---|---|
| 0 | \n", - "https://stac.dataspace.copernicus.eu/v1/querya... | \n", - "object | \n", - "STAC Queryables. | \n", - "http://json-schema.org/draft-07/schema# | \n", - "{'id': {'type': 'string', 'title': 'Item ID', ... | \n", - "True | \n", - "
| \n", - " | 0 | \n", - "
|---|---|
| id.type | \n", - "string | \n", - "
| id.title | \n", - "Item ID | \n", - "
| id.minLength | \n", - "1 | \n", - "
| id.description | \n", - "Item identifier | \n", - "
| datetime.type | \n", - "string | \n", - "
| datetime.title | \n", - "Acquired | \n", - "
| datetime.format | \n", - "date-time | \n", - "
| datetime.pattern | \n", - "(\\+00:00|Z)$ | \n", - "
| datetime.description | \n", - "Datetime | \n", - "
| geometry.$ref | \n", - "https://geojson.org/schema/Feature.json | \n", - "
| geometry.title | \n", - "Item Geometry | \n", - "
| geometry.description | \n", - "Item Geometry | \n", - "
| platform.enum | \n", - "[sentinel-1a, sentinel-1b, sentinel-1c, sentin... | \n", - "
| platform.type | \n", - "string | \n", - "
| platform.title | \n", - "Platform | \n", - "
| platform.description | \n", - "Satellite platform identifier | \n", - "
| grid:code.type | \n", - "string | \n", - "
| grid:code.title | \n", - "Grid Code | \n", - "
| grid:code.pattern | \n", - "^[A-Z0-9]+-[-_.A-Za-z0-9]+$ | \n", - "
| grid:code.description | \n", - "Grid Code | \n", - "
| published.type | \n", - "string | \n", - "
| published.title | \n", - "Published | \n", - "
| published.format | \n", - "date-time | \n", - "
| published.pattern | \n", - "(\\+00:00|Z)$ | \n", - "
| published.description | \n", - "Datetime | \n", - "
| product:type.enum | \n", - "[EW_GRDH_1S, EW_GRDM_1S, IW_GRDH_1S, S1_GRDH_1... | \n", - "
| product:type.type | \n", - "string | \n", - "
| product:type.title | \n", - "Product Type | \n", - "
| product:type.description | \n", - "Product Type | \n", - "
| eo:snow_cover.type | \n", - "number | \n", - "
| eo:snow_cover.title | \n", - "Snow Cover | \n", - "
| eo:snow_cover.maximum | \n", - "100 | \n", - "
| eo:snow_cover.minimum | \n", - "0 | \n", - "
| eo:snow_cover.description | \n", - "Snow cover in percent | \n", - "
| eo:cloud_cover.type | \n", - "number | \n", - "
| eo:cloud_cover.title | \n", - "Cloud Cover | \n", - "
| eo:cloud_cover.maximum | \n", - "100 | \n", - "
| eo:cloud_cover.minimum | \n", - "0 | \n", - "
| eo:cloud_cover.description | \n", - "Cloud cover in percent | \n", - "
| sat:orbit_state.enum | \n", - "[ascending, descending, geostationary] | \n", - "
| sat:orbit_state.type | \n", - "string | \n", - "
| sat:orbit_state.title | \n", - "Orbit State | \n", - "
| sat:orbit_state.description | \n", - "The state of the orbit: ascending or descendin... | \n", - "
| sar:polarizations.enum | \n", - "[HH, HV, VH, VV] | \n", - "
| sar:polarizations.type | \n", - "string | \n", - "
| sar:polarizations.title | \n", - "SAR polarizations | \n", - "
| sar:polarizations.description | \n", - "SAR polarizations | \n", - "
| processing:version.type | \n", - "string | \n", - "
| processing:version.title | \n", - "Processing Version | \n", - "
| processing:version.description | \n", - "Which software/processor version was used to g... | \n", - "
| sat:relative_orbit.type | \n", - "integer | \n", - "
| sat:relative_orbit.title | \n", - "Relative Orbit | \n", - "
| sat:relative_orbit.minimum | \n", - "1 | \n", - "
| sat:relative_orbit.description | \n", - "Satellite relative orbit number | \n", - "
| sar:instrument_mode.enum | \n", - "[EW, IW, SM] | \n", - "
| sar:instrument_mode.type | \n", - "string | \n", - "
| sar:instrument_mode.title | \n", - "Instrument mode | \n", - "
| sar:instrument_mode.description | \n", - "SAR instrument mode | \n", - "
| \n", - " | $id | \n", - "type | \n", - "title | \n", - "$schema | \n", - "properties | \n", - "additionalProperties | \n", - "
|---|---|---|---|---|---|---|
| 0 | \n", - "https://stac.dataspace.copernicus.eu/v1/collec... | \n", - "object | \n", - "STAC Queryables. | \n", - "http://json-schema.org/draft-07/schema# | \n", - "{'id': {'type': 'string', 'title': 'Item ID', ... | \n", - "True | \n", - "
| \n", - " | sentinel-2-l2a | \n", - "
|---|---|
| id.type | \n", - "string | \n", - "
| id.title | \n", - "Item ID | \n", - "
| id.minLength | \n", - "1 | \n", - "
| id.description | \n", - "Item identifier | \n", - "
| datetime.type | \n", - "string | \n", - "
| datetime.title | \n", - "Acquired | \n", - "
| datetime.format | \n", - "date-time | \n", - "
| datetime.pattern | \n", - "(\\+00:00|Z)$ | \n", - "
| datetime.description | \n", - "Datetime | \n", - "
| geometry.$ref | \n", - "https://geojson.org/schema/Feature.json | \n", - "
| geometry.title | \n", - "Item Geometry | \n", - "
| geometry.description | \n", - "Item Geometry | \n", - "
| platform.enum | \n", - "[sentinel-2a, sentinel-2b, sentinel-2c] | \n", - "
| platform.type | \n", - "string | \n", - "
| platform.title | \n", - "Platform | \n", - "
| platform.description | \n", - "Satellite platform identifier | \n", - "
| grid:code.type | \n", - "string | \n", - "
| grid:code.title | \n", - "Grid Code | \n", - "
| grid:code.pattern | \n", - "^[A-Z0-9]+-[-_.A-Za-z0-9]+$ | \n", - "
| grid:code.description | \n", - "Grid Code | \n", - "
| published.type | \n", - "string | \n", - "
| published.title | \n", - "Published | \n", - "
| published.format | \n", - "date-time | \n", - "
| published.description | \n", - "Publication date and time of a product in the ... | \n", - "
| eo:snow_cover.type | \n", - "number | \n", - "
| eo:snow_cover.title | \n", - "Snow Cover | \n", - "
| eo:snow_cover.maximum | \n", - "100 | \n", - "
| eo:snow_cover.minimum | \n", - "0 | \n", - "
| eo:snow_cover.description | \n", - "Snow cover in percent | \n", - "
| eo:cloud_cover.type | \n", - "number | \n", - "
| eo:cloud_cover.title | \n", - "Cloud Cover | \n", - "
| eo:cloud_cover.maximum | \n", - "100 | \n", - "
| eo:cloud_cover.minimum | \n", - "0 | \n", - "
| eo:cloud_cover.description | \n", - "Cloud cover in percent | \n", - "
| sat:orbit_state.enum | \n", - "[ascending, descending, geostationary] | \n", - "
| sat:orbit_state.type | \n", - "string | \n", - "
| sat:orbit_state.title | \n", - "Orbit State | \n", - "
| sat:orbit_state.description | \n", - "The state of the orbit: ascending or descendin... | \n", - "
| processing:version.type | \n", - "string | \n", - "
| processing:version.title | \n", - "Processing Version | \n", - "
| processing:version.description | \n", - "Which software/processor version was used to g... | \n", - "
| sat:relative_orbit.type | \n", - "integer | \n", - "
| sat:relative_orbit.title | \n", - "Relative Orbit | \n", - "
| sat:relative_orbit.minimum | \n", - "1 | \n", - "
| sat:relative_orbit.description | \n", - "Satellite relative orbit number | \n", - "
| \n", - " | 0 | \n", - "
|---|---|
| id | \n", - "S2C_MSIL2A_20251229T094421_N0511_R036_T35ULV_2... | \n", - "
| bbox | \n", - "[23.940406316632895, 53.123645037009204, 25.45... | \n", - "
| type | \n", - "Feature | \n", - "
| links | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "
| assets | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "
| geometry | \n", - "{'type': 'Polygon', 'coordinates': [[[25.45795... | \n", - "
| collection | \n", - "sentinel-2-l2a | \n", - "
| properties | \n", - "{'gsd': 10, 'created': '2025-12-29T12:00:34.00... | \n", - "
| stac_extensions | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "
| stac_version | \n", - "1.1.0 | \n", - "
| \n", - " | 0 | \n", - "
|---|---|
| gsd | \n", - "10 | \n", - "
| created | \n", - "2025-12-29T12:00:34.000000Z | \n", - "
| expires | \n", - "9999-01-01T00:00:00.000000Z | \n", - "
| updated | \n", - "2025-12-29T12:07:04.465575Z | \n", - "
| datetime | \n", - "2025-12-29T09:44:21.025000Z | \n", - "
| platform | \n", - "sentinel-2c | \n", - "
| grid:code | \n", - "MGRS-35ULV | \n", - "
| published | \n", - "2025-12-29T12:04:27.641533Z | \n", - "
| statistics | \n", - "{'water': 0.009615, 'nodata': 28.0182, 'dark_a... | \n", - "
| instruments | \n", - "[msi] | \n", - "
| auth:schemes | \n", - "{'s3': {'type': 's3'}, 'oidc': {'type': 'openI... | \n", - "
| end_datetime | \n", - "2025-12-29T09:44:21.025000Z | \n", - "
| product:type | \n", - "S2MSI2A | \n", - "
| view:azimuth | \n", - "289.976841 | \n", - "
| constellation | \n", - "sentinel-2 | \n", - "
| eo:snow_cover | \n", - "0.0 | \n", - "
| eo:cloud_cover | \n", - "99.62 | \n", - "
| start_datetime | \n", - "2025-12-29T09:44:21.025000Z | \n", - "
| sat:orbit_state | \n", - "descending | \n", - "
| storage:schemes | \n", - "{'cdse-s3': {'type': 'custom-s3', 'title': 'Co... | \n", - "
| eopf:datatake_id | \n", - "GS2C_20251229T094421_006870_N05.11 | \n", - "
| processing:level | \n", - "L2 | \n", - "
| view:sun_azimuth | \n", - "171.251219 | \n", - "
| eopf:datastrip_id | \n", - "S2C_OPER_MSI_L2A_DS_2CPS_20251229T111511_S2025... | \n", - "
| processing:version | \n", - "05.11 | \n", - "
| product:timeliness | \n", - "PT24H | \n", - "
| sat:absolute_orbit | \n", - "6870 | \n", - "
| sat:relative_orbit | \n", - "36 | \n", - "
| view:sun_elevation | \n", - "12.743069 | \n", - "
| processing:datetime | \n", - "2025-12-29T11:15:11.000000Z | \n", - "
| processing:facility | \n", - "ESA | \n", - "
| processing:software | \n", - "{'eometadatatool': '251021130925+dirty'} | \n", - "
| eopf:instrument_mode | \n", - "INS-NOBS | \n", - "
| eopf:origin_datetime | \n", - "2025-12-29T12:00:34.000000Z | \n", - "
| view:incidence_angle | \n", - "8.734348 | \n", - "
| product:timeliness_category | \n", - "NRT | \n", - "
| sat:platform_international_designator | \n", - "2024-157A | \n", - "
| \n", - " | 0 | \n", - "
|---|---|
| water | \n", - "0.009615 | \n", - "
| nodata | \n", - "28.018200 | \n", - "
| dark_area | \n", - "0.003554 | \n", - "
| vegetation | \n", - "0.000000 | \n", - "
| thin_cirrus | \n", - "0.001378 | \n", - "
| cloud_shadow | \n", - "0.357159 | \n", - "
| unclassified | \n", - "0.010159 | \n", - "
| not_vegetated | \n", - "0.001065 | \n", - "
| high_proba_clouds | \n", - "91.287762 | \n", - "
| medium_proba_clouds | \n", - "8.329306 | \n", - "
| saturated_defective | \n", - "0.000000 | \n", - "
| \n", - " | lon | \n", - "lat | \n", - "
|---|---|---|
| 0 | \n", - "25.457953 | \n", - "54.137210 | \n", - "
| 1 | \n", - "24.891915 | \n", - "53.139700 | \n", - "
| 2 | \n", - "24.010911 | \n", - "53.123645 | \n", - "
| 3 | \n", - "23.940406 | \n", - "54.109206 | \n", - "
| 4 | \n", - "25.457953 | \n", - "54.137210 | \n", - "
| \n", - " | 0 | \n", - "
|---|---|
| AOT_10m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| AOT_20m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| AOT_60m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| B01_20m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| B01_60m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| B02_10m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| B02_20m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| B02_60m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| B03_10m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| B03_20m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| B03_60m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| B04_10m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| B04_20m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| B04_60m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| B05_20m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| B05_60m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| B06_20m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| B06_60m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| B07_20m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| B07_60m | \n", - "{'gsd': 60, 'href': 's3://eodata/Sentinel-2/MS... | \n", - "
| B08_10m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| B09_60m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| B11_20m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| B11_60m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| B12_20m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| B12_60m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| B8A_20m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| B8A_60m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| Product | \n", - "{'href': 'https://download.dataspace.copernicu... | \n", - "
| SCL_20m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| SCL_60m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| TCI_10m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| TCI_20m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| TCI_60m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| WVP_10m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| WVP_20m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| WVP_60m | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| thumbnail | \n", - "{'href': 'https://datahub.creodias.eu/odata/v1... | \n", - "
| safe_manifest | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| granule_metadata | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| inspire_metadata | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| product_metadata | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| datastrip_metadata | \n", - "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", - "
| \n", - " | type | \n", - "id | \n", - "geometry | \n", - "properties | \n", - "
|---|---|---|---|---|
| 0 | \n", - "Feature | \n", - "1a63419d-3369-4655-89ad-c372852728f1 | \n", - "{'type': 'Polygon', 'coordinates': [[[-180.0, ... | \n", - "{'collection': 'CLMS', 'status': 'ONLINE', 'li... | \n", - "
| 1 | \n", - "Feature | \n", - "c1caf30e-8348-43b6-b693-d2a5b4b213a9 | \n", - "{'type': 'Polygon', 'coordinates': [[[-180.0, ... | \n", - "{'collection': 'CLMS', 'status': 'ONLINE', 'li... | \n", - "
| 2 | \n", - "Feature | \n", - "23f992f3-f12e-4eda-9634-4d56950aeb14 | \n", - "{'type': 'Polygon', 'coordinates': [[[-180.0, ... | \n", - "{'collection': 'CLMS', 'status': 'ONLINE', 'li... | \n", - "
| 3 | \n", - "Feature | \n", - "d1bfa68f-1fc9-434a-952e-5e3ff96f6d34 | \n", - "{'type': 'Polygon', 'coordinates': [[[-180.0, ... | \n", - "{'collection': 'CLMS', 'status': 'ONLINE', 'li... | \n", - "
| 4 | \n", - "Feature | \n", - "fe327b4a-2af9-4fc0-9645-df42020e6924 | \n", - "{'type': 'Polygon', 'coordinates': [[[-49.9790... | \n", - "{'collection': 'CLMS', 'status': 'ONLINE', 'li... | \n", - "
| \n", - " | type | \n", - "id | \n", - "geometry | \n", - "properties | \n", - "
|---|---|---|---|---|
| 0 | \n", - "Feature | \n", - "049162f6-29eb-4ae2-9936-d4f4ea5cd0d4 | \n", - "{'type': 'Polygon', 'coordinates': [[[158.1858... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 1 | \n", - "Feature | \n", - "05c036dd-d6fb-4cf8-a2a8-75d02aa965c9 | \n", - "{'type': 'Polygon', 'coordinates': [[[158.0939... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 2 | \n", - "Feature | \n", - "05c92b08-d07a-4f29-9199-809cf3016791 | \n", - "{'type': 'Polygon', 'coordinates': [[[157.2826... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 3 | \n", - "Feature | \n", - "0a319264-4bb4-4157-af83-0839dd1a3d12 | \n", - "{'type': 'Polygon', 'coordinates': [[[158.1858... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 4 | \n", - "Feature | \n", - "0ad4ff10-1bfb-4f9f-88c5-fcf1406c35d3 | \n", - "{'type': 'Polygon', 'coordinates': [[[158.1858... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 5 | \n", - "Feature | \n", - "0c442108-83f6-4c85-bc60-7e8743ce434e | \n", - "{'type': 'Polygon', 'coordinates': [[[156.2813... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 6 | \n", - "Feature | \n", - "12db9bc3-a33d-4f51-ad55-0b0350d75549 | \n", - "{'type': 'Polygon', 'coordinates': [[[156.2833... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 7 | \n", - "Feature | \n", - "1abd0faf-5dab-4bdf-950b-9589a80e1430 | \n", - "{'type': 'Polygon', 'coordinates': [[[157.1880... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 8 | \n", - "Feature | \n", - "24e5c8a4-32ce-4011-8665-37aabccd5a11 | \n", - "{'type': 'Polygon', 'coordinates': [[[158.0939... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 9 | \n", - "Feature | \n", - "313ee18d-74ff-476e-b8cd-0eab9e5930e2 | \n", - "{'type': 'Polygon', 'coordinates': [[[157.2826... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 10 | \n", - "Feature | \n", - "4865edf9-34a0-4996-92f7-4a8b226cc16e | \n", - "{'type': 'Polygon', 'coordinates': [[[157.1880... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 11 | \n", - "Feature | \n", - "59eb60f1-b034-429c-a82d-82a75ce079a5 | \n", - "{'type': 'Polygon', 'coordinates': [[[158.3183... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 12 | \n", - "Feature | \n", - "73a717b1-8cab-48d7-ad4e-21414068e43b | \n", - "{'type': 'Polygon', 'coordinates': [[[156.0589... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 13 | \n", - "Feature | \n", - "7495d076-4343-4dda-9ad4-9f7275e7a800 | \n", - "{'type': 'Polygon', 'coordinates': [[[158.2868... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 14 | \n", - "Feature | \n", - "81494ebf-37c9-41e8-ba14-11be98078525 | \n", - "{'type': 'Polygon', 'coordinates': [[[157.7636... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 15 | \n", - "Feature | \n", - "8776d69e-ae4e-4e1c-a063-9f8630d3c284 | \n", - "{'type': 'Polygon', 'coordinates': [[[156.2833... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 16 | \n", - "Feature | \n", - "8e61f3b7-2f5a-4c2c-9a59-0fd05e35f74f | \n", - "{'type': 'Polygon', 'coordinates': [[[155.8609... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 17 | \n", - "Feature | \n", - "af3af6a9-ef33-4ba0-9276-241c52aa7292 | \n", - "{'type': 'Polygon', 'coordinates': [[[156.0589... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 18 | \n", - "Feature | \n", - "b340deb0-edf8-4ab0-bb96-829a99f178be | \n", - "{'type': 'Polygon', 'coordinates': [[[155.8609... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 19 | \n", - "Feature | \n", - "b7ed98a9-ec31-4f41-97a3-ccca877ed1be | \n", - "{'type': 'Polygon', 'coordinates': [[[158.1858... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| \n", - " | type | \n", - "id | \n", - "geometry | \n", - "properties | \n", - "
|---|---|---|---|---|
| 0 | \n", - "Feature | \n", - "cbff9b4a-f98d-4c6d-ae0d-bba181b35573 | \n", - "{'type': 'Polygon', 'coordinates': [[[156.6984... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 1 | \n", - "Feature | \n", - "d0f31bf8-0e19-4b78-b7b5-dfcb0367b535 | \n", - "{'type': 'Polygon', 'coordinates': [[[156.6984... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 2 | \n", - "Feature | \n", - "d198f91e-3e48-4ddf-bd63-725d87400af1 | \n", - "{'type': 'Polygon', 'coordinates': [[[156.2813... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 3 | \n", - "Feature | \n", - "e5800cc5-755f-4b71-ab39-75ba2139caa5 | \n", - "{'type': 'Polygon', 'coordinates': [[[158.2868... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 4 | \n", - "Feature | \n", - "f9c80d04-202f-40a0-8e8f-bb9093bfd8a7 | \n", - "{'type': 'Polygon', 'coordinates': [[[157.7636... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 5 | \n", - "Feature | \n", - "fc1324de-6cee-410e-86a1-90de1350a924 | \n", - "{'type': 'Polygon', 'coordinates': [[[158.3183... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 6 | \n", - "Feature | \n", - "03853cbf-bee1-4738-9169-7074e927c97f | \n", - "{'type': 'Polygon', 'coordinates': [[[157.1290... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 7 | \n", - "Feature | \n", - "0d99a056-d390-4297-8049-f243c9fcb555 | \n", - "{'type': 'Polygon', 'coordinates': [[[157.1290... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 8 | \n", - "Feature | \n", - "1e6a45d3-fc4a-43d1-b59f-70acccc1bac7 | \n", - "{'type': 'Polygon', 'coordinates': [[[154.6712... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 9 | \n", - "Feature | \n", - "2467d219-a97c-4533-b616-cb27ad6945ef | \n", - "{'type': 'Polygon', 'coordinates': [[[157.1290... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 10 | \n", - "Feature | \n", - "28d4c142-40d1-495f-a856-76f706b112ea | \n", - "{'type': 'Polygon', 'coordinates': [[[154.7972... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 11 | \n", - "Feature | \n", - "3e7473f3-af16-4829-949f-209bf2adbe15 | \n", - "{'type': 'Polygon', 'coordinates': [[[154.6712... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 12 | \n", - "Feature | \n", - "3f688831-bb03-41e9-af7a-dcdbae7f64e9 | \n", - "{'type': 'Polygon', 'coordinates': [[[157.2027... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 13 | \n", - "Feature | \n", - "42f20c25-0fac-42bf-9fba-5b2db370783f | \n", - "{'type': 'Polygon', 'coordinates': [[[154.8852... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 14 | \n", - "Feature | \n", - "4af84efd-7b6f-4fee-9ca8-5d64148d1d38 | \n", - "{'type': 'Polygon', 'coordinates': [[[157.1290... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 15 | \n", - "Feature | \n", - "525f03b7-7d86-487f-b3ca-b7fd838a82b3 | \n", - "{'type': 'Polygon', 'coordinates': [[[155.6954... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 16 | \n", - "Feature | \n", - "724ace31-18c3-4e52-b240-241173143c20 | \n", - "{'type': 'Polygon', 'coordinates': [[[157.2027... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 17 | \n", - "Feature | \n", - "8549fff5-18c3-4e77-83cf-2f1ba97eef3f | \n", - "{'type': 'Polygon', 'coordinates': [[[154.8852... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 18 | \n", - "Feature | \n", - "be61cfd9-8269-4208-ad6f-5eca64972b72 | \n", - "{'type': 'Polygon', 'coordinates': [[[156.6802... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 19 | \n", - "Feature | \n", - "d86b077f-1a81-4a44-a9d4-f1d4b20be41e | \n", - "{'type': 'Polygon', 'coordinates': [[[156.6802... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| \n", - " | type | \n", - "id | \n", - "geometry | \n", - "properties | \n", - "
|---|---|---|---|---|
| 0 | \n", - "Feature | \n", - "04008903-8704-437b-a8b8-d0942d7fa19c | \n", - "{'type': 'Polygon', 'coordinates': [[[22.45053... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 1 | \n", - "Feature | \n", - "545a3805-d55b-4ce0-b088-3e259072f934 | \n", - "{'type': 'Polygon', 'coordinates': [[[19.53152... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 2 | \n", - "Feature | \n", - "f5d8f083-77f3-432a-bd8d-cc816ddd1300 | \n", - "{'type': 'Polygon', 'coordinates': [[[22.45053... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 3 | \n", - "Feature | \n", - "8eeb4008-c8e9-4ddc-998c-b22f259d5de6 | \n", - "{'type': 'Polygon', 'coordinates': [[[19.53152... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 4 | \n", - "Feature | \n", - "97e26e1a-361d-4e37-b30c-5eba50506187 | \n", - "{'type': 'Polygon', 'coordinates': [[[21.96038... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 5 | \n", - "Feature | \n", - "cc1dbd1e-9b1b-4ea0-9b72-08be8bc7ab47 | \n", - "{'type': 'Polygon', 'coordinates': [[[19.50094... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 6 | \n", - "Feature | \n", - "ae2a69fd-1ad2-4b20-b9e9-d36b2ec05806 | \n", - "{'type': 'Polygon', 'coordinates': [[[21.96038... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 7 | \n", - "Feature | \n", - "83d9e0ae-61f2-4a27-beca-2c428715cf12 | \n", - "{'type': 'Polygon', 'coordinates': [[[21.96424... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 8 | \n", - "Feature | \n", - "f09bd83c-7d3a-4823-8e63-b5899fa090b3 | \n", - "{'type': 'Polygon', 'coordinates': [[[21.96360... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 9 | \n", - "Feature | \n", - "a3f8f7e9-2276-54e5-b202-dcda07c35839 | \n", - "{'type': 'Polygon', 'coordinates': [[[20.99970... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 10 | \n", - "Feature | \n", - "9823f638-51d5-4eb3-ac55-4f62532a2dc4 | \n", - "{'type': 'Polygon', 'coordinates': [[[19.53152... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 11 | \n", - "Feature | \n", - "c9e836ee-8b7c-403b-bca2-d59074783d98 | \n", - "{'type': 'Polygon', 'coordinates': [[[21.96014... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 12 | \n", - "Feature | \n", - "ed68db23-4c0f-4585-8693-6f022b5980c8 | \n", - "{'type': 'Polygon', 'coordinates': [[[22.45478... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 13 | \n", - "Feature | \n", - "a1009dac-c58d-4b9a-b0ec-1db868c2e3bd | \n", - "{'type': 'Polygon', 'coordinates': [[[21.96014... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 14 | \n", - "Feature | \n", - "80eef4fb-9f20-4728-848c-8d678aba60c7 | \n", - "{'type': 'Polygon', 'coordinates': [[[19.53152... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 15 | \n", - "Feature | \n", - "cf68685c-e9e3-439c-97fc-90025a6e4513 | \n", - "{'type': 'Polygon', 'coordinates': [[[20.99970... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 16 | \n", - "Feature | \n", - "84ae8070-005b-4ffc-9af1-ad9aca5ae26b | \n", - "{'type': 'Polygon', 'coordinates': [[[20.99970... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 17 | \n", - "Feature | \n", - "fbb4d27b-d3ff-40aa-8424-06ceaee8f375 | \n", - "{'type': 'Polygon', 'coordinates': [[[19.53152... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 18 | \n", - "Feature | \n", - "f130d80d-dd19-59cf-a7ff-f85495d7dd21 | \n", - "{'type': 'Polygon', 'coordinates': [[[20.99970... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 19 | \n", - "Feature | \n", - "ea169cc8-83bd-48b0-8247-f5769ec1ebef | \n", - "{'type': 'Polygon', 'coordinates': [[[22.44973... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| \n", - " | type | \n", - "id | \n", - "geometry | \n", - "properties | \n", - "
|---|---|---|---|---|
| 0 | \n", - "Feature | \n", - "5ecd6532-0200-497d-a7c1-776ff2738d1a | \n", - "{'type': 'Polygon', 'coordinates': [[[4.436812... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 1 | \n", - "Feature | \n", - "5831e264-e17e-4af9-a1f7-d6de71a8a038 | \n", - "{'type': 'Polygon', 'coordinates': [[[4.436848... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 2 | \n", - "Feature | \n", - "ef6df284-3d63-4821-8dc2-f86825dfde0f | \n", - "{'type': 'Polygon', 'coordinates': [[[4.064087... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 3 | \n", - "Feature | \n", - "1b32f7ad-ec32-45a1-807b-9adbd510e688 | \n", - "{'type': 'Polygon', 'coordinates': [[[5.968085... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| 4 | \n", - "Feature | \n", - "530aeeb3-b889-4596-9c09-3d2e917e9aa4 | \n", - "{'type': 'Polygon', 'coordinates': [[[4.325619... | \n", - "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", - "
| \n", - " | type | \n", - "id | \n", - "geometry | \n", - "properties | \n", - "
|---|---|---|---|---|
| 0 | \n", - "Feature | \n", - "da70cfa7-8b3b-514a-a807-efd43a2d9652 | \n", - "{'type': 'Polygon', 'coordinates': [[[17.75591... | \n", - "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", - "
| 1 | \n", - "Feature | \n", - "02036627-0bbd-5533-b92f-5229818a9b57 | \n", - "{'type': 'Polygon', 'coordinates': [[[19.06133... | \n", - "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", - "
| 2 | \n", - "Feature | \n", - "9aab3f54-50d9-59f7-8194-e5f0e7539841 | \n", - "{'type': 'Polygon', 'coordinates': [[[20.65879... | \n", - "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", - "
| 3 | \n", - "Feature | \n", - "c7bad712-83bd-5b02-bdfa-be0665ed820a | \n", - "{'type': 'Polygon', 'coordinates': [[[2.281085... | \n", - "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", - "
| 4 | \n", - "Feature | \n", - "84a3d05a-119e-5d2b-8297-4e23b801361b | \n", - "{'type': 'Polygon', 'coordinates': [[[-0.01425... | \n", - "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", - "
| 5 | \n", - "Feature | \n", - "bfd85b2c-1d8d-5768-bed5-b5581faed35c | \n", - "{'type': 'Polygon', 'coordinates': [[[11.97771... | \n", - "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", - "
| 6 | \n", - "Feature | \n", - "69b6f0a6-f5bc-5be0-8899-c0ecab4bccd9 | \n", - "{'type': 'Polygon', 'coordinates': [[[-9.38965... | \n", - "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", - "
| 7 | \n", - "Feature | \n", - "6064f952-7b8f-59c1-919f-18173a6394ad | \n", - "{'type': 'Polygon', 'coordinates': [[[84.86653... | \n", - "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", - "
| 8 | \n", - "Feature | \n", - "d40fa39b-a849-53e4-99c8-2e1839370628 | \n", - "{'type': 'Polygon', 'coordinates': [[[46.27384... | \n", - "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", - "
| 9 | \n", - "Feature | \n", - "165d3b85-e65d-5bbe-9cab-f7bad6fee8e7 | \n", - "{'type': 'Polygon', 'coordinates': [[[42.11571... | \n", - "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", - "
| 10 | \n", - "Feature | \n", - "409e8402-7997-556f-8784-71e657ad3604 | \n", - "{'type': 'Polygon', 'coordinates': [[[-8.27511... | \n", - "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", - "
| 11 | \n", - "Feature | \n", - "486c8fbf-dbe4-51af-bb36-d50c1e19e6f2 | \n", - "{'type': 'Polygon', 'coordinates': [[[20.00865... | \n", - "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", - "
| 12 | \n", - "Feature | \n", - "63b87052-4ee1-5dd7-a917-f58ac80089db | \n", - "{'type': 'Polygon', 'coordinates': [[[-7.18738... | \n", - "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", - "
| 13 | \n", - "Feature | \n", - "f9208ee1-1dab-5b13-a5a0-5fb6f29b4f3b | \n", - "{'type': 'Polygon', 'coordinates': [[[-4.20402... | \n", - "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", - "
| 14 | \n", - "Feature | \n", - "69865c3a-87ae-5392-a7cd-e3cd43690b0e | \n", - "{'type': 'Polygon', 'coordinates': [[[6.677761... | \n", - "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", - "
| 15 | \n", - "Feature | \n", - "0ade07fb-010a-5572-b121-0549cea086e6 | \n", - "{'type': 'Polygon', 'coordinates': [[[22.64895... | \n", - "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", - "
| 16 | \n", - "Feature | \n", - "546770e8-aa49-523c-ade6-05cbc57b44de | \n", - "{'type': 'Polygon', 'coordinates': [[[20.51301... | \n", - "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", - "
| 17 | \n", - "Feature | \n", - "b6783847-c4f6-51db-bf71-4fadf26b4d43 | \n", - "{'type': 'Polygon', 'coordinates': [[[18.18976... | \n", - "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", - "
| 18 | \n", - "Feature | \n", - "e03a43b5-7b4b-5a83-b5a8-188739344c79 | \n", - "{'type': 'Polygon', 'coordinates': [[[-100.043... | \n", - "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", - "
| 19 | \n", - "Feature | \n", - "b0a0c958-fbd7-56a2-a64e-efe5bace332b | \n", - "{'type': 'Polygon', 'coordinates': [[[7.678896... | \n", - "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", - "
| \n", - " | id | \n", - "bbox | \n", - "type | \n", - "links | \n", - "assets | \n", - "geometry | \n", - "collection | \n", - "properties | \n", - "stac_extensions | \n", - "stac_version | \n", - "
|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", - "S2B_MSIL2A_20251228T233129_N0511_R101_T38CMS_2... | \n", - "[39.72200119694694, -80.25203205661444, 45.516... | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[40.19847... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-12-29T02:20:59.00... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 1 | \n", - "S2B_MSIL2A_20251228T233129_N0511_R101_T37CEM_2... | \n", - "[38.99894187059522, -80.25242038514605, 44.788... | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[38.99903... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-12-29T02:21:40.00... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 2 | \n", - "S2B_MSIL2A_20251228T000139_N0511_R087_T38CMT_2... | \n", - "[40.1593625828737, -79.35014408984915, 44.5605... | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[40.29181... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-12-28T01:34:35.00... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 3 | \n", - "S2B_MSIL2A_20251228T000139_N0511_R087_T38CMS_2... | \n", - "[39.72200119694694, -80.25203205661444, 45.516... | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[43.28200... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-12-28T01:42:28.00... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 4 | \n", - "S2B_MSIL2A_20251228T000139_N0511_R087_T37CEM_2... | \n", - "[38.99894187059522, -80.25242038514605, 44.788... | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[43.04873... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-12-28T01:41:49.00... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| \n", - " | id | \n", - "bbox | \n", - "type | \n", - "links | \n", - "assets | \n", - "geometry | \n", - "collection | \n", - "properties | \n", - "stac_extensions | \n", - "stac_version | \n", - "
|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", - "S2B_MSIL2A_20251231T051319_N0511_R133_T31CDM_2... | \n", - "[-2.277998803053058, -80.22883981478951, 0.184... | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[-2.18323... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-12-31T07:23:23.00... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 1 | \n", - "S2B_MSIL2A_20251231T051319_N0511_R133_T30CVS_2... | \n", - "[-8.277998803053059, -80.25203205661444, -2.48... | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[-8.23246... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-12-31T07:25:36.00... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 2 | \n", - "S2B_MSIL2A_20251231T051319_N0511_R133_T29CNM_2... | \n", - "[-9.001058129404774, -80.25242038514605, -3.21... | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[-9.00104... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-12-31T07:24:16.00... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 3 | \n", - "S2B_MSIL2A_20251231T051319_N0511_R133_T28CES_2... | \n", - "[-13.59074209711865, -80.24048353817358, -9.21... | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[-13.5907... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-12-31T07:24:35.00... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 4 | \n", - "S2B_MSIL2A_20251231T050229_N0511_R133_T42FXM_2... | \n", - "[70.35704429215036, -48.83293960900481, 71.460... | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[70.36265... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-12-31T07:18:51.00... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| \n", - " | id | \n", - "bbox | \n", - "type | \n", - "links | \n", - "assets | \n", - "collection | \n", - "properties | \n", - "stac_extensions | \n", - "stac_version | \n", - "
|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", - "S2B_MSIL2A_20251231T051319_N0511_R133_T31CDM_2... | \n", - "[-2.277998803053058, -80.22883981478951, 0.184... | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-12-31T07:23:23.00... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 1 | \n", - "S2B_MSIL2A_20251231T051319_N0511_R133_T30CVS_2... | \n", - "[-8.277998803053059, -80.25203205661444, -2.48... | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-12-31T07:25:36.00... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 2 | \n", - "S2B_MSIL2A_20251231T051319_N0511_R133_T29CNM_2... | \n", - "[-9.001058129404774, -80.25242038514605, -3.21... | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-12-31T07:24:16.00... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 3 | \n", - "S2B_MSIL2A_20251231T051319_N0511_R133_T28CES_2... | \n", - "[-13.59074209711865, -80.24048353817358, -9.21... | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-12-31T07:24:35.00... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 4 | \n", - "S2B_MSIL2A_20251231T050229_N0511_R133_T42FXM_2... | \n", - "[70.35704429215036, -48.83293960900481, 71.460... | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-12-31T07:18:51.00... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| \n", - " | assets | \n", - "links | \n", - "
|---|---|---|
| 0 | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "
| 1 | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "
| 2 | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "
| 3 | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "
| 4 | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "
| 5 | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "
| 6 | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "
| 7 | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "
| 8 | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "
| 9 | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "
| \n", - " | id | \n", - "bbox | \n", - "type | \n", - "links | \n", - "assets | \n", - "geometry | \n", - "collection | \n", - "properties | \n", - "stac_extensions | \n", - "stac_version | \n", - "
|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", - "S2B_MSIL2A_20250115T043029_N0511_R133_T45QXD_2... | \n", - "[88.664444, 20.851601, 89.027861, 21.692646] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[89.01644... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-01-15T07:22:11.00... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 1 | \n", - "S2B_MSIL2A_20250114T190459_N0511_R127_T05CMS_2... | \n", - "[-156.43536, -74.863265, -156.220227, -74.762472] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[-156.220... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-01-14T23:33:48.00... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 2 | \n", - "S2B_MSIL2A_20250112T160529_N0511_R097_T17QLB_2... | \n", - "[-82.910307, 18.894431, -82.404586, 19.890114] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[-82.4045... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-01-12T21:56:54.00... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 3 | \n", - "S2B_MSIL2A_20250111T215909_N0511_R086_T02LKJ_2... | \n", - "[-173.79563, -15.450678, -173.254328, -14.455833] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[-173.254... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-01-11T23:29:04.00... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 4 | \n", - "S2B_MSIL2A_20250108T194719_N0511_R042_T10VEN_2... | \n", - "[-123.000374, 60.33627, -120.949436, 61.334442] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[-120.983... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-01-08T23:35:08.00... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 5 | \n", - "S2B_MSIL2A_20250101T204019_N0511_R085_T45CWK_2... | \n", - "[86.99875, -82.012669, 94.069006, -81.007392] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[90.74373... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-01-01T22:39:28.00... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 6 | \n", - "S2A_MSIL2A_20250106T000731_N0511_R073_T57MTR_2... | \n", - "[156.297745, -4.122706, 156.409008, -3.61448] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[156.4090... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-01-06T02:48:01.00... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 7 | \n", - "S2A_MSIL2A_20250104T055231_N0511_R048_T43SBT_2... | \n", - "[71.754262, 33.309546, 72.956153, 34.324206] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[71.75426... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-01-04T09:50:28.00... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 8 | \n", - "S2B_MSIL2A_20250114T100259_N0511_R122_T32RQV_2... | \n", - "[11.086289, 30.62773, 11.392596, 31.618143] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[11.39259... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-01-14T13:23:07.00... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 9 | \n", - "S2B_MSIL2A_20250113T085229_N0511_R107_T34LBL_2... | \n", - "[18.227016, -13.641674, 18.47779, -12.649679] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[18.47779... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-01-13T12:09:51.00... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| \n", - " | id | \n", - "properties.eo:cloud_cover | \n", - "
|---|---|---|
| 0 | \n", - "S2B_MSIL2A_20250115T043029_N0511_R133_T45QXD_2... | \n", - "10.01 | \n", - "
| 1 | \n", - "S2B_MSIL2A_20250114T190459_N0511_R127_T05CMS_2... | \n", - "10.01 | \n", - "
| 2 | \n", - "S2B_MSIL2A_20250112T160529_N0511_R097_T17QLB_2... | \n", - "10.01 | \n", - "
| 3 | \n", - "S2B_MSIL2A_20250111T215909_N0511_R086_T02LKJ_2... | \n", - "10.01 | \n", - "
| 4 | \n", - "S2B_MSIL2A_20250108T194719_N0511_R042_T10VEN_2... | \n", - "10.01 | \n", - "
| 5 | \n", - "S2B_MSIL2A_20250101T204019_N0511_R085_T45CWK_2... | \n", - "10.01 | \n", - "
| 6 | \n", - "S2A_MSIL2A_20250106T000731_N0511_R073_T57MTR_2... | \n", - "10.01 | \n", - "
| 7 | \n", - "S2A_MSIL2A_20250104T055231_N0511_R048_T43SBT_2... | \n", - "10.01 | \n", - "
| 8 | \n", - "S2B_MSIL2A_20250114T100259_N0511_R122_T32RQV_2... | \n", - "10.02 | \n", - "
| 9 | \n", - "S2B_MSIL2A_20250113T085229_N0511_R107_T34LBL_2... | \n", - "10.02 | \n", - "
| \n", - " | id | \n", - "bbox | \n", - "type | \n", - "links | \n", - "assets | \n", - "geometry | \n", - "collection | \n", - "properties | \n", - "stac_extensions | \n", - "stac_version | \n", - "
|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", - "S2B_MSIL2A_20250101T000439_N0511_R073_T57NVH_2... | \n", - "[158.093982, 6.243793, 158.745574, 7.155754] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[158.0939... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-01-01T01:44:17.00... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 1 | \n", - "S2B_MSIL2A_20250101T000439_N0511_R073_T57NVG_2... | \n", - "[158.095521, 5.339213, 158.599385, 6.33265] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[158.2868... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-01-01T01:30:22.00... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 2 | \n", - "S2B_MSIL2A_20250101T000439_N0511_R073_T57NVF_2... | \n", - "[158.096981, 5.31548, 158.396634, 5.427753] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[158.3183... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-01-01T01:23:15.00... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 3 | \n", - "S2B_MSIL2A_20250101T000439_N0511_R073_T57NUJ_2... | \n", - "[157.188064, 7.145259, 158.12463, 7.360241] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[157.1880... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-01-01T01:27:52.00... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 4 | \n", - "S2B_MSIL2A_20250101T000439_N0511_R073_T57NUH_2... | \n", - "[157.188619, 6.241466, 158.184617, 7.235884] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[157.7636... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-01-01T01:47:52.00... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 5 | \n", - "S2B_MSIL2A_20250101T000439_N0511_R073_T57NUG_2... | \n", - "[157.191994, 5.367592, 158.185873, 6.332402] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[158.1858... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-01-01T01:33:24.00... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 6 | \n", - "S2B_MSIL2A_20250101T000439_N0511_R073_T57NUF_2... | \n", - "[157.949753, 5.367593, 158.185869, 5.427677] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[158.1858... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-01-01T01:24:35.00... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 7 | \n", - "S2B_MSIL2A_20250101T000439_N0511_R073_T57NTJ_2... | \n", - "[156.281374, 7.140815, 157.277502, 7.532774] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[156.2813... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-01-01T01:28:04.00... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 8 | \n", - "S2B_MSIL2A_20250101T000439_N0511_R073_T57NTH_2... | \n", - "[156.283325, 6.237589, 157.280668, 7.234569] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[156.2833... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-01-01T01:36:42.00... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 9 | \n", - "S2B_MSIL2A_20250101T000439_N0511_R073_T57NTG_2... | \n", - "[156.288384, 5.591788, 157.282626, 6.330194] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[157.2826... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-01-01T01:44:40.00... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 10 | \n", - "S2B_MSIL2A_20250101T000439_N0511_R073_T56NRP_2... | \n", - "[156.058923, 7.133902, 156.711379, 7.556189] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[156.0589... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-01-01T01:27:53.00... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 11 | \n", - "S2B_MSIL2A_20250101T000439_N0511_R073_T56NRN_2... | \n", - "[155.860957, 6.231558, 156.70932, 7.227175] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[155.8609... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-01-01T01:31:26.00... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 12 | \n", - "S2B_MSIL2A_20250101T000439_N0511_R073_T56NRM_2... | \n", - "[155.784722, 5.718646, 156.702422, 6.32492] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[156.6984... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-01-01T01:34:52.00... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 13 | \n", - "S2B_MSIL2A_20250101T000619_N0511_R073_T57NUA_2... | \n", - "[157.202748, 0.157188, 157.360626, 0.798383] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[157.2027... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-01-01T01:22:58.00... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 14 | \n", - "S2B_MSIL2A_20250101T000619_N0511_R073_T57NTB_2... | \n", - "[156.304301, 0.81552, 157.139021, 1.025204] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[157.1290... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-01-01T01:23:51.00... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 15 | \n", - "S2B_MSIL2A_20250101T000619_N0511_R073_T57NTA_2... | \n", - "[156.304464, 0.157188, 157.290683, 0.904207] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[157.1290... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-01-01T01:28:27.00... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 16 | \n", - "S2B_MSIL2A_20250101T000619_N0511_R073_T56NRG_2... | \n", - "[155.695115, 0.814734, 156.680581, 1.15563] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[155.6954... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-01-01T01:24:32.00... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 17 | \n", - "S2B_MSIL2A_20250101T000619_N0511_R073_T56NRF_2... | \n", - "[155.695053, 0.303835, 156.680494, 0.903904] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[156.6802... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-01-01T01:25:56.00... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 18 | \n", - "S2B_MSIL2A_20250101T000619_N0511_R073_T56NQG_2... | \n", - "[154.796875, 0.81546, 155.783269, 1.325109] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[154.7972... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-01-01T01:33:19.00... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 19 | \n", - "S2B_MSIL2A_20250101T000619_N0511_R073_T56NQF_2... | \n", - "[154.796872, 0.515161, 155.782977, 0.904464] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[155.7828... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-01-01T01:30:31.00... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| \n", - " | id | \n", - "bbox | \n", - "type | \n", - "links | \n", - "assets | \n", - "geometry | \n", - "collection | \n", - "properties | \n", - "stac_extensions | \n", - "stac_version | \n", - "
|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", - "S2B_MSIL2A_20210909T095029_N0500_R079_T34UEC_2... | \n", - "[20.999706, 51.360232, 21.963602, 52.350473] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[21.96360... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2023-03-13T01:48:59.09... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 1 | \n", - "S2B_MSIL2A_20210909T095029_N0500_R079_T34UDC_2... | \n", - "[19.531529, 51.354432, 21.143291, 52.350386] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[19.53152... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2023-03-13T01:53:31.43... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 2 | \n", - "S2A_MSIL2A_20210904T095031_N0500_R079_T34UEC_2... | \n", - "[20.999706, 51.360262, 21.960142, 52.350473] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[21.96014... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2023-03-12T16:22:37.90... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 3 | \n", - "S2B_MSIL2A_20210807T094029_N0500_R036_T34UEC_2... | \n", - "[20.999706, 51.352634, 22.611384, 52.350473] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[20.99970... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2023-02-14T13:47:12.87... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 4 | \n", - "S2B_MSIL2A_20210711T095029_N0500_R079_T34UEC_2... | \n", - "[20.999706, 51.360286, 21.955875, 52.350473] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[21.95587... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2023-03-15T08:23:16.75... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 5 | \n", - "S2B_MSIL2A_20210708T094029_N0500_R036_T34UEC_2... | \n", - "[20.999706, 51.352634, 22.611384, 52.350473] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[20.99970... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2023-03-16T17:59:14.58... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 6 | \n", - "S2B_MSIL2A_20210621T095029_N0500_R079_T34UEC_2... | \n", - "[20.999706, 51.360262, 21.960388, 52.350473] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[21.96038... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2023-06-10T22:54:38.64... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| 7 | \n", - "S2B_MSIL2A_20210621T095029_N0500_R079_T34UDC_2... | \n", - "[19.531529, 51.354432, 21.143291, 52.350386] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[19.53152... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2023-06-10T22:58:56.96... | \n", - "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", - "1.1.0 | \n", - "
| \n", - " | id | \n", - "bbox | \n", - "type | \n", - "links | \n", - "assets | \n", - "geometry | \n", - "collection | \n", - "properties | \n", - "stac_extensions | \n", - "stac_version | \n", - "
|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", - "S2A_MSIL2A_20220622T105631_N0510_R094_T31UET_2... | \n", - "[2.999706370881351, 51.357799703919795, 4.3256... | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[4.325619... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-02-15T08:31:15.80... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 1 | \n", - "S2A_MSIL2A_20220616T103631_N0510_R008_T31UFT_2... | \n", - "[4.436120625123461, 51.32452335478603, 6.07775... | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[4.436848... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-02-14T19:06:43.50... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 2 | \n", - "S2B_MSIL2A_20220614T104629_N0510_R051_T31UFS_2... | \n", - "[4.408715109637645, 50.42809119252208, 6.01702... | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[5.968085... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-02-14T14:34:10.93... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 3 | \n", - "S2B_MSIL2A_20220611T103629_N0510_R008_T31UFS_2... | \n", - "[4.408715109637645, 50.42629366061962, 6.01702... | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[4.436812... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-02-14T08:11:38.91... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 4 | \n", - "S2B_MSIL2A_20220611T103629_N0510_R008_T31UES_2... | \n", - "[4.064087128317525, 50.453523278919015, 4.5795... | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", - "{'type': 'Polygon', 'coordinates': [[[4.064087... | \n", - "sentinel-2-l2a | \n", - "{'gsd': 10, 'created': '2025-02-14T08:11:38.75... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| \n", - " | id | \n", - "bbox | \n", - "type | \n", - "links | \n", - "assets | \n", - "geometry | \n", - "collection | \n", - "properties | \n", - "stac_extensions | \n", - "stac_version | \n", - "
|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", - "S1A_IW_GRDH_1SDV_20251231T061257_20251231T0613... | \n", - "[-4.961516, 29.132935, -2.043568, 30.6371] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", - "{'type': 'Polygon', 'coordinates': [[[-2.28483... | \n", - "sentinel-1-grd | \n", - "{'created': '2025-12-31T06:01:17.880940Z', 'ex... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 1 | \n", - "S1A_IW_GRDH_1SDV_20251231T061232_20251231T0612... | \n", - "[-4.750492, 30.215359, -1.708874, 32.141827] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", - "{'type': 'Polygon', 'coordinates': [[[-2.04354... | \n", - "sentinel-1-grd | \n", - "{'created': '2025-12-31T06:01:18.350244Z', 'ex... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 2 | \n", - "S1A_IW_GRDH_1SDV_20251231T061207_20251231T0612... | \n", - "[-4.460252, 31.722683, -1.369323, 33.646049] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", - "{'type': 'Polygon', 'coordinates': [[[-1.70885... | \n", - "sentinel-1-grd | \n", - "{'created': '2025-12-31T06:12:00.285895Z', 'ex... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 3 | \n", - "S1A_IW_GRDH_1SDV_20251231T061142_20251231T0612... | \n", - "[-4.168624, 33.229343, -1.009401, 35.147907] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", - "{'type': 'Polygon', 'coordinates': [[[-1.3693,... | \n", - "sentinel-1-grd | \n", - "{'created': '2025-12-31T06:12:01.441023Z', 'ex... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 4 | \n", - "S1A_IW_GRDH_1SDV_20251231T061117_20251231T0611... | \n", - "[-3.860411, 34.733044, -0.639349, 36.648712] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", - "{'type': 'Polygon', 'coordinates': [[[-1.00938... | \n", - "sentinel-1-grd | \n", - "{'created': '2025-12-31T06:11:58.380623Z', 'ex... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 5 | \n", - "S1A_IW_GRDH_1SDV_20251231T061052_20251231T0611... | \n", - "[-3.545959, 36.235367, -0.277303, 38.150902] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", - "{'type': 'Polygon', 'coordinates': [[[-0.63932... | \n", - "sentinel-1-grd | \n", - "{'created': '2025-12-31T06:11:58.937265Z', 'ex... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 6 | \n", - "S1A_IW_GRDH_1SDV_20251231T061027_20251231T0610... | \n", - "[-3.243545, 37.739258, 0.093031, 39.652462] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", - "{'type': 'Polygon', 'coordinates': [[[-0.27728... | \n", - "sentinel-1-grd | \n", - "{'created': '2025-12-31T06:11:47.595395Z', 'ex... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 7 | \n", - "S1A_IW_GRDH_1SDV_20251231T061002_20251231T0610... | \n", - "[-2.937376, 39.242229, 0.463011, 41.154549] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", - "{'type': 'Polygon', 'coordinates': [[[0.093054... | \n", - "sentinel-1-grd | \n", - "{'created': '2025-12-31T06:11:48.024200Z', 'ex... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 8 | \n", - "S1A_IW_GRDH_1SDV_20251231T060937_20251231T0610... | \n", - "[-2.63635, 40.745724, 0.852503, 42.654728] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", - "{'type': 'Polygon', 'coordinates': [[[0.463035... | \n", - "sentinel-1-grd | \n", - "{'created': '2025-12-31T06:12:00.578034Z', 'ex... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 9 | \n", - "S1A_IW_GRDH_1SDV_20251231T060912_20251231T0609... | \n", - "[-2.321066, 42.246735, 1.270123, 44.15239] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", - "{'type': 'Polygon', 'coordinates': [[[0.852526... | \n", - "sentinel-1-grd | \n", - "{'created': '2025-12-31T06:11:59.740213Z', 'ex... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| \n", - " | id | \n", - "bbox | \n", - "type | \n", - "links | \n", - "assets | \n", - "geometry | \n", - "collection | \n", - "properties | \n", - "stac_extensions | \n", - "stac_version | \n", - "
|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", - "S1A_IW_GRDH_1SDV_20251231T061257_20251231T0613... | \n", - "[-4.961516, 29.132935, -2.043568, 30.6371] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", - "{'type': 'Polygon', 'coordinates': [[[-2.28483... | \n", - "sentinel-1-grd | \n", - "{'created': '2025-12-31T06:01:17.880940Z', 'ex... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 1 | \n", - "S1A_IW_GRDH_1SDV_20251231T061232_20251231T0612... | \n", - "[-4.750492, 30.215359, -1.708874, 32.141827] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", - "{'type': 'Polygon', 'coordinates': [[[-2.04354... | \n", - "sentinel-1-grd | \n", - "{'created': '2025-12-31T06:01:18.350244Z', 'ex... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 2 | \n", - "S1A_IW_GRDH_1SDV_20251231T061207_20251231T0612... | \n", - "[-4.460252, 31.722683, -1.369323, 33.646049] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", - "{'type': 'Polygon', 'coordinates': [[[-1.70885... | \n", - "sentinel-1-grd | \n", - "{'created': '2025-12-31T06:12:00.285895Z', 'ex... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 3 | \n", - "S1A_IW_GRDH_1SDV_20251231T061142_20251231T0612... | \n", - "[-4.168624, 33.229343, -1.009401, 35.147907] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", - "{'type': 'Polygon', 'coordinates': [[[-1.3693,... | \n", - "sentinel-1-grd | \n", - "{'created': '2025-12-31T06:12:01.441023Z', 'ex... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 4 | \n", - "S1A_IW_GRDH_1SDV_20251231T061117_20251231T0611... | \n", - "[-3.860411, 34.733044, -0.639349, 36.648712] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", - "{'type': 'Polygon', 'coordinates': [[[-1.00938... | \n", - "sentinel-1-grd | \n", - "{'created': '2025-12-31T06:11:58.380623Z', 'ex... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 5 | \n", - "S1A_IW_GRDH_1SDV_20251231T061052_20251231T0611... | \n", - "[-3.545959, 36.235367, -0.277303, 38.150902] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", - "{'type': 'Polygon', 'coordinates': [[[-0.63932... | \n", - "sentinel-1-grd | \n", - "{'created': '2025-12-31T06:11:58.937265Z', 'ex... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 6 | \n", - "S1A_IW_GRDH_1SDV_20251231T061027_20251231T0610... | \n", - "[-3.243545, 37.739258, 0.093031, 39.652462] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", - "{'type': 'Polygon', 'coordinates': [[[-0.27728... | \n", - "sentinel-1-grd | \n", - "{'created': '2025-12-31T06:11:47.595395Z', 'ex... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 7 | \n", - "S1A_IW_GRDH_1SDV_20251231T061002_20251231T0610... | \n", - "[-2.937376, 39.242229, 0.463011, 41.154549] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", - "{'type': 'Polygon', 'coordinates': [[[0.093054... | \n", - "sentinel-1-grd | \n", - "{'created': '2025-12-31T06:11:48.024200Z', 'ex... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 8 | \n", - "S1A_IW_GRDH_1SDV_20251231T060937_20251231T0610... | \n", - "[-2.63635, 40.745724, 0.852503, 42.654728] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", - "{'type': 'Polygon', 'coordinates': [[[0.463035... | \n", - "sentinel-1-grd | \n", - "{'created': '2025-12-31T06:12:00.578034Z', 'ex... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| 9 | \n", - "S1A_IW_GRDH_1SDV_20251231T060912_20251231T0609... | \n", - "[-2.321066, 42.246735, 1.270123, 44.15239] | \n", - "Feature | \n", - "[{'rel': 'collection', 'type': 'application/js... | \n", - "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", - "{'type': 'Polygon', 'coordinates': [[[0.852526... | \n", - "sentinel-1-grd | \n", - "{'created': '2025-12-31T06:11:59.740213Z', 'ex... | \n", - "[https://cs-si.github.io/eopf-stac-extension/v... | \n", - "1.1.0 | \n", - "
| \n", + " | type | \n", + "id | \n", + "geometry | \n", + "properties | \n", + "
|---|---|---|---|---|
| 0 | \n", + "Feature | \n", + "91822f33-b15c-5b60-aa39-6d9f6f5c773b | \n", + "{'type': 'Polygon', 'coordinates': [[[-176.587... | \n", + "{'collection': 'SENTINEL-3', 'status': 'ONLINE... | \n", + "
| 1 | \n", + "Feature | \n", + "bfd8cd54-52a7-48e2-88d0-58df86167399 | \n", + "{'type': 'Polygon', 'coordinates': [[[-145.885... | \n", + "{'collection': 'SENTINEL-3', 'status': 'ONLINE... | \n", + "
| 2 | \n", + "Feature | \n", + "eb59e26f-c472-4f5f-8289-49bce7b13b7e | \n", + "{'type': 'MultiPolygon', 'coordinates': [[[[10... | \n", + "{'collection': 'SENTINEL-3', 'status': 'ONLINE... | \n", + "
| 3 | \n", + "Feature | \n", + "85899f29-0854-30a0-b9a7-5f2d332e6f10 | \n", + "{'type': 'Polygon', 'coordinates': [[[140.656,... | \n", + "{'collection': 'SENTINEL-3', 'status': 'ONLINE... | \n", + "
| 4 | \n", + "Feature | \n", + "2b5ae1be-1831-447d-90b0-1e4b4d34d7b2 | \n", + "{'type': 'Polygon', 'coordinates': [[[138.511,... | \n", + "{'collection': 'SENTINEL-3', 'status': 'ONLINE... | \n", + "
| \n", + " | collection | \n", + "short_name | \n", + "description | \n", + "parameters | \n", + "
|---|---|---|---|---|
| 0 | \n", + "Sentinel1 | \n", + "Sentinel-1 | \n", + "Sentinel-1 Collection | \n", + "[maxRecords, index, page, identifier, geometry... | \n", + "
| 1 | \n", + "Sentinel2 | \n", + "Sentinel-2 | \n", + "Sentinel-2 Collection | \n", + "[maxRecords, index, page, identifier, geometry... | \n", + "
| 2 | \n", + "Sentinel3 | \n", + "Sentinel-3 | \n", + "Sentinel-3 Collection | \n", + "[maxRecords, index, page, identifier, geometry... | \n", + "
| 3 | \n", + "Sentinel5P | \n", + "Sentinel-5P | \n", + "Sentinel-5P Collection | \n", + "[maxRecords, index, page, identifier, geometry... | \n", + "
| 4 | \n", + "CLMS | \n", + "CLMS | \n", + "Copernicus Land Monitoring Service Collection | \n", + "[maxRecords, index, page, identifier, geometry... | \n", + "
| \n", + " | type | \n", + "id | \n", + "geometry | \n", + "properties | \n", + "
|---|---|---|---|---|
| 0 | \n", + "Feature | \n", + "000bcf77-ddcf-4fba-b559-d4caaa972e96 | \n", + "{'type': 'Point', 'coordinates': [67.04, 40.87]} | \n", + "{'collection': 'CLMS', 'status': 'ONLINE', 'li... | \n", + "
| 1 | \n", + "Feature | \n", + "0018595d-a646-44ed-9b44-b32b0acf2cc1 | \n", + "{'type': 'Point', 'coordinates': [-87.0, 44.0]} | \n", + "{'collection': 'CLMS', 'status': 'ONLINE', 'li... | \n", + "
| 2 | \n", + "Feature | \n", + "0029ff2f-67ed-4d14-bc45-7486c03af258 | \n", + "{'type': 'Point', 'coordinates': [13.29, 58.81]} | \n", + "{'collection': 'CLMS', 'status': 'ONLINE', 'li... | \n", + "
| 3 | \n", + "Feature | \n", + "003beb57-788a-4ed1-b4f2-440fba282b07 | \n", + "{'type': 'Point', 'coordinates': [-62.8, 7.41]} | \n", + "{'collection': 'CLMS', 'status': 'ONLINE', 'li... | \n", + "
| 4 | \n", + "Feature | \n", + "00684216-d9a5-4cc1-9944-e0bba63a09d5 | \n", + "{'type': 'Point', 'coordinates': [28.0, -16.93]} | \n", + "{'collection': 'CLMS', 'status': 'ONLINE', 'li... | \n", + "
| \n", + " | collection | \n", + "status | \n", + "parentIdentifier | \n", + "title | \n", + "description | \n", + "organisationName | \n", + "startDate | \n", + "completionDate | \n", + "productType | \n", + "processingLevel | \n", + "... | \n", + "license.grantedOrganizationCountries | \n", + "license.grantedFlags | \n", + "license.viewService | \n", + "license.signatureQuota | \n", + "license.description.shortName | \n", + "centroid.type | \n", + "centroid.coordinates | \n", + "services.download.url | \n", + "services.download.mimeType | \n", + "services.download.size | \n", + "
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", + "CLMS | \n", + "ONLINE | \n", + "None | \n", + "c_gls_WL_202509220600_1300000000138_ALTI_V2.2.... | \n", + "Copernicus program priorities are to gain from... | \n", + "None | \n", + "1995-06-02T15:31:00.000000Z | \n", + "2025-09-22T06:00:00.000000Z | \n", + "river_and_lake_water_level | \n", + "None | \n", + "... | \n", + "None | \n", + "None | \n", + "public | \n", + "-1 | \n", + "No license | \n", + "Point | \n", + "[67.04, 40.87] | \n", + "https://catalogue.dataspace.copernicus.eu/down... | \n", + "application/geo+json | \n", + "281916 | \n", + "
| 1 | \n", + "CLMS | \n", + "ONLINE | \n", + "None | \n", + "c_gls_WL_202510170900_1300000000006_ALTI_V2.2.... | \n", + "Copernicus program priorities are to gain from... | \n", + "None | \n", + "1992-09-27T02:35:00.000000Z | \n", + "2025-10-17T09:00:00.000000Z | \n", + "river_and_lake_water_level | \n", + "None | \n", + "... | \n", + "None | \n", + "None | \n", + "public | \n", + "-1 | \n", + "No license | \n", + "Point | \n", + "[-87.0, 44.0] | \n", + "https://catalogue.dataspace.copernicus.eu/down... | \n", + "application/geo+json | \n", + "688083 | \n", + "
| 2 | \n", + "CLMS | \n", + "ONLINE | \n", + "None | \n", + "c_gls_WL_202509260506_1300000000105_ALTI_V2.2.... | \n", + "Copernicus program priorities are to gain from... | \n", + "None | \n", + "1992-09-28T22:30:00.000000Z | \n", + "2025-09-26T05:06:00.000000Z | \n", + "river_and_lake_water_level | \n", + "None | \n", + "... | \n", + "None | \n", + "None | \n", + "public | \n", + "-1 | \n", + "No license | \n", + "Point | \n", + "[13.29, 58.81] | \n", + "https://catalogue.dataspace.copernicus.eu/down... | \n", + "application/geo+json | \n", + "373184 | \n", + "
| 3 | \n", + "CLMS | \n", + "ONLINE | \n", + "None | \n", + "c_gls_WL_202505171602_1300000000073_ALTI_V2.2.... | \n", + "Copernicus program priorities are to gain from... | \n", + "None | \n", + "1992-09-30T00:51:00.000000Z | \n", + "2025-05-17T16:02:00.000000Z | \n", + "river_and_lake_water_level | \n", + "None | \n", + "... | \n", + "None | \n", + "None | \n", + "public | \n", + "-1 | \n", + "No license | \n", + "Point | \n", + "[-62.8, 7.41] | \n", + "https://catalogue.dataspace.copernicus.eu/down... | \n", + "application/geo+json | \n", + "182737 | \n", + "
| 4 | \n", + "CLMS | \n", + "ONLINE | \n", + "None | \n", + "c_gls_WL_202507122311_1300000000172_ALTI_V2.2.... | \n", + "Copernicus program priorities are to gain from... | \n", + "None | \n", + "1992-09-26T00:14:00.000000Z | \n", + "2025-07-12T23:11:00.000000Z | \n", + "river_and_lake_water_level | \n", + "None | \n", + "... | \n", + "None | \n", + "None | \n", + "public | \n", + "-1 | \n", + "No license | \n", + "Point | \n", + "[28.0, -16.93] | \n", + "https://catalogue.dataspace.copernicus.eu/down... | \n", + "application/geo+json | \n", + "355715 | \n", + "
5 rows × 37 columns
\n", + "| \n", + " | id | \n", + "type | \n", + "links | \n", + "title | \n", + "assets | \n", + "extent | \n", + "license | \n", + "keywords | \n", + "providers | \n", + "summaries | \n", + "... | \n", + "auth:schemes | \n", + "sci:citation | \n", + "stac_version | \n", + "stac_extensions | \n", + "storage:schemes | \n", + "bands | \n", + "sci:doi | \n", + "ceosard:type | \n", + "ceosard:specification | \n", + "ceosard:specification_version | \n", + "
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", + "sentinel-3-sl-2-aod-nrt | \n", + "Collection | \n", + "[{'rel': 'items', 'type': 'application/geo+jso... | \n", + "Sentinel-3 SLSTR Aerosol Optical Depth (NRT) | \n", + "{'thumbnail': {'href': 'https://s3.waw3-2.clou... | \n", + "{'spatial': {'bbox': [[-180, -90, 180, 90]]}, ... | \n", + "other | \n", + "[Sentinel, Copernicus, ESA, Satellite, Global,... | \n", + "[{'url': 'https://sentinels.copernicus.eu/web/... | \n", + "{'gsd': [9500], 'platform': ['sentinel-3a', 's... | \n", + "... | \n", + "{'s3': {'type': 's3'}, 'oidc': {'type': 'openI... | \n", + "Copernicus Sentinel data [Year] | \n", + "1.1.0 | \n", + "[https://stac-extensions.github.io/alternate-a... | \n", + "{'cdse-s3': {'type': 'custom-s3', 'title': 'Co... | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
| 1 | \n", + "sentinel-1-global-mosaics | \n", + "Collection | \n", + "[{'rel': 'items', 'type': 'application/geo+jso... | \n", + "Sentinel-1 Global Mosaics | \n", + "{'thumbnail': {'href': 'https://s3.waw3-2.clou... | \n", + "{'spatial': {'bbox': [[-180, -90, 180, 90]]}, ... | \n", + "other | \n", + "[Sentinel, Copernicus, ESA, GRD, SAR, C-Band, ... | \n", + "[{'url': 'https://sentinels.copernicus.eu/web/... | \n", + "{'gsd': [20, 40], 'instruments': ['sar'], 'pro... | \n", + "... | \n", + "{'s3': {'type': 's3'}, 'oidc': {'type': 'openI... | \n", + "Copernicus Sentinel data [Year] | \n", + "1.1.0 | \n", + "[https://stac-extensions.github.io/authenticat... | \n", + "{'cdse-s3': {'type': 'custom-s3', 'title': 'Co... | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
| 2 | \n", + "sentinel-3-olci-2-wfr-nrt | \n", + "Collection | \n", + "[{'rel': 'items', 'type': 'application/geo+jso... | \n", + "Sentinel-3 OLCI Water Full Resolution (NRT) | \n", + "{'thumbnail': {'href': 'https://s3.waw3-2.clou... | \n", + "{'spatial': {'bbox': [[-180, -90, 180, 90]]}, ... | \n", + "other | \n", + "[Sentinel, Copernicus, ESA, Satellite, Global,... | \n", + "[{'url': 'https://sentinels.copernicus.eu/web/... | \n", + "{'gsd': [300], 'platform': ['sentinel-3a', 'se... | \n", + "... | \n", + "{'s3': {'type': 's3'}, 'oidc': {'type': 'openI... | \n", + "Copernicus Sentinel data [Year] | \n", + "1.1.0 | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "{'cdse-s3': {'type': 'custom-s3', 'title': 'Co... | \n", + "[{'name': 'Oa01', 'description': 'Aerosol corr... | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
| 3 | \n", + "sentinel-5p-l2-ch4-nrti | \n", + "Collection | \n", + "[{'rel': 'items', 'type': 'application/geo+jso... | \n", + "Sentinel-5P Level 2 Methane (NRTI) | \n", + "{'thumbnail': {'href': 'https://s3.waw3-2.clou... | \n", + "{'spatial': {'bbox': [[-180, -90, 180, 90]]}, ... | \n", + "other | \n", + "[7000m, Atmosphere, CH4, Copernicus, EC, ESA, ... | \n", + "[{'url': 'https://sentinel.esa.int/web/sentine... | \n", + "{'gsd': [7000], 'platform': ['sentinel-5p'], '... | \n", + "... | \n", + "{'s3': {'type': 's3'}, 'oidc': {'type': 'openI... | \n", + "Copernicus Sentinel data [Year] | \n", + "1.1.0 | \n", + "[https://stac-extensions.github.io/alternate-a... | \n", + "{'cdse-s3': {'type': 'custom-s3', 'title': 'Co... | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
| 4 | \n", + "sentinel-1-slc-wv | \n", + "Collection | \n", + "[{'rel': 'items', 'type': 'application/geo+jso... | \n", + "Sentinel-1 Single Look Complex: WV | \n", + "{'thumbnail': {'href': 'https://s3.waw3-2.clou... | \n", + "{'spatial': {'bbox': [[-180, -90, 180, 90]]}, ... | \n", + "other | \n", + "[Sentinel, Copernicus, ESA, SLC, SAR, C-Band, ... | \n", + "[{'url': 'https://sentinel.esa.int/web/sentine... | \n", + "{'platform': ['sentinel-1a', 'sentinel-1b', 's... | \n", + "... | \n", + "{'s3': {'type': 's3'}, 'oidc': {'type': 'openI... | \n", + "Copernicus Sentinel data [Year] | \n", + "1.1.0 | \n", + "[https://stac-extensions.github.io/authenticat... | \n", + "{'cdse-s3': {'type': 'custom-s3', 'title': 'Co... | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
5 rows × 22 columns
\n", + "| \n", + " | id | \n", + "title | \n", + "summaries | \n", + "
|---|---|---|---|
| 0 | \n", + "sentinel-3-sl-2-aod-nrt | \n", + "Sentinel-3 SLSTR Aerosol Optical Depth (NRT) | \n", + "{'gsd': [9500], 'platform': ['sentinel-3a', 's... | \n", + "
| 1 | \n", + "sentinel-1-global-mosaics | \n", + "Sentinel-1 Global Mosaics | \n", + "{'gsd': [20, 40], 'instruments': ['sar'], 'pro... | \n", + "
| 2 | \n", + "sentinel-3-olci-2-wfr-nrt | \n", + "Sentinel-3 OLCI Water Full Resolution (NRT) | \n", + "{'gsd': [300], 'platform': ['sentinel-3a', 'se... | \n", + "
| 3 | \n", + "sentinel-5p-l2-ch4-nrti | \n", + "Sentinel-5P Level 2 Methane (NRTI) | \n", + "{'gsd': [7000], 'platform': ['sentinel-5p'], '... | \n", + "
| 4 | \n", + "sentinel-1-slc-wv | \n", + "Sentinel-1 Single Look Complex: WV | \n", + "{'platform': ['sentinel-1a', 'sentinel-1b', 's... | \n", + "
| \n", + " | id | \n", + "
|---|---|
| 0 | \n", + "sentinel-3-sl-2-aod-nrt | \n", + "
| 1 | \n", + "sentinel-1-global-mosaics | \n", + "
| 2 | \n", + "sentinel-3-olci-2-wfr-nrt | \n", + "
| 3 | \n", + "sentinel-5p-l2-ch4-nrti | \n", + "
| 4 | \n", + "sentinel-1-slc-wv | \n", + "
| ... | \n", + "... | \n", + "
| 135 | \n", + "sentinel-5p-l2-o3-nrti | \n", + "
| 136 | \n", + "sentinel-5p-l2-o3-offl | \n", + "
| 137 | \n", + "sentinel-5p-l2-so2-offl | \n", + "
| 138 | \n", + "sentinel-5p-l2-so2-nrti | \n", + "
| 139 | \n", + "sentinel-5p-l2-so2-rpro | \n", + "
140 rows × 1 columns
\n", + "| \n", + " | id | \n", + "type | \n", + "bands | \n", + "links | \n", + "title | \n", + "assets | \n", + "extent | \n", + "license | \n", + "sci:doi | \n", + "keywords | \n", + "... | \n", + "description | \n", + "item_assets | \n", + "auth:schemes | \n", + "ceosard:type | \n", + "sci:citation | \n", + "stac_version | \n", + "stac_extensions | \n", + "storage:schemes | \n", + "ceosard:specification | \n", + "ceosard:specification_version | \n", + "
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", + "sentinel-2-l2a | \n", + "Collection | \n", + "[{'gsd': 60, 'name': 'B01', 'description': 'Co... | \n", + "[{'rel': 'items', 'type': 'application/geo+jso... | \n", + "Sentinel-2 Level-2A | \n", + "{'thumbnail': {'href': 'https://s3.waw3-2.clou... | \n", + "{'spatial': {'bbox': [[-180, -90, 180, 90]]}, ... | \n", + "other | \n", + "10.5270/S2_-znk9xsj | \n", + "[Copernicus, Sentinel, EU, ESA, Satellite, Glo... | \n", + "... | \n", + "The Sentinel-2 Level-2A Collection 1 product p... | \n", + "{'AOT_10m': {'gsd': 10, 'type': 'image/jp2', '... | \n", + "{'s3': {'type': 's3'}, 'oidc': {'type': 'openI... | \n", + "optical | \n", + "Copernicus Sentinel data [Year] | \n", + "1.1.0 | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "{'cdse-s3': {'type': 'custom-s3', 'title': 'Co... | \n", + "SR | \n", + "5.0.1 | \n", + "
1 rows × 22 columns
\n", + "| \n", + " | id | \n", + "bbox | \n", + "type | \n", + "links | \n", + "assets | \n", + "geometry | \n", + "collection | \n", + "properties | \n", + "stac_extensions | \n", + "stac_version | \n", + "
|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", + "S2B_MSIL2A_20251231T051319_N0511_R133_T31CEJ_2... | \n", + "[2.998598727270369, -82.62787974508461, 3.5898... | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[2.998682... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-12-31T07:23:05.00... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 1 | \n", + "S2B_MSIL2A_20251231T051319_N0511_R133_T31CDM_2... | \n", + "[-2.277998803053058, -80.22883981478951, 0.184... | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[-2.18323... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-12-31T07:23:23.00... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 2 | \n", + "S2B_MSIL2A_20251231T051319_N0511_R133_T31CDL_2... | \n", + "[-2.803841979337122, -81.13320280779526, 1.437... | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[0.108578... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-12-31T07:30:58.00... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 3 | \n", + "S2B_MSIL2A_20251231T051319_N0511_R133_T31CDK_2... | \n", + "[-3.447304707739892, -82.03781529080683, 2.739... | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[1.369168... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-12-31T07:31:31.00... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 4 | \n", + "S2B_MSIL2A_20251231T051319_N0511_R133_T30CWS_2... | \n", + "[-3.001058129404774, -80.25242038514605, 0.184... | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[-3.00103... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-12-31T07:24:46.00... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| \n", + " | gsd | \n", + "created | \n", + "expires | \n", + "updated | \n", + "datetime | \n", + "platform | \n", + "grid:code | \n", + "published | \n", + "instruments | \n", + "end_datetime | \n", + "... | \n", + "storage:schemes.cdse-s3.title | \n", + "storage:schemes.cdse-s3.platform | \n", + "storage:schemes.cdse-s3.description | \n", + "storage:schemes.cdse-s3.requester_pays | \n", + "storage:schemes.creodias-s3.type | \n", + "storage:schemes.creodias-s3.title | \n", + "storage:schemes.creodias-s3.platform | \n", + "storage:schemes.creodias-s3.description | \n", + "storage:schemes.creodias-s3.requester_pays | \n", + "processing:software.eometadatatool | \n", + "
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", + "10 | \n", + "2025-12-31T07:23:05.000000Z | \n", + "9999-01-01T00:00:00.000000Z | \n", + "2025-12-31T07:25:38.002693Z | \n", + "2025-12-31T05:13:19.024000Z | \n", + "sentinel-2b | \n", + "MGRS-31CEJ | \n", + "2025-12-31T07:25:38.002693Z | \n", + "[msi] | \n", + "2025-12-31T05:13:19.024000Z | \n", + "... | \n", + "Copernicus Data Space Ecosystem S3 | \n", + "https://eodata.dataspace.copernicus.eu | \n", + "This endpoint provides access to EO data which... | \n", + "False | \n", + "custom-s3 | \n", + "CREODIAS S3 | \n", + "https://eodata.cloudferro.com | \n", + "Comprehensive Earth Observation Data (EODATA) ... | \n", + "True | \n", + "251021130925+dirty | \n", + "
| 1 | \n", + "10 | \n", + "2025-12-31T07:23:23.000000Z | \n", + "9999-01-01T00:00:00.000000Z | \n", + "2025-12-31T07:26:10.381080Z | \n", + "2025-12-31T05:13:19.024000Z | \n", + "sentinel-2b | \n", + "MGRS-31CDM | \n", + "2025-12-31T07:26:10.381080Z | \n", + "[msi] | \n", + "2025-12-31T05:13:19.024000Z | \n", + "... | \n", + "Copernicus Data Space Ecosystem S3 | \n", + "https://eodata.dataspace.copernicus.eu | \n", + "This endpoint provides access to EO data which... | \n", + "False | \n", + "custom-s3 | \n", + "CREODIAS S3 | \n", + "https://eodata.cloudferro.com | \n", + "Comprehensive Earth Observation Data (EODATA) ... | \n", + "True | \n", + "251021130925+dirty | \n", + "
| 2 | \n", + "10 | \n", + "2025-12-31T07:30:58.000000Z | \n", + "9999-01-01T00:00:00.000000Z | \n", + "2025-12-31T07:33:41.761622Z | \n", + "2025-12-31T05:13:19.024000Z | \n", + "sentinel-2b | \n", + "MGRS-31CDL | \n", + "2025-12-31T07:33:41.761622Z | \n", + "[msi] | \n", + "2025-12-31T05:13:19.024000Z | \n", + "... | \n", + "Copernicus Data Space Ecosystem S3 | \n", + "https://eodata.dataspace.copernicus.eu | \n", + "This endpoint provides access to EO data which... | \n", + "False | \n", + "custom-s3 | \n", + "CREODIAS S3 | \n", + "https://eodata.cloudferro.com | \n", + "Comprehensive Earth Observation Data (EODATA) ... | \n", + "True | \n", + "251021130925+dirty | \n", + "
| 3 | \n", + "10 | \n", + "2025-12-31T07:31:31.000000Z | \n", + "9999-01-01T00:00:00.000000Z | \n", + "2025-12-31T07:34:43.634267Z | \n", + "2025-12-31T05:13:19.024000Z | \n", + "sentinel-2b | \n", + "MGRS-31CDK | \n", + "2025-12-31T07:34:43.634267Z | \n", + "[msi] | \n", + "2025-12-31T05:13:19.024000Z | \n", + "... | \n", + "Copernicus Data Space Ecosystem S3 | \n", + "https://eodata.dataspace.copernicus.eu | \n", + "This endpoint provides access to EO data which... | \n", + "False | \n", + "custom-s3 | \n", + "CREODIAS S3 | \n", + "https://eodata.cloudferro.com | \n", + "Comprehensive Earth Observation Data (EODATA) ... | \n", + "True | \n", + "251021130925+dirty | \n", + "
| 4 | \n", + "10 | \n", + "2025-12-31T07:24:46.000000Z | \n", + "9999-01-01T00:00:00.000000Z | \n", + "2025-12-31T07:27:44.406225Z | \n", + "2025-12-31T05:13:19.024000Z | \n", + "sentinel-2b | \n", + "MGRS-30CWS | \n", + "2025-12-31T07:27:44.406225Z | \n", + "[msi] | \n", + "2025-12-31T05:13:19.024000Z | \n", + "... | \n", + "Copernicus Data Space Ecosystem S3 | \n", + "https://eodata.dataspace.copernicus.eu | \n", + "This endpoint provides access to EO data which... | \n", + "False | \n", + "custom-s3 | \n", + "CREODIAS S3 | \n", + "https://eodata.cloudferro.com | \n", + "Comprehensive Earth Observation Data (EODATA) ... | \n", + "True | \n", + "251021130925+dirty | \n", + "
5 rows × 58 columns
\n", + "| \n", + " | $id | \n", + "type | \n", + "title | \n", + "$schema | \n", + "properties | \n", + "additionalProperties | \n", + "
|---|---|---|---|---|---|---|
| 0 | \n", + "https://stac.dataspace.copernicus.eu/v1/querya... | \n", + "object | \n", + "STAC Queryables. | \n", + "http://json-schema.org/draft-07/schema# | \n", + "{'id': {'type': 'string', 'title': 'Item ID', ... | \n", + "True | \n", + "
| \n", + " | 0 | \n", + "
|---|---|
| id.type | \n", + "string | \n", + "
| id.title | \n", + "Item ID | \n", + "
| id.minLength | \n", + "1 | \n", + "
| id.description | \n", + "Item identifier | \n", + "
| datetime.type | \n", + "string | \n", + "
| datetime.title | \n", + "Acquired | \n", + "
| datetime.format | \n", + "date-time | \n", + "
| datetime.pattern | \n", + "(\\+00:00|Z)$ | \n", + "
| datetime.description | \n", + "Datetime | \n", + "
| geometry.$ref | \n", + "https://geojson.org/schema/Feature.json | \n", + "
| geometry.title | \n", + "Item Geometry | \n", + "
| geometry.description | \n", + "Item Geometry | \n", + "
| platform.enum | \n", + "[sentinel-1a, sentinel-1b, sentinel-1c, sentin... | \n", + "
| platform.type | \n", + "string | \n", + "
| platform.title | \n", + "Platform | \n", + "
| platform.description | \n", + "Satellite platform identifier | \n", + "
| grid:code.type | \n", + "string | \n", + "
| grid:code.title | \n", + "Grid Code | \n", + "
| grid:code.pattern | \n", + "^[A-Z0-9]+-[-_.A-Za-z0-9]+$ | \n", + "
| grid:code.description | \n", + "Grid Code | \n", + "
| published.type | \n", + "string | \n", + "
| published.title | \n", + "Published | \n", + "
| published.format | \n", + "date-time | \n", + "
| published.pattern | \n", + "(\\+00:00|Z)$ | \n", + "
| published.description | \n", + "Datetime | \n", + "
| product:type.enum | \n", + "[EW_GRDH_1S, EW_GRDM_1S, IW_GRDH_1S, S1_GRDH_1... | \n", + "
| product:type.type | \n", + "string | \n", + "
| product:type.title | \n", + "Product Type | \n", + "
| product:type.description | \n", + "Product Type | \n", + "
| eo:snow_cover.type | \n", + "number | \n", + "
| eo:snow_cover.title | \n", + "Snow Cover | \n", + "
| eo:snow_cover.maximum | \n", + "100 | \n", + "
| eo:snow_cover.minimum | \n", + "0 | \n", + "
| eo:snow_cover.description | \n", + "Snow cover in percent | \n", + "
| eo:cloud_cover.type | \n", + "number | \n", + "
| eo:cloud_cover.title | \n", + "Cloud Cover | \n", + "
| eo:cloud_cover.maximum | \n", + "100 | \n", + "
| eo:cloud_cover.minimum | \n", + "0 | \n", + "
| eo:cloud_cover.description | \n", + "Cloud cover in percent | \n", + "
| sat:orbit_state.enum | \n", + "[ascending, descending, geostationary] | \n", + "
| sat:orbit_state.type | \n", + "string | \n", + "
| sat:orbit_state.title | \n", + "Orbit State | \n", + "
| sat:orbit_state.description | \n", + "The state of the orbit: ascending or descendin... | \n", + "
| sar:polarizations.enum | \n", + "[HH, HV, VH, VV] | \n", + "
| sar:polarizations.type | \n", + "string | \n", + "
| sar:polarizations.title | \n", + "SAR polarizations | \n", + "
| sar:polarizations.description | \n", + "SAR polarizations | \n", + "
| processing:version.type | \n", + "string | \n", + "
| processing:version.title | \n", + "Processing Version | \n", + "
| processing:version.description | \n", + "Which software/processor version was used to g... | \n", + "
| sat:relative_orbit.type | \n", + "integer | \n", + "
| sat:relative_orbit.title | \n", + "Relative Orbit | \n", + "
| sat:relative_orbit.minimum | \n", + "1 | \n", + "
| sat:relative_orbit.description | \n", + "Satellite relative orbit number | \n", + "
| sar:instrument_mode.enum | \n", + "[EW, IW, SM] | \n", + "
| sar:instrument_mode.type | \n", + "string | \n", + "
| sar:instrument_mode.title | \n", + "Instrument mode | \n", + "
| sar:instrument_mode.description | \n", + "SAR instrument mode | \n", + "
| \n", + " | $id | \n", + "type | \n", + "title | \n", + "$schema | \n", + "properties | \n", + "additionalProperties | \n", + "
|---|---|---|---|---|---|---|
| 0 | \n", + "https://stac.dataspace.copernicus.eu/v1/collec... | \n", + "object | \n", + "STAC Queryables. | \n", + "http://json-schema.org/draft-07/schema# | \n", + "{'id': {'type': 'string', 'title': 'Item ID', ... | \n", + "True | \n", + "
| \n", + " | sentinel-2-l2a | \n", + "
|---|---|
| id.type | \n", + "string | \n", + "
| id.title | \n", + "Item ID | \n", + "
| id.minLength | \n", + "1 | \n", + "
| id.description | \n", + "Item identifier | \n", + "
| datetime.type | \n", + "string | \n", + "
| datetime.title | \n", + "Acquired | \n", + "
| datetime.format | \n", + "date-time | \n", + "
| datetime.pattern | \n", + "(\\+00:00|Z)$ | \n", + "
| datetime.description | \n", + "Datetime | \n", + "
| geometry.$ref | \n", + "https://geojson.org/schema/Feature.json | \n", + "
| geometry.title | \n", + "Item Geometry | \n", + "
| geometry.description | \n", + "Item Geometry | \n", + "
| platform.enum | \n", + "[sentinel-2a, sentinel-2b, sentinel-2c] | \n", + "
| platform.type | \n", + "string | \n", + "
| platform.title | \n", + "Platform | \n", + "
| platform.description | \n", + "Satellite platform identifier | \n", + "
| grid:code.type | \n", + "string | \n", + "
| grid:code.title | \n", + "Grid Code | \n", + "
| grid:code.pattern | \n", + "^[A-Z0-9]+-[-_.A-Za-z0-9]+$ | \n", + "
| grid:code.description | \n", + "Grid Code | \n", + "
| published.type | \n", + "string | \n", + "
| published.title | \n", + "Published | \n", + "
| published.format | \n", + "date-time | \n", + "
| published.description | \n", + "Publication date and time of a product in the ... | \n", + "
| eo:snow_cover.type | \n", + "number | \n", + "
| eo:snow_cover.title | \n", + "Snow Cover | \n", + "
| eo:snow_cover.maximum | \n", + "100 | \n", + "
| eo:snow_cover.minimum | \n", + "0 | \n", + "
| eo:snow_cover.description | \n", + "Snow cover in percent | \n", + "
| eo:cloud_cover.type | \n", + "number | \n", + "
| eo:cloud_cover.title | \n", + "Cloud Cover | \n", + "
| eo:cloud_cover.maximum | \n", + "100 | \n", + "
| eo:cloud_cover.minimum | \n", + "0 | \n", + "
| eo:cloud_cover.description | \n", + "Cloud cover in percent | \n", + "
| sat:orbit_state.enum | \n", + "[ascending, descending, geostationary] | \n", + "
| sat:orbit_state.type | \n", + "string | \n", + "
| sat:orbit_state.title | \n", + "Orbit State | \n", + "
| sat:orbit_state.description | \n", + "The state of the orbit: ascending or descendin... | \n", + "
| processing:version.type | \n", + "string | \n", + "
| processing:version.title | \n", + "Processing Version | \n", + "
| processing:version.description | \n", + "Which software/processor version was used to g... | \n", + "
| sat:relative_orbit.type | \n", + "integer | \n", + "
| sat:relative_orbit.title | \n", + "Relative Orbit | \n", + "
| sat:relative_orbit.minimum | \n", + "1 | \n", + "
| sat:relative_orbit.description | \n", + "Satellite relative orbit number | \n", + "
| \n", + " | 0 | \n", + "
|---|---|
| id | \n", + "S2C_MSIL2A_20251229T094421_N0511_R036_T35ULV_2... | \n", + "
| bbox | \n", + "[23.940406316632895, 53.123645037009204, 25.45... | \n", + "
| type | \n", + "Feature | \n", + "
| links | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "
| assets | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "
| geometry | \n", + "{'type': 'Polygon', 'coordinates': [[[25.45795... | \n", + "
| collection | \n", + "sentinel-2-l2a | \n", + "
| properties | \n", + "{'gsd': 10, 'created': '2025-12-29T12:00:34.00... | \n", + "
| stac_extensions | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "
| stac_version | \n", + "1.1.0 | \n", + "
| \n", + " | 0 | \n", + "
|---|---|
| gsd | \n", + "10 | \n", + "
| created | \n", + "2025-12-29T12:00:34.000000Z | \n", + "
| expires | \n", + "9999-01-01T00:00:00.000000Z | \n", + "
| updated | \n", + "2025-12-29T12:07:04.465575Z | \n", + "
| datetime | \n", + "2025-12-29T09:44:21.025000Z | \n", + "
| platform | \n", + "sentinel-2c | \n", + "
| grid:code | \n", + "MGRS-35ULV | \n", + "
| published | \n", + "2025-12-29T12:04:27.641533Z | \n", + "
| statistics | \n", + "{'water': 0.009615, 'nodata': 28.0182, 'dark_a... | \n", + "
| instruments | \n", + "[msi] | \n", + "
| auth:schemes | \n", + "{'s3': {'type': 's3'}, 'oidc': {'type': 'openI... | \n", + "
| end_datetime | \n", + "2025-12-29T09:44:21.025000Z | \n", + "
| product:type | \n", + "S2MSI2A | \n", + "
| view:azimuth | \n", + "289.976841 | \n", + "
| constellation | \n", + "sentinel-2 | \n", + "
| eo:snow_cover | \n", + "0.0 | \n", + "
| eo:cloud_cover | \n", + "99.62 | \n", + "
| start_datetime | \n", + "2025-12-29T09:44:21.025000Z | \n", + "
| sat:orbit_state | \n", + "descending | \n", + "
| storage:schemes | \n", + "{'cdse-s3': {'type': 'custom-s3', 'title': 'Co... | \n", + "
| eopf:datatake_id | \n", + "GS2C_20251229T094421_006870_N05.11 | \n", + "
| processing:level | \n", + "L2 | \n", + "
| view:sun_azimuth | \n", + "171.251219 | \n", + "
| eopf:datastrip_id | \n", + "S2C_OPER_MSI_L2A_DS_2CPS_20251229T111511_S2025... | \n", + "
| processing:version | \n", + "05.11 | \n", + "
| product:timeliness | \n", + "PT24H | \n", + "
| sat:absolute_orbit | \n", + "6870 | \n", + "
| sat:relative_orbit | \n", + "36 | \n", + "
| view:sun_elevation | \n", + "12.743069 | \n", + "
| processing:datetime | \n", + "2025-12-29T11:15:11.000000Z | \n", + "
| processing:facility | \n", + "ESA | \n", + "
| processing:software | \n", + "{'eometadatatool': '251021130925+dirty'} | \n", + "
| eopf:instrument_mode | \n", + "INS-NOBS | \n", + "
| eopf:origin_datetime | \n", + "2025-12-29T12:00:34.000000Z | \n", + "
| view:incidence_angle | \n", + "8.734348 | \n", + "
| product:timeliness_category | \n", + "NRT | \n", + "
| sat:platform_international_designator | \n", + "2024-157A | \n", + "
| \n", + " | 0 | \n", + "
|---|---|
| water | \n", + "0.009615 | \n", + "
| nodata | \n", + "28.018200 | \n", + "
| dark_area | \n", + "0.003554 | \n", + "
| vegetation | \n", + "0.000000 | \n", + "
| thin_cirrus | \n", + "0.001378 | \n", + "
| cloud_shadow | \n", + "0.357159 | \n", + "
| unclassified | \n", + "0.010159 | \n", + "
| not_vegetated | \n", + "0.001065 | \n", + "
| high_proba_clouds | \n", + "91.287762 | \n", + "
| medium_proba_clouds | \n", + "8.329306 | \n", + "
| saturated_defective | \n", + "0.000000 | \n", + "
| \n", + " | lon | \n", + "lat | \n", + "
|---|---|---|
| 0 | \n", + "25.457953 | \n", + "54.137210 | \n", + "
| 1 | \n", + "24.891915 | \n", + "53.139700 | \n", + "
| 2 | \n", + "24.010911 | \n", + "53.123645 | \n", + "
| 3 | \n", + "23.940406 | \n", + "54.109206 | \n", + "
| 4 | \n", + "25.457953 | \n", + "54.137210 | \n", + "
| \n", + " | 0 | \n", + "
|---|---|
| AOT_10m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| AOT_20m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| AOT_60m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| B01_20m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| B01_60m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| B02_10m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| B02_20m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| B02_60m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| B03_10m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| B03_20m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| B03_60m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| B04_10m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| B04_20m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| B04_60m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| B05_20m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| B05_60m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| B06_20m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| B06_60m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| B07_20m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| B07_60m | \n", + "{'gsd': 60, 'href': 's3://eodata/Sentinel-2/MS... | \n", + "
| B08_10m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| B09_60m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| B11_20m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| B11_60m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| B12_20m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| B12_60m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| B8A_20m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| B8A_60m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| Product | \n", + "{'href': 'https://download.dataspace.copernicu... | \n", + "
| SCL_20m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| SCL_60m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| TCI_10m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| TCI_20m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| TCI_60m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| WVP_10m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| WVP_20m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| WVP_60m | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| thumbnail | \n", + "{'href': 'https://datahub.creodias.eu/odata/v1... | \n", + "
| safe_manifest | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| granule_metadata | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| inspire_metadata | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| product_metadata | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| datastrip_metadata | \n", + "{'href': 's3://eodata/Sentinel-2/MSI/L2A/2025/... | \n", + "
| \n", + " | type | \n", + "id | \n", + "geometry | \n", + "properties | \n", + "
|---|---|---|---|---|
| 0 | \n", + "Feature | \n", + "1a63419d-3369-4655-89ad-c372852728f1 | \n", + "{'type': 'Polygon', 'coordinates': [[[-180.0, ... | \n", + "{'collection': 'CLMS', 'status': 'ONLINE', 'li... | \n", + "
| 1 | \n", + "Feature | \n", + "c1caf30e-8348-43b6-b693-d2a5b4b213a9 | \n", + "{'type': 'Polygon', 'coordinates': [[[-180.0, ... | \n", + "{'collection': 'CLMS', 'status': 'ONLINE', 'li... | \n", + "
| 2 | \n", + "Feature | \n", + "23f992f3-f12e-4eda-9634-4d56950aeb14 | \n", + "{'type': 'Polygon', 'coordinates': [[[-180.0, ... | \n", + "{'collection': 'CLMS', 'status': 'ONLINE', 'li... | \n", + "
| 3 | \n", + "Feature | \n", + "d1bfa68f-1fc9-434a-952e-5e3ff96f6d34 | \n", + "{'type': 'Polygon', 'coordinates': [[[-180.0, ... | \n", + "{'collection': 'CLMS', 'status': 'ONLINE', 'li... | \n", + "
| 4 | \n", + "Feature | \n", + "fe327b4a-2af9-4fc0-9645-df42020e6924 | \n", + "{'type': 'Polygon', 'coordinates': [[[-49.9790... | \n", + "{'collection': 'CLMS', 'status': 'ONLINE', 'li... | \n", + "
| \n", + " | type | \n", + "id | \n", + "geometry | \n", + "properties | \n", + "
|---|---|---|---|---|
| 0 | \n", + "Feature | \n", + "049162f6-29eb-4ae2-9936-d4f4ea5cd0d4 | \n", + "{'type': 'Polygon', 'coordinates': [[[158.1858... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 1 | \n", + "Feature | \n", + "05c036dd-d6fb-4cf8-a2a8-75d02aa965c9 | \n", + "{'type': 'Polygon', 'coordinates': [[[158.0939... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 2 | \n", + "Feature | \n", + "05c92b08-d07a-4f29-9199-809cf3016791 | \n", + "{'type': 'Polygon', 'coordinates': [[[157.2826... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 3 | \n", + "Feature | \n", + "0a319264-4bb4-4157-af83-0839dd1a3d12 | \n", + "{'type': 'Polygon', 'coordinates': [[[158.1858... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 4 | \n", + "Feature | \n", + "0ad4ff10-1bfb-4f9f-88c5-fcf1406c35d3 | \n", + "{'type': 'Polygon', 'coordinates': [[[158.1858... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 5 | \n", + "Feature | \n", + "0c442108-83f6-4c85-bc60-7e8743ce434e | \n", + "{'type': 'Polygon', 'coordinates': [[[156.2813... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 6 | \n", + "Feature | \n", + "12db9bc3-a33d-4f51-ad55-0b0350d75549 | \n", + "{'type': 'Polygon', 'coordinates': [[[156.2833... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 7 | \n", + "Feature | \n", + "1abd0faf-5dab-4bdf-950b-9589a80e1430 | \n", + "{'type': 'Polygon', 'coordinates': [[[157.1880... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 8 | \n", + "Feature | \n", + "24e5c8a4-32ce-4011-8665-37aabccd5a11 | \n", + "{'type': 'Polygon', 'coordinates': [[[158.0939... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 9 | \n", + "Feature | \n", + "313ee18d-74ff-476e-b8cd-0eab9e5930e2 | \n", + "{'type': 'Polygon', 'coordinates': [[[157.2826... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 10 | \n", + "Feature | \n", + "4865edf9-34a0-4996-92f7-4a8b226cc16e | \n", + "{'type': 'Polygon', 'coordinates': [[[157.1880... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 11 | \n", + "Feature | \n", + "59eb60f1-b034-429c-a82d-82a75ce079a5 | \n", + "{'type': 'Polygon', 'coordinates': [[[158.3183... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 12 | \n", + "Feature | \n", + "73a717b1-8cab-48d7-ad4e-21414068e43b | \n", + "{'type': 'Polygon', 'coordinates': [[[156.0589... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 13 | \n", + "Feature | \n", + "7495d076-4343-4dda-9ad4-9f7275e7a800 | \n", + "{'type': 'Polygon', 'coordinates': [[[158.2868... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 14 | \n", + "Feature | \n", + "81494ebf-37c9-41e8-ba14-11be98078525 | \n", + "{'type': 'Polygon', 'coordinates': [[[157.7636... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 15 | \n", + "Feature | \n", + "8776d69e-ae4e-4e1c-a063-9f8630d3c284 | \n", + "{'type': 'Polygon', 'coordinates': [[[156.2833... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 16 | \n", + "Feature | \n", + "8e61f3b7-2f5a-4c2c-9a59-0fd05e35f74f | \n", + "{'type': 'Polygon', 'coordinates': [[[155.8609... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 17 | \n", + "Feature | \n", + "af3af6a9-ef33-4ba0-9276-241c52aa7292 | \n", + "{'type': 'Polygon', 'coordinates': [[[156.0589... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 18 | \n", + "Feature | \n", + "b340deb0-edf8-4ab0-bb96-829a99f178be | \n", + "{'type': 'Polygon', 'coordinates': [[[155.8609... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 19 | \n", + "Feature | \n", + "b7ed98a9-ec31-4f41-97a3-ccca877ed1be | \n", + "{'type': 'Polygon', 'coordinates': [[[158.1858... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| \n", + " | type | \n", + "id | \n", + "geometry | \n", + "properties | \n", + "
|---|---|---|---|---|
| 0 | \n", + "Feature | \n", + "cbff9b4a-f98d-4c6d-ae0d-bba181b35573 | \n", + "{'type': 'Polygon', 'coordinates': [[[156.6984... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 1 | \n", + "Feature | \n", + "d0f31bf8-0e19-4b78-b7b5-dfcb0367b535 | \n", + "{'type': 'Polygon', 'coordinates': [[[156.6984... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 2 | \n", + "Feature | \n", + "d198f91e-3e48-4ddf-bd63-725d87400af1 | \n", + "{'type': 'Polygon', 'coordinates': [[[156.2813... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 3 | \n", + "Feature | \n", + "e5800cc5-755f-4b71-ab39-75ba2139caa5 | \n", + "{'type': 'Polygon', 'coordinates': [[[158.2868... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 4 | \n", + "Feature | \n", + "f9c80d04-202f-40a0-8e8f-bb9093bfd8a7 | \n", + "{'type': 'Polygon', 'coordinates': [[[157.7636... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 5 | \n", + "Feature | \n", + "fc1324de-6cee-410e-86a1-90de1350a924 | \n", + "{'type': 'Polygon', 'coordinates': [[[158.3183... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 6 | \n", + "Feature | \n", + "03853cbf-bee1-4738-9169-7074e927c97f | \n", + "{'type': 'Polygon', 'coordinates': [[[157.1290... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 7 | \n", + "Feature | \n", + "0d99a056-d390-4297-8049-f243c9fcb555 | \n", + "{'type': 'Polygon', 'coordinates': [[[157.1290... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 8 | \n", + "Feature | \n", + "1e6a45d3-fc4a-43d1-b59f-70acccc1bac7 | \n", + "{'type': 'Polygon', 'coordinates': [[[154.6712... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 9 | \n", + "Feature | \n", + "2467d219-a97c-4533-b616-cb27ad6945ef | \n", + "{'type': 'Polygon', 'coordinates': [[[157.1290... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 10 | \n", + "Feature | \n", + "28d4c142-40d1-495f-a856-76f706b112ea | \n", + "{'type': 'Polygon', 'coordinates': [[[154.7972... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 11 | \n", + "Feature | \n", + "3e7473f3-af16-4829-949f-209bf2adbe15 | \n", + "{'type': 'Polygon', 'coordinates': [[[154.6712... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 12 | \n", + "Feature | \n", + "3f688831-bb03-41e9-af7a-dcdbae7f64e9 | \n", + "{'type': 'Polygon', 'coordinates': [[[157.2027... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 13 | \n", + "Feature | \n", + "42f20c25-0fac-42bf-9fba-5b2db370783f | \n", + "{'type': 'Polygon', 'coordinates': [[[154.8852... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 14 | \n", + "Feature | \n", + "4af84efd-7b6f-4fee-9ca8-5d64148d1d38 | \n", + "{'type': 'Polygon', 'coordinates': [[[157.1290... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 15 | \n", + "Feature | \n", + "525f03b7-7d86-487f-b3ca-b7fd838a82b3 | \n", + "{'type': 'Polygon', 'coordinates': [[[155.6954... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 16 | \n", + "Feature | \n", + "724ace31-18c3-4e52-b240-241173143c20 | \n", + "{'type': 'Polygon', 'coordinates': [[[157.2027... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 17 | \n", + "Feature | \n", + "8549fff5-18c3-4e77-83cf-2f1ba97eef3f | \n", + "{'type': 'Polygon', 'coordinates': [[[154.8852... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 18 | \n", + "Feature | \n", + "be61cfd9-8269-4208-ad6f-5eca64972b72 | \n", + "{'type': 'Polygon', 'coordinates': [[[156.6802... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 19 | \n", + "Feature | \n", + "d86b077f-1a81-4a44-a9d4-f1d4b20be41e | \n", + "{'type': 'Polygon', 'coordinates': [[[156.6802... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| \n", + " | type | \n", + "id | \n", + "geometry | \n", + "properties | \n", + "
|---|---|---|---|---|
| 0 | \n", + "Feature | \n", + "04008903-8704-437b-a8b8-d0942d7fa19c | \n", + "{'type': 'Polygon', 'coordinates': [[[22.45053... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 1 | \n", + "Feature | \n", + "545a3805-d55b-4ce0-b088-3e259072f934 | \n", + "{'type': 'Polygon', 'coordinates': [[[19.53152... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 2 | \n", + "Feature | \n", + "f5d8f083-77f3-432a-bd8d-cc816ddd1300 | \n", + "{'type': 'Polygon', 'coordinates': [[[22.45053... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 3 | \n", + "Feature | \n", + "8eeb4008-c8e9-4ddc-998c-b22f259d5de6 | \n", + "{'type': 'Polygon', 'coordinates': [[[19.53152... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 4 | \n", + "Feature | \n", + "97e26e1a-361d-4e37-b30c-5eba50506187 | \n", + "{'type': 'Polygon', 'coordinates': [[[21.96038... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 5 | \n", + "Feature | \n", + "cc1dbd1e-9b1b-4ea0-9b72-08be8bc7ab47 | \n", + "{'type': 'Polygon', 'coordinates': [[[19.50094... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 6 | \n", + "Feature | \n", + "ae2a69fd-1ad2-4b20-b9e9-d36b2ec05806 | \n", + "{'type': 'Polygon', 'coordinates': [[[21.96038... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 7 | \n", + "Feature | \n", + "83d9e0ae-61f2-4a27-beca-2c428715cf12 | \n", + "{'type': 'Polygon', 'coordinates': [[[21.96424... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 8 | \n", + "Feature | \n", + "f09bd83c-7d3a-4823-8e63-b5899fa090b3 | \n", + "{'type': 'Polygon', 'coordinates': [[[21.96360... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 9 | \n", + "Feature | \n", + "a3f8f7e9-2276-54e5-b202-dcda07c35839 | \n", + "{'type': 'Polygon', 'coordinates': [[[20.99970... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 10 | \n", + "Feature | \n", + "9823f638-51d5-4eb3-ac55-4f62532a2dc4 | \n", + "{'type': 'Polygon', 'coordinates': [[[19.53152... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 11 | \n", + "Feature | \n", + "c9e836ee-8b7c-403b-bca2-d59074783d98 | \n", + "{'type': 'Polygon', 'coordinates': [[[21.96014... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 12 | \n", + "Feature | \n", + "ed68db23-4c0f-4585-8693-6f022b5980c8 | \n", + "{'type': 'Polygon', 'coordinates': [[[22.45478... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 13 | \n", + "Feature | \n", + "a1009dac-c58d-4b9a-b0ec-1db868c2e3bd | \n", + "{'type': 'Polygon', 'coordinates': [[[21.96014... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 14 | \n", + "Feature | \n", + "80eef4fb-9f20-4728-848c-8d678aba60c7 | \n", + "{'type': 'Polygon', 'coordinates': [[[19.53152... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 15 | \n", + "Feature | \n", + "cf68685c-e9e3-439c-97fc-90025a6e4513 | \n", + "{'type': 'Polygon', 'coordinates': [[[20.99970... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 16 | \n", + "Feature | \n", + "84ae8070-005b-4ffc-9af1-ad9aca5ae26b | \n", + "{'type': 'Polygon', 'coordinates': [[[20.99970... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 17 | \n", + "Feature | \n", + "fbb4d27b-d3ff-40aa-8424-06ceaee8f375 | \n", + "{'type': 'Polygon', 'coordinates': [[[19.53152... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 18 | \n", + "Feature | \n", + "f130d80d-dd19-59cf-a7ff-f85495d7dd21 | \n", + "{'type': 'Polygon', 'coordinates': [[[20.99970... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 19 | \n", + "Feature | \n", + "ea169cc8-83bd-48b0-8247-f5769ec1ebef | \n", + "{'type': 'Polygon', 'coordinates': [[[22.44973... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| \n", + " | type | \n", + "id | \n", + "geometry | \n", + "properties | \n", + "
|---|---|---|---|---|
| 0 | \n", + "Feature | \n", + "5ecd6532-0200-497d-a7c1-776ff2738d1a | \n", + "{'type': 'Polygon', 'coordinates': [[[4.436812... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 1 | \n", + "Feature | \n", + "5831e264-e17e-4af9-a1f7-d6de71a8a038 | \n", + "{'type': 'Polygon', 'coordinates': [[[4.436848... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 2 | \n", + "Feature | \n", + "ef6df284-3d63-4821-8dc2-f86825dfde0f | \n", + "{'type': 'Polygon', 'coordinates': [[[4.064087... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 3 | \n", + "Feature | \n", + "1b32f7ad-ec32-45a1-807b-9adbd510e688 | \n", + "{'type': 'Polygon', 'coordinates': [[[5.968085... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| 4 | \n", + "Feature | \n", + "530aeeb3-b889-4596-9c09-3d2e917e9aa4 | \n", + "{'type': 'Polygon', 'coordinates': [[[4.325619... | \n", + "{'collection': 'SENTINEL-2', 'status': 'ONLINE... | \n", + "
| \n", + " | type | \n", + "id | \n", + "geometry | \n", + "properties | \n", + "
|---|---|---|---|---|
| 0 | \n", + "Feature | \n", + "da70cfa7-8b3b-514a-a807-efd43a2d9652 | \n", + "{'type': 'Polygon', 'coordinates': [[[17.75591... | \n", + "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", + "
| 1 | \n", + "Feature | \n", + "02036627-0bbd-5533-b92f-5229818a9b57 | \n", + "{'type': 'Polygon', 'coordinates': [[[19.06133... | \n", + "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", + "
| 2 | \n", + "Feature | \n", + "9aab3f54-50d9-59f7-8194-e5f0e7539841 | \n", + "{'type': 'Polygon', 'coordinates': [[[20.65879... | \n", + "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", + "
| 3 | \n", + "Feature | \n", + "c7bad712-83bd-5b02-bdfa-be0665ed820a | \n", + "{'type': 'Polygon', 'coordinates': [[[2.281085... | \n", + "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", + "
| 4 | \n", + "Feature | \n", + "84a3d05a-119e-5d2b-8297-4e23b801361b | \n", + "{'type': 'Polygon', 'coordinates': [[[-0.01425... | \n", + "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", + "
| 5 | \n", + "Feature | \n", + "bfd85b2c-1d8d-5768-bed5-b5581faed35c | \n", + "{'type': 'Polygon', 'coordinates': [[[11.97771... | \n", + "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", + "
| 6 | \n", + "Feature | \n", + "69b6f0a6-f5bc-5be0-8899-c0ecab4bccd9 | \n", + "{'type': 'Polygon', 'coordinates': [[[-9.38965... | \n", + "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", + "
| 7 | \n", + "Feature | \n", + "6064f952-7b8f-59c1-919f-18173a6394ad | \n", + "{'type': 'Polygon', 'coordinates': [[[84.86653... | \n", + "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", + "
| 8 | \n", + "Feature | \n", + "d40fa39b-a849-53e4-99c8-2e1839370628 | \n", + "{'type': 'Polygon', 'coordinates': [[[46.27384... | \n", + "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", + "
| 9 | \n", + "Feature | \n", + "165d3b85-e65d-5bbe-9cab-f7bad6fee8e7 | \n", + "{'type': 'Polygon', 'coordinates': [[[42.11571... | \n", + "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", + "
| 10 | \n", + "Feature | \n", + "409e8402-7997-556f-8784-71e657ad3604 | \n", + "{'type': 'Polygon', 'coordinates': [[[-8.27511... | \n", + "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", + "
| 11 | \n", + "Feature | \n", + "486c8fbf-dbe4-51af-bb36-d50c1e19e6f2 | \n", + "{'type': 'Polygon', 'coordinates': [[[20.00865... | \n", + "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", + "
| 12 | \n", + "Feature | \n", + "63b87052-4ee1-5dd7-a917-f58ac80089db | \n", + "{'type': 'Polygon', 'coordinates': [[[-7.18738... | \n", + "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", + "
| 13 | \n", + "Feature | \n", + "f9208ee1-1dab-5b13-a5a0-5fb6f29b4f3b | \n", + "{'type': 'Polygon', 'coordinates': [[[-4.20402... | \n", + "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", + "
| 14 | \n", + "Feature | \n", + "69865c3a-87ae-5392-a7cd-e3cd43690b0e | \n", + "{'type': 'Polygon', 'coordinates': [[[6.677761... | \n", + "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", + "
| 15 | \n", + "Feature | \n", + "0ade07fb-010a-5572-b121-0549cea086e6 | \n", + "{'type': 'Polygon', 'coordinates': [[[22.64895... | \n", + "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", + "
| 16 | \n", + "Feature | \n", + "546770e8-aa49-523c-ade6-05cbc57b44de | \n", + "{'type': 'Polygon', 'coordinates': [[[20.51301... | \n", + "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", + "
| 17 | \n", + "Feature | \n", + "b6783847-c4f6-51db-bf71-4fadf26b4d43 | \n", + "{'type': 'Polygon', 'coordinates': [[[18.18976... | \n", + "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", + "
| 18 | \n", + "Feature | \n", + "e03a43b5-7b4b-5a83-b5a8-188739344c79 | \n", + "{'type': 'Polygon', 'coordinates': [[[-100.043... | \n", + "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", + "
| 19 | \n", + "Feature | \n", + "b0a0c958-fbd7-56a2-a64e-efe5bace332b | \n", + "{'type': 'Polygon', 'coordinates': [[[7.678896... | \n", + "{'collection': 'SENTINEL-1', 'status': 'ONLINE... | \n", + "
| \n", + " | id | \n", + "bbox | \n", + "type | \n", + "links | \n", + "assets | \n", + "geometry | \n", + "collection | \n", + "properties | \n", + "stac_extensions | \n", + "stac_version | \n", + "
|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", + "S2B_MSIL2A_20251228T233129_N0511_R101_T38CMS_2... | \n", + "[39.72200119694694, -80.25203205661444, 45.516... | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[40.19847... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-12-29T02:20:59.00... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 1 | \n", + "S2B_MSIL2A_20251228T233129_N0511_R101_T37CEM_2... | \n", + "[38.99894187059522, -80.25242038514605, 44.788... | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[38.99903... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-12-29T02:21:40.00... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 2 | \n", + "S2B_MSIL2A_20251228T000139_N0511_R087_T38CMT_2... | \n", + "[40.1593625828737, -79.35014408984915, 44.5605... | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[40.29181... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-12-28T01:34:35.00... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 3 | \n", + "S2B_MSIL2A_20251228T000139_N0511_R087_T38CMS_2... | \n", + "[39.72200119694694, -80.25203205661444, 45.516... | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[43.28200... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-12-28T01:42:28.00... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 4 | \n", + "S2B_MSIL2A_20251228T000139_N0511_R087_T37CEM_2... | \n", + "[38.99894187059522, -80.25242038514605, 44.788... | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[43.04873... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-12-28T01:41:49.00... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| \n", + " | id | \n", + "bbox | \n", + "type | \n", + "links | \n", + "assets | \n", + "geometry | \n", + "collection | \n", + "properties | \n", + "stac_extensions | \n", + "stac_version | \n", + "
|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", + "S2B_MSIL2A_20251231T051319_N0511_R133_T31CDM_2... | \n", + "[-2.277998803053058, -80.22883981478951, 0.184... | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[-2.18323... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-12-31T07:23:23.00... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 1 | \n", + "S2B_MSIL2A_20251231T051319_N0511_R133_T30CVS_2... | \n", + "[-8.277998803053059, -80.25203205661444, -2.48... | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[-8.23246... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-12-31T07:25:36.00... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 2 | \n", + "S2B_MSIL2A_20251231T051319_N0511_R133_T29CNM_2... | \n", + "[-9.001058129404774, -80.25242038514605, -3.21... | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[-9.00104... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-12-31T07:24:16.00... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 3 | \n", + "S2B_MSIL2A_20251231T051319_N0511_R133_T28CES_2... | \n", + "[-13.59074209711865, -80.24048353817358, -9.21... | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[-13.5907... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-12-31T07:24:35.00... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 4 | \n", + "S2B_MSIL2A_20251231T050229_N0511_R133_T42FXM_2... | \n", + "[70.35704429215036, -48.83293960900481, 71.460... | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[70.36265... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-12-31T07:18:51.00... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| \n", + " | id | \n", + "bbox | \n", + "type | \n", + "links | \n", + "assets | \n", + "collection | \n", + "properties | \n", + "stac_extensions | \n", + "stac_version | \n", + "
|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", + "S2B_MSIL2A_20251231T051319_N0511_R133_T31CDM_2... | \n", + "[-2.277998803053058, -80.22883981478951, 0.184... | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-12-31T07:23:23.00... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 1 | \n", + "S2B_MSIL2A_20251231T051319_N0511_R133_T30CVS_2... | \n", + "[-8.277998803053059, -80.25203205661444, -2.48... | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-12-31T07:25:36.00... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 2 | \n", + "S2B_MSIL2A_20251231T051319_N0511_R133_T29CNM_2... | \n", + "[-9.001058129404774, -80.25242038514605, -3.21... | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-12-31T07:24:16.00... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 3 | \n", + "S2B_MSIL2A_20251231T051319_N0511_R133_T28CES_2... | \n", + "[-13.59074209711865, -80.24048353817358, -9.21... | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-12-31T07:24:35.00... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 4 | \n", + "S2B_MSIL2A_20251231T050229_N0511_R133_T42FXM_2... | \n", + "[70.35704429215036, -48.83293960900481, 71.460... | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-12-31T07:18:51.00... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| \n", + " | assets | \n", + "links | \n", + "
|---|---|---|
| 0 | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "
| 1 | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "
| 2 | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "
| 3 | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "
| 4 | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "
| 5 | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "
| 6 | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "
| 7 | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "
| 8 | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "
| 9 | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "
| \n", + " | id | \n", + "bbox | \n", + "type | \n", + "links | \n", + "assets | \n", + "geometry | \n", + "collection | \n", + "properties | \n", + "stac_extensions | \n", + "stac_version | \n", + "
|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", + "S2B_MSIL2A_20250115T043029_N0511_R133_T45QXD_2... | \n", + "[88.664444, 20.851601, 89.027861, 21.692646] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[89.01644... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-01-15T07:22:11.00... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 1 | \n", + "S2B_MSIL2A_20250114T190459_N0511_R127_T05CMS_2... | \n", + "[-156.43536, -74.863265, -156.220227, -74.762472] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[-156.220... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-01-14T23:33:48.00... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 2 | \n", + "S2B_MSIL2A_20250112T160529_N0511_R097_T17QLB_2... | \n", + "[-82.910307, 18.894431, -82.404586, 19.890114] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[-82.4045... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-01-12T21:56:54.00... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 3 | \n", + "S2B_MSIL2A_20250111T215909_N0511_R086_T02LKJ_2... | \n", + "[-173.79563, -15.450678, -173.254328, -14.455833] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[-173.254... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-01-11T23:29:04.00... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 4 | \n", + "S2B_MSIL2A_20250108T194719_N0511_R042_T10VEN_2... | \n", + "[-123.000374, 60.33627, -120.949436, 61.334442] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[-120.983... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-01-08T23:35:08.00... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 5 | \n", + "S2B_MSIL2A_20250101T204019_N0511_R085_T45CWK_2... | \n", + "[86.99875, -82.012669, 94.069006, -81.007392] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[90.74373... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-01-01T22:39:28.00... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 6 | \n", + "S2A_MSIL2A_20250106T000731_N0511_R073_T57MTR_2... | \n", + "[156.297745, -4.122706, 156.409008, -3.61448] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[156.4090... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-01-06T02:48:01.00... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 7 | \n", + "S2A_MSIL2A_20250104T055231_N0511_R048_T43SBT_2... | \n", + "[71.754262, 33.309546, 72.956153, 34.324206] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[71.75426... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-01-04T09:50:28.00... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 8 | \n", + "S2B_MSIL2A_20250114T100259_N0511_R122_T32RQV_2... | \n", + "[11.086289, 30.62773, 11.392596, 31.618143] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[11.39259... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-01-14T13:23:07.00... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 9 | \n", + "S2B_MSIL2A_20250113T085229_N0511_R107_T34LBL_2... | \n", + "[18.227016, -13.641674, 18.47779, -12.649679] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[18.47779... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-01-13T12:09:51.00... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| \n", + " | id | \n", + "properties.eo:cloud_cover | \n", + "
|---|---|---|
| 0 | \n", + "S2B_MSIL2A_20250115T043029_N0511_R133_T45QXD_2... | \n", + "10.01 | \n", + "
| 1 | \n", + "S2B_MSIL2A_20250114T190459_N0511_R127_T05CMS_2... | \n", + "10.01 | \n", + "
| 2 | \n", + "S2B_MSIL2A_20250112T160529_N0511_R097_T17QLB_2... | \n", + "10.01 | \n", + "
| 3 | \n", + "S2B_MSIL2A_20250111T215909_N0511_R086_T02LKJ_2... | \n", + "10.01 | \n", + "
| 4 | \n", + "S2B_MSIL2A_20250108T194719_N0511_R042_T10VEN_2... | \n", + "10.01 | \n", + "
| 5 | \n", + "S2B_MSIL2A_20250101T204019_N0511_R085_T45CWK_2... | \n", + "10.01 | \n", + "
| 6 | \n", + "S2A_MSIL2A_20250106T000731_N0511_R073_T57MTR_2... | \n", + "10.01 | \n", + "
| 7 | \n", + "S2A_MSIL2A_20250104T055231_N0511_R048_T43SBT_2... | \n", + "10.01 | \n", + "
| 8 | \n", + "S2B_MSIL2A_20250114T100259_N0511_R122_T32RQV_2... | \n", + "10.02 | \n", + "
| 9 | \n", + "S2B_MSIL2A_20250113T085229_N0511_R107_T34LBL_2... | \n", + "10.02 | \n", + "
| \n", + " | id | \n", + "bbox | \n", + "type | \n", + "links | \n", + "assets | \n", + "geometry | \n", + "collection | \n", + "properties | \n", + "stac_extensions | \n", + "stac_version | \n", + "
|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", + "S2B_MSIL2A_20250101T000439_N0511_R073_T57NVH_2... | \n", + "[158.093982, 6.243793, 158.745574, 7.155754] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[158.0939... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-01-01T01:44:17.00... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 1 | \n", + "S2B_MSIL2A_20250101T000439_N0511_R073_T57NVG_2... | \n", + "[158.095521, 5.339213, 158.599385, 6.33265] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[158.2868... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-01-01T01:30:22.00... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 2 | \n", + "S2B_MSIL2A_20250101T000439_N0511_R073_T57NVF_2... | \n", + "[158.096981, 5.31548, 158.396634, 5.427753] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[158.3183... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-01-01T01:23:15.00... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 3 | \n", + "S2B_MSIL2A_20250101T000439_N0511_R073_T57NUJ_2... | \n", + "[157.188064, 7.145259, 158.12463, 7.360241] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[157.1880... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-01-01T01:27:52.00... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 4 | \n", + "S2B_MSIL2A_20250101T000439_N0511_R073_T57NUH_2... | \n", + "[157.188619, 6.241466, 158.184617, 7.235884] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[157.7636... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-01-01T01:47:52.00... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 5 | \n", + "S2B_MSIL2A_20250101T000439_N0511_R073_T57NUG_2... | \n", + "[157.191994, 5.367592, 158.185873, 6.332402] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[158.1858... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-01-01T01:33:24.00... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 6 | \n", + "S2B_MSIL2A_20250101T000439_N0511_R073_T57NUF_2... | \n", + "[157.949753, 5.367593, 158.185869, 5.427677] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[158.1858... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-01-01T01:24:35.00... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 7 | \n", + "S2B_MSIL2A_20250101T000439_N0511_R073_T57NTJ_2... | \n", + "[156.281374, 7.140815, 157.277502, 7.532774] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[156.2813... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-01-01T01:28:04.00... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 8 | \n", + "S2B_MSIL2A_20250101T000439_N0511_R073_T57NTH_2... | \n", + "[156.283325, 6.237589, 157.280668, 7.234569] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[156.2833... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-01-01T01:36:42.00... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 9 | \n", + "S2B_MSIL2A_20250101T000439_N0511_R073_T57NTG_2... | \n", + "[156.288384, 5.591788, 157.282626, 6.330194] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[157.2826... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-01-01T01:44:40.00... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 10 | \n", + "S2B_MSIL2A_20250101T000439_N0511_R073_T56NRP_2... | \n", + "[156.058923, 7.133902, 156.711379, 7.556189] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[156.0589... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-01-01T01:27:53.00... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 11 | \n", + "S2B_MSIL2A_20250101T000439_N0511_R073_T56NRN_2... | \n", + "[155.860957, 6.231558, 156.70932, 7.227175] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[155.8609... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-01-01T01:31:26.00... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 12 | \n", + "S2B_MSIL2A_20250101T000439_N0511_R073_T56NRM_2... | \n", + "[155.784722, 5.718646, 156.702422, 6.32492] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[156.6984... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-01-01T01:34:52.00... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 13 | \n", + "S2B_MSIL2A_20250101T000619_N0511_R073_T57NUA_2... | \n", + "[157.202748, 0.157188, 157.360626, 0.798383] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[157.2027... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-01-01T01:22:58.00... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 14 | \n", + "S2B_MSIL2A_20250101T000619_N0511_R073_T57NTB_2... | \n", + "[156.304301, 0.81552, 157.139021, 1.025204] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[157.1290... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-01-01T01:23:51.00... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 15 | \n", + "S2B_MSIL2A_20250101T000619_N0511_R073_T57NTA_2... | \n", + "[156.304464, 0.157188, 157.290683, 0.904207] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[157.1290... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-01-01T01:28:27.00... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 16 | \n", + "S2B_MSIL2A_20250101T000619_N0511_R073_T56NRG_2... | \n", + "[155.695115, 0.814734, 156.680581, 1.15563] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[155.6954... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-01-01T01:24:32.00... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 17 | \n", + "S2B_MSIL2A_20250101T000619_N0511_R073_T56NRF_2... | \n", + "[155.695053, 0.303835, 156.680494, 0.903904] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[156.6802... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-01-01T01:25:56.00... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 18 | \n", + "S2B_MSIL2A_20250101T000619_N0511_R073_T56NQG_2... | \n", + "[154.796875, 0.81546, 155.783269, 1.325109] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[154.7972... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-01-01T01:33:19.00... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 19 | \n", + "S2B_MSIL2A_20250101T000619_N0511_R073_T56NQF_2... | \n", + "[154.796872, 0.515161, 155.782977, 0.904464] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[155.7828... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-01-01T01:30:31.00... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| \n", + " | id | \n", + "bbox | \n", + "type | \n", + "links | \n", + "assets | \n", + "geometry | \n", + "collection | \n", + "properties | \n", + "stac_extensions | \n", + "stac_version | \n", + "
|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", + "S2B_MSIL2A_20210909T095029_N0500_R079_T34UEC_2... | \n", + "[20.999706, 51.360232, 21.963602, 52.350473] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[21.96360... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2023-03-13T01:48:59.09... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 1 | \n", + "S2B_MSIL2A_20210909T095029_N0500_R079_T34UDC_2... | \n", + "[19.531529, 51.354432, 21.143291, 52.350386] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[19.53152... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2023-03-13T01:53:31.43... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 2 | \n", + "S2A_MSIL2A_20210904T095031_N0500_R079_T34UEC_2... | \n", + "[20.999706, 51.360262, 21.960142, 52.350473] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[21.96014... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2023-03-12T16:22:37.90... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 3 | \n", + "S2B_MSIL2A_20210807T094029_N0500_R036_T34UEC_2... | \n", + "[20.999706, 51.352634, 22.611384, 52.350473] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[20.99970... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2023-02-14T13:47:12.87... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 4 | \n", + "S2B_MSIL2A_20210711T095029_N0500_R079_T34UEC_2... | \n", + "[20.999706, 51.360286, 21.955875, 52.350473] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[21.95587... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2023-03-15T08:23:16.75... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 5 | \n", + "S2B_MSIL2A_20210708T094029_N0500_R036_T34UEC_2... | \n", + "[20.999706, 51.352634, 22.611384, 52.350473] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[20.99970... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2023-03-16T17:59:14.58... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 6 | \n", + "S2B_MSIL2A_20210621T095029_N0500_R079_T34UEC_2... | \n", + "[20.999706, 51.360262, 21.960388, 52.350473] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[21.96038... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2023-06-10T22:54:38.64... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| 7 | \n", + "S2B_MSIL2A_20210621T095029_N0500_R079_T34UDC_2... | \n", + "[19.531529, 51.354432, 21.143291, 52.350386] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[19.53152... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2023-06-10T22:58:56.96... | \n", + "[https://stac-extensions.github.io/eo/v2.0.0/s... | \n", + "1.1.0 | \n", + "
| \n", + " | id | \n", + "bbox | \n", + "type | \n", + "links | \n", + "assets | \n", + "geometry | \n", + "collection | \n", + "properties | \n", + "stac_extensions | \n", + "stac_version | \n", + "
|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", + "S2A_MSIL2A_20220622T105631_N0510_R094_T31UET_2... | \n", + "[2.999706370881351, 51.357799703919795, 4.3256... | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[4.325619... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-02-15T08:31:15.80... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 1 | \n", + "S2A_MSIL2A_20220616T103631_N0510_R008_T31UFT_2... | \n", + "[4.436120625123461, 51.32452335478603, 6.07775... | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[4.436848... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-02-14T19:06:43.50... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 2 | \n", + "S2B_MSIL2A_20220614T104629_N0510_R051_T31UFS_2... | \n", + "[4.408715109637645, 50.42809119252208, 6.01702... | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[5.968085... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-02-14T14:34:10.93... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 3 | \n", + "S2B_MSIL2A_20220611T103629_N0510_R008_T31UFS_2... | \n", + "[4.408715109637645, 50.42629366061962, 6.01702... | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[4.436812... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-02-14T08:11:38.91... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 4 | \n", + "S2B_MSIL2A_20220611T103629_N0510_R008_T31UES_2... | \n", + "[4.064087128317525, 50.453523278919015, 4.5795... | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'AOT_10m': {'href': 's3://eodata/Sentinel-2/M... | \n", + "{'type': 'Polygon', 'coordinates': [[[4.064087... | \n", + "sentinel-2-l2a | \n", + "{'gsd': 10, 'created': '2025-02-14T08:11:38.75... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| \n", + " | id | \n", + "bbox | \n", + "type | \n", + "links | \n", + "assets | \n", + "geometry | \n", + "collection | \n", + "properties | \n", + "stac_extensions | \n", + "stac_version | \n", + "
|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", + "S1A_IW_GRDH_1SDV_20251231T061257_20251231T0613... | \n", + "[-4.961516, 29.132935, -2.043568, 30.6371] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", + "{'type': 'Polygon', 'coordinates': [[[-2.28483... | \n", + "sentinel-1-grd | \n", + "{'created': '2025-12-31T06:01:17.880940Z', 'ex... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 1 | \n", + "S1A_IW_GRDH_1SDV_20251231T061232_20251231T0612... | \n", + "[-4.750492, 30.215359, -1.708874, 32.141827] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", + "{'type': 'Polygon', 'coordinates': [[[-2.04354... | \n", + "sentinel-1-grd | \n", + "{'created': '2025-12-31T06:01:18.350244Z', 'ex... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 2 | \n", + "S1A_IW_GRDH_1SDV_20251231T061207_20251231T0612... | \n", + "[-4.460252, 31.722683, -1.369323, 33.646049] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", + "{'type': 'Polygon', 'coordinates': [[[-1.70885... | \n", + "sentinel-1-grd | \n", + "{'created': '2025-12-31T06:12:00.285895Z', 'ex... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 3 | \n", + "S1A_IW_GRDH_1SDV_20251231T061142_20251231T0612... | \n", + "[-4.168624, 33.229343, -1.009401, 35.147907] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", + "{'type': 'Polygon', 'coordinates': [[[-1.3693,... | \n", + "sentinel-1-grd | \n", + "{'created': '2025-12-31T06:12:01.441023Z', 'ex... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 4 | \n", + "S1A_IW_GRDH_1SDV_20251231T061117_20251231T0611... | \n", + "[-3.860411, 34.733044, -0.639349, 36.648712] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", + "{'type': 'Polygon', 'coordinates': [[[-1.00938... | \n", + "sentinel-1-grd | \n", + "{'created': '2025-12-31T06:11:58.380623Z', 'ex... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 5 | \n", + "S1A_IW_GRDH_1SDV_20251231T061052_20251231T0611... | \n", + "[-3.545959, 36.235367, -0.277303, 38.150902] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", + "{'type': 'Polygon', 'coordinates': [[[-0.63932... | \n", + "sentinel-1-grd | \n", + "{'created': '2025-12-31T06:11:58.937265Z', 'ex... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 6 | \n", + "S1A_IW_GRDH_1SDV_20251231T061027_20251231T0610... | \n", + "[-3.243545, 37.739258, 0.093031, 39.652462] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", + "{'type': 'Polygon', 'coordinates': [[[-0.27728... | \n", + "sentinel-1-grd | \n", + "{'created': '2025-12-31T06:11:47.595395Z', 'ex... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 7 | \n", + "S1A_IW_GRDH_1SDV_20251231T061002_20251231T0610... | \n", + "[-2.937376, 39.242229, 0.463011, 41.154549] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", + "{'type': 'Polygon', 'coordinates': [[[0.093054... | \n", + "sentinel-1-grd | \n", + "{'created': '2025-12-31T06:11:48.024200Z', 'ex... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 8 | \n", + "S1A_IW_GRDH_1SDV_20251231T060937_20251231T0610... | \n", + "[-2.63635, 40.745724, 0.852503, 42.654728] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", + "{'type': 'Polygon', 'coordinates': [[[0.463035... | \n", + "sentinel-1-grd | \n", + "{'created': '2025-12-31T06:12:00.578034Z', 'ex... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 9 | \n", + "S1A_IW_GRDH_1SDV_20251231T060912_20251231T0609... | \n", + "[-2.321066, 42.246735, 1.270123, 44.15239] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", + "{'type': 'Polygon', 'coordinates': [[[0.852526... | \n", + "sentinel-1-grd | \n", + "{'created': '2025-12-31T06:11:59.740213Z', 'ex... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| \n", + " | id | \n", + "bbox | \n", + "type | \n", + "links | \n", + "assets | \n", + "geometry | \n", + "collection | \n", + "properties | \n", + "stac_extensions | \n", + "stac_version | \n", + "
|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", + "S1A_IW_GRDH_1SDV_20251231T061257_20251231T0613... | \n", + "[-4.961516, 29.132935, -2.043568, 30.6371] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", + "{'type': 'Polygon', 'coordinates': [[[-2.28483... | \n", + "sentinel-1-grd | \n", + "{'created': '2025-12-31T06:01:17.880940Z', 'ex... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 1 | \n", + "S1A_IW_GRDH_1SDV_20251231T061232_20251231T0612... | \n", + "[-4.750492, 30.215359, -1.708874, 32.141827] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", + "{'type': 'Polygon', 'coordinates': [[[-2.04354... | \n", + "sentinel-1-grd | \n", + "{'created': '2025-12-31T06:01:18.350244Z', 'ex... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 2 | \n", + "S1A_IW_GRDH_1SDV_20251231T061207_20251231T0612... | \n", + "[-4.460252, 31.722683, -1.369323, 33.646049] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", + "{'type': 'Polygon', 'coordinates': [[[-1.70885... | \n", + "sentinel-1-grd | \n", + "{'created': '2025-12-31T06:12:00.285895Z', 'ex... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 3 | \n", + "S1A_IW_GRDH_1SDV_20251231T061142_20251231T0612... | \n", + "[-4.168624, 33.229343, -1.009401, 35.147907] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", + "{'type': 'Polygon', 'coordinates': [[[-1.3693,... | \n", + "sentinel-1-grd | \n", + "{'created': '2025-12-31T06:12:01.441023Z', 'ex... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 4 | \n", + "S1A_IW_GRDH_1SDV_20251231T061117_20251231T0611... | \n", + "[-3.860411, 34.733044, -0.639349, 36.648712] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", + "{'type': 'Polygon', 'coordinates': [[[-1.00938... | \n", + "sentinel-1-grd | \n", + "{'created': '2025-12-31T06:11:58.380623Z', 'ex... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 5 | \n", + "S1A_IW_GRDH_1SDV_20251231T061052_20251231T0611... | \n", + "[-3.545959, 36.235367, -0.277303, 38.150902] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", + "{'type': 'Polygon', 'coordinates': [[[-0.63932... | \n", + "sentinel-1-grd | \n", + "{'created': '2025-12-31T06:11:58.937265Z', 'ex... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 6 | \n", + "S1A_IW_GRDH_1SDV_20251231T061027_20251231T0610... | \n", + "[-3.243545, 37.739258, 0.093031, 39.652462] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", + "{'type': 'Polygon', 'coordinates': [[[-0.27728... | \n", + "sentinel-1-grd | \n", + "{'created': '2025-12-31T06:11:47.595395Z', 'ex... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 7 | \n", + "S1A_IW_GRDH_1SDV_20251231T061002_20251231T0610... | \n", + "[-2.937376, 39.242229, 0.463011, 41.154549] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", + "{'type': 'Polygon', 'coordinates': [[[0.093054... | \n", + "sentinel-1-grd | \n", + "{'created': '2025-12-31T06:11:48.024200Z', 'ex... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 8 | \n", + "S1A_IW_GRDH_1SDV_20251231T060937_20251231T0610... | \n", + "[-2.63635, 40.745724, 0.852503, 42.654728] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", + "{'type': 'Polygon', 'coordinates': [[[0.463035... | \n", + "sentinel-1-grd | \n", + "{'created': '2025-12-31T06:12:00.578034Z', 'ex... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "
| 9 | \n", + "S1A_IW_GRDH_1SDV_20251231T060912_20251231T0609... | \n", + "[-2.321066, 42.246735, 1.270123, 44.15239] | \n", + "Feature | \n", + "[{'rel': 'collection', 'type': 'application/js... | \n", + "{'vh': {'href': 's3://eodata/Sentinel-1/SAR/IW... | \n", + "{'type': 'Polygon', 'coordinates': [[[0.852526... | \n", + "sentinel-1-grd | \n", + "{'created': '2025-12-31T06:11:59.740213Z', 'ex... | \n", + "[https://cs-si.github.io/eopf-stac-extension/v... | \n", + "1.1.0 | \n", + "