Selecting input data
When running FORCE level 2 locally, we are responsible to manually provide the necessary input data and reference their full path in the FILE_QUEUE parameter of the FORCE level 2 parameter file.
When running on CDSE, we do not have access to the excuting environment and its filesystem directly. Downloads, file management and creation of the file queue are managed by the integration. To specify which files should be processed, we provide a STAC document (Catalog, Collection, Item or ItemCollection) to the process.
Make sure that the STAC document provided to force_level2 only references the files that should actually be processed. The FORCE integration will attempt to download all products referenced in the document, so it is inadvisable to provide a reference to something like the entire Sentinel-2 L1C collection on CDSE.
STAC
The integrated FORCE and openEO more generally uses the SpatioTemporal Asset Catalog (STAC) specification to identify (groups of) EO products and annotate them with metadata.
If you are unfamiliar with STAC, we recommend that you familiarize yourself with the basic components of the specification (What are catalogs, items and feature collections?) on the official STAC specification website before proceeding.
The CDSE Sentinel-2 L1C STAC collection which we use as input for FORCE level 2 processing, is hosted at https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l1c
In the following, we show how this collection may be queried to to obtain inputs for FORCE level 2 processing.
Querying STAC catalogs/collections
FORCE level 2 can work with any STAC URL or document referencing input products of the correct type (Sentinel-2 L1C). The following describes how to make a query to the CDSE STAC catalog. Be advised to query the CDSE STAC collection of L1C, as data access will be faster than external archives and the integration makes some assumptions about the metadata provided in the STAC items describing the products.
It is recommended to make the query using pystac_client for now, as using the query_stac process limits us to very small data sets See below for more details.
Area of interest
As an example, we selected an area in northern Italy, around the city of Modena.
When defining the temporal extent as shown above, be aware that different methods may interpret time ranges differently. OpenEO’s query_stac behaves just like load_collection: The second instant is excluded from the search.
Contrarily, pystac_client’s search method includes the second date when given as a list. Note that pystac_client’s search has many more options for specifying time ranges.
AOI plot
import matplotlib.pyplot as plt
import contextily as ctx
import geopandas as gpd
from shapely import Polygon
def plot_area_of_interest(
w, s, e, n, *,
context=5,
color="red",
linewidth=2,
title="Spatial Extent",
figsize=(12, 8),
show_tick_labels=True,
):
polygon = Polygon([(w, s), (e, s), (e, n), (w, n)])
gdf = gpd.GeoDataFrame(geometry=[polygon], crs="EPSG:4326")
fig, ax = plt.subplots(1, 1, figsize=figsize)
gdf.plot(edgecolor=color, facecolor="none", linewidth=linewidth, ax=ax)
gdf.plot(edgecolor=color, facecolor="none", linewidth=linewidth, ax=ax)
ax.set_xlim(w - context, e + context)
ax.set_ylim(s - context, n + context)
if not show_tick_labels:
ax.set_xticks([])
ax.set_yticks([])
ctx.add_basemap(ax, source=ctx.providers.OpenTopoMap, crs=gdf.crs)
fig.suptitle(title)
fig.tight_layout()
plot_area_of_interest(
w=w,
s=s,
e=e,
n=n,
context=3,
figsize=(10, 6),
title=f"Spatial Extent: Modena",
show_tick_labels=False
)
Querying a catalog
import openeo
L1C_COLLECTION_URL = "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l1c"
STAC_ROOT_URL = "https://stac.dataspace.copernicus.eu/v1"
connection = openeo.connect("openeo.dataspace.copernicus.eu").authenticate_oidc()
query_pg = openeo.processes.process(
"query_stac",
arguments={
"url": L1C_COLLECTION_URL,
"temporal_extent": temporal_extent,
"spatial_extent": spatial_extent,
}
)Authenticated using refresh token.
Authenticated using refresh token.
We can directly use query_pg as a parameter for FORCE level 2, using openEO’s process chaining. To inspect the query results ahead of time, we may want to execute it ahead of time. If we do not do this, execution of the query will be delayed until we submit the entire process graph (including processing with FORCE).
Found products (18):
S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954
S2C_MSIL1C_20260430T102021_N0512_R065_T32TNQ_20260430T135954
S2A_MSIL1C_20260429T101041_N0512_R022_T32TPQ_20260429T152547
S2A_MSIL1C_20260429T101041_N0512_R022_T32TNQ_20260429T152547
S2C_MSIL1C_20260427T101021_N0512_R022_T32TPQ_20260427T142022
S2C_MSIL1C_20260427T101021_N0512_R022_T32TNQ_20260427T142022
S2B_MSIL1C_20260425T101559_N0512_R065_T32TPQ_20260425T142712
S2B_MSIL1C_20260425T101559_N0512_R065_T32TNQ_20260425T142712
S2A_MSIL1C_20260422T102041_N0512_R065_T32TPQ_20260422T153540
S2A_MSIL1C_20260422T102041_N0512_R065_T32TNQ_20260422T153540
S2B_MSIL1C_20260422T101019_N0512_R022_T32TPQ_20260422T134442
S2B_MSIL1C_20260422T101019_N0512_R022_T32TNQ_20260422T134442
S2C_MSIL1C_20260420T102021_N0512_R065_T32TPQ_20260420T135843
S2C_MSIL1C_20260420T102021_N0512_R065_T32TNQ_20260420T135843
S2A_MSIL1C_20260419T100711_N0512_R022_T32TPQ_20260419T152521
S2A_MSIL1C_20260419T100711_N0512_R022_T32TNQ_20260419T152521
S2C_MSIL1C_20260417T101021_N0512_R022_T32TPQ_20260417T134842
S2C_MSIL1C_20260417T101021_N0512_R022_T32TNQ_20260417T134842
import pystac_client
import time
L1C_COLLECTION_URL = "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l1c"
STAC_ROOT_URL = "https://stac.dataspace.copernicus.eu/v1"
client = pystac_client.Client.open("https://stac.dataspace.copernicus.eu/v1")
search = client.search(
datetime=temporal_extent,
collections=["sentinel-2-l1c"],
bbox=[w, s, e, n]
)
item_collection = search.item_collection()
print("Found items:")
for item in search.items():
time.sleep(1) # CDSE Stac API has a rate limit of 5 requests per second
print(item.id)Found items:
S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954
S2C_MSIL1C_20260430T102021_N0512_R065_T32TNQ_20260430T135954
S2A_MSIL1C_20260429T101041_N0512_R022_T32TPQ_20260429T152547
S2A_MSIL1C_20260429T101041_N0512_R022_T32TNQ_20260429T152547
S2C_MSIL1C_20260427T101021_N0512_R022_T32TPQ_20260427T142022
S2C_MSIL1C_20260427T101021_N0512_R022_T32TNQ_20260427T142022
S2B_MSIL1C_20260425T101559_N0512_R065_T32TPQ_20260425T142712
S2B_MSIL1C_20260425T101559_N0512_R065_T32TNQ_20260425T142712
S2A_MSIL1C_20260422T102041_N0512_R065_T32TPQ_20260422T153540
S2A_MSIL1C_20260422T102041_N0512_R065_T32TNQ_20260422T153540
S2B_MSIL1C_20260422T101019_N0512_R022_T32TPQ_20260422T134442
S2B_MSIL1C_20260422T101019_N0512_R022_T32TNQ_20260422T134442
S2C_MSIL1C_20260420T102021_N0512_R065_T32TPQ_20260420T135843
S2C_MSIL1C_20260420T102021_N0512_R065_T32TNQ_20260420T135843
S2A_MSIL1C_20260419T100711_N0512_R022_T32TPQ_20260419T152521
S2A_MSIL1C_20260419T100711_N0512_R022_T32TNQ_20260419T152521
S2C_MSIL1C_20260417T101021_N0512_R022_T32TPQ_20260417T134842
S2C_MSIL1C_20260417T101021_N0512_R022_T32TNQ_20260417T134842
Inspecting query results
We may use pystac to inspect or process the feature collection further. In this example, we inspect the first of the returned items:
- type "Feature"
- stac_version "1.1.0"
stac_extensions[] 14 items
- 0 "https://cs-si.github.io/eopf-stac-extension/v1.2.0/schema.json"
- 1 "https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json"
- 2 "https://stac-extensions.github.io/authentication/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/eo/v2.0.0/schema.json"
- 4 "https://stac-extensions.github.io/file/v2.1.0/schema.json"
- 5 "https://stac-extensions.github.io/grid/v1.1.0/schema.json"
- 6 "https://stac-extensions.github.io/processing/v1.2.0/schema.json"
- 7 "https://stac-extensions.github.io/product/v1.0.0/schema.json"
- 8 "https://stac-extensions.github.io/projection/v2.0.0/schema.json"
- 9 "https://stac-extensions.github.io/raster/v2.0.0/schema.json"
- 10 "https://stac-extensions.github.io/sat/v1.1.0/schema.json"
- 11 "https://stac-extensions.github.io/storage/v2.0.0/schema.json"
- 12 "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json"
- 13 "https://stac-extensions.github.io/view/v1.1.0/schema.json"
- id "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954"
geometry
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 11.005761826691352
- 1 45.13409237582066
1[] 2 items
- 0 10.272040967768442
- 1 45.14675285555784
2[] 2 items
- 0 10.250616924801538
- 1 44.158520786393645
3[] 2 items
- 0 10.604672367076695
- 1 44.15251630712391
4[] 2 items
- 0 11.005761826691352
- 1 45.13409237582066
- type "Polygon"
bbox[] 4 items
- 0 10.250616924801538
- 1 44.15251630712391
- 2 11.005761826691352
- 3 45.14675285555784
properties
_private
- product_name "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE"
- product_size 354391366
- product_uuid "fe107220-8c38-47f7-b113-b0579b38a01f"
- visible True
auth:schemes
oidc
- openIdConnectUrl "https://identity.dataspace.copernicus.eu/auth/realms/CDSE/.well-known/openid-configuration"
- type "openIdConnect"
s3
- type "s3"
- constellation "sentinel-2"
- created "2026-04-30T15:48:16.000000Z"
- datetime "2026-04-30T10:20:21.025000Z"
- end_datetime "2026-04-30T10:20:21.025000Z"
- eo:cloud_cover 38.68
- eopf:datastrip_id "S2C_OPER_MSI_L1C_DS_2CPS_20260430T135954_S20260430T102022_N05.12"
- eopf:datatake_id "GS2C_20260430T102021_008615_N05.12"
- eopf:instrument_mode "INS-NOBS"
- eopf:origin_datetime "2026-04-30T15:48:16.000000Z"
- expires "2262-01-01T00:00:00.000000Z"
- grid:code "MGRS-32TPQ"
- gsd 10
instruments[] 1 items
- 0 "msi"
- platform "sentinel-2c"
- processing:datetime "2026-04-30T13:59:54.000000Z"
- processing:facility "ESA"
- processing:level "L1"
processing:software
- eometadatatool "260327122600+dirty"
- processing:version "05.12"
- product:timeliness "PT24H"
- product:timeliness_category "NRT"
- product:type "S2MSI1C"
- published "2026-04-30T15:52:03.637118Z"
- sat:absolute_orbit 8615
- sat:orbit_state "descending"
- sat:platform_international_designator "2024-157A"
- sat:relative_orbit 65
- start_datetime "2026-04-30T10:20:21.025000Z"
storage:schemes
cdse-s3
- class "hot"
- description "This endpoint provides access to EO data which is stored on the object storage of both CloudFerro Cloud and OpenTelekom Cloud (OTC). See the [documentation](https://documentation.dataspace.copernicus.eu/APIs/S3.html) for more information, including how to get credentials."
- platform "https://eodata.dataspace.copernicus.eu"
- requester_pays False
- title "Copernicus Data Space Ecosystem S3"
- type "custom-s3"
creodias-s3
- class "hot"
- description "Comprehensive Earth Observation Data (EODATA) archive offered by CREODIAS as a commercial part of CDSE, designed to provide users with access to a vast repository of satellite data without predefined quota limits."
- platform "https://eodata.cloudferro.com"
- requester_pays True
- title "CREODIAS S3"
- type "custom-s3"
- updated "2026-04-30T15:52:32.602853Z"
- view:azimuth 287.7884967596872
- view:incidence_angle 10.018228136084666
- view:sun_azimuth 158.736488455173
- view:sun_elevation 58.7154994885162
links[] 6 items
0
- rel "collection"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l1c"
- type "application/json"
1
- rel "parent"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l1c"
- type "application/json"
2
- rel "root"
- href "https://stac.dataspace.copernicus.eu/v1/"
- type "application/json"
3
- rel "self"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l1c/items/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954"
- type "application/geo+json"
4
- rel "enclosure"
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/"
- type "application/x-directory"
- title "S3 path to source directory"
5
- rel "version-history"
- href "https://trace.dataspace.copernicus.eu/api/v1/traces/name/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE.zip"
- type "application/json"
- title "Product history record from the CDSE traceability service"
assets
B01
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B01.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 60m"
alternate
https
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "oidc"
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(GRANULE)/Nodes(L1C_T32TPQ_A008615_20260430T102022)/Nodes(IMG_DATA)/Nodes(T32TPQ_20260430T102021_B01.jp2)/$value"
storage:refs[] 0 items
- alternate:name "S3"
auth:refs[] 1 items
- 0 "s3"
bands[] 1 items
0
- description "Coastal aerosol (band 1)"
- eo:center_wavelength 0.443
- eo:common_name "coastal"
- eo:full_width_half_max 0.228
- name "B01"
- data_type "uint16"
- file:checksum "1620f083163349337c42d71c7a1435b48e831b8a271daa38ad8755dd8126fbddd3b1"
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B01.jp2"
- file:size 1831037
- gsd 60
- nodata 0
proj:bbox[] 4 items
- 0 600000
- 1 4890240
- 2 709800
- 3 5000040
- proj:code "EPSG:32632"
proj:shape[] 2 items
- 0 1830
- 1 1830
proj:transform[] 6 items
- 0 60
- 1 0
- 2 600000
- 3 0
- 4 -60
- 5 5000040
- raster:offset -0.1
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- view:azimuth 288.225172000392
- view:incidence_angle 10.0976061100774
roles[] 2 items
- 0 "data"
- 1 "reflectance"
B02
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B02.jp2"
- type "image/jp2"
- title "Blue (band 2) - 10m"
alternate
https
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "oidc"
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(GRANULE)/Nodes(L1C_T32TPQ_A008615_20260430T102022)/Nodes(IMG_DATA)/Nodes(T32TPQ_20260430T102021_B02.jp2)/$value"
storage:refs[] 0 items
- alternate:name "S3"
auth:refs[] 1 items
- 0 "s3"
bands[] 1 items
0
- description "Blue (band 2)"
- eo:center_wavelength 0.493
- eo:common_name "blue"
- eo:full_width_half_max 0.267
- name "B02"
- data_type "uint16"
- file:checksum "1620185cfc00193b4849fb1afa6a92bd9fa06dbe9af044cb25dc6ee18d720b392ade"
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B02.jp2"
- file:size 45171741
- gsd 10
- nodata 0
proj:bbox[] 4 items
- 0 600000
- 1 4890240
- 2 709800
- 3 5000040
- proj:code "EPSG:32632"
proj:shape[] 2 items
- 0 10980
- 1 10980
proj:transform[] 6 items
- 0 10
- 1 0
- 2 600000
- 3 0
- 4 -10
- 5 5000040
- raster:offset -0.1
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- view:azimuth 287.078668831189
- view:incidence_angle 9.93100316349881
roles[] 2 items
- 0 "data"
- 1 "reflectance"
B03
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B03.jp2"
- type "image/jp2"
- title "Green (band 3) - 10m"
alternate
https
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "oidc"
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(GRANULE)/Nodes(L1C_T32TPQ_A008615_20260430T102022)/Nodes(IMG_DATA)/Nodes(T32TPQ_20260430T102021_B03.jp2)/$value"
storage:refs[] 0 items
- alternate:name "S3"
auth:refs[] 1 items
- 0 "s3"
bands[] 1 items
0
- description "Green (band 3)"
- eo:center_wavelength 0.56
- eo:common_name "green"
- eo:full_width_half_max 0.291
- name "B03"
- data_type "uint16"
- file:checksum "1620278f79fe3c95f06393392e1690f0b63b283c0f508ffd31ccca2e1b8fcfdfc71b"
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B03.jp2"
- file:size 46078198
- gsd 10
- nodata 0
proj:bbox[] 4 items
- 0 600000
- 1 4890240
- 2 709800
- 3 5000040
- proj:code "EPSG:32632"
proj:shape[] 2 items
- 0 10980
- 1 10980
proj:transform[] 6 items
- 0 10
- 1 0
- 2 600000
- 3 0
- 4 -10
- 5 5000040
- raster:offset -0.1
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- view:azimuth 287.339478914011
- view:incidence_angle 9.95216913173886
roles[] 2 items
- 0 "data"
- 1 "reflectance"
B04
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B04.jp2"
- type "image/jp2"
- title "Red (band 4) - 10m"
alternate
https
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "oidc"
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(GRANULE)/Nodes(L1C_T32TPQ_A008615_20260430T102022)/Nodes(IMG_DATA)/Nodes(T32TPQ_20260430T102021_B04.jp2)/$value"
storage:refs[] 0 items
- alternate:name "S3"
auth:refs[] 1 items
- 0 "s3"
bands[] 1 items
0
- description "Red (band 4)"
- eo:center_wavelength 0.665
- eo:common_name "red"
- eo:full_width_half_max 0.342
- name "B04"
- data_type "uint16"
- file:checksum "1620e100040c49e44259bd1c5335e0a5f6122741b9501ec9bba46f7c1068ec10be22"
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B04.jp2"
- file:size 47071995
- gsd 10
- nodata 0
proj:bbox[] 4 items
- 0 600000
- 1 4890240
- 2 709800
- 3 5000040
- proj:code "EPSG:32632"
proj:shape[] 2 items
- 0 10980
- 1 10980
proj:transform[] 6 items
- 0 10
- 1 0
- 2 600000
- 3 0
- 4 -10
- 5 5000040
- raster:offset -0.1
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- view:azimuth 287.614607704949
- view:incidence_angle 9.97968541624578
roles[] 2 items
- 0 "data"
- 1 "reflectance"
B05
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B05.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 20m"
alternate
https
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "oidc"
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(GRANULE)/Nodes(L1C_T32TPQ_A008615_20260430T102022)/Nodes(IMG_DATA)/Nodes(T32TPQ_20260430T102021_B05.jp2)/$value"
storage:refs[] 0 items
- alternate:name "S3"
auth:refs[] 1 items
- 0 "s3"
bands[] 1 items
0
- description "Red edge 1 (band 5)"
- eo:center_wavelength 0.704
- eo:common_name "rededge071"
- eo:full_width_half_max 0.357
- name "B05"
- data_type "uint16"
- file:checksum "1620854633e05ccd3deb8ffe361556fe2b678feb2cfcd02c552accca0c7dd3e600c2"
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B05.jp2"
- file:size 14132761
- gsd 20
- nodata 0
proj:bbox[] 4 items
- 0 600000
- 1 4890240
- 2 709800
- 3 5000040
- proj:code "EPSG:32632"
proj:shape[] 2 items
- 0 5490
- 1 5490
proj:transform[] 6 items
- 0 20
- 1 0
- 2 600000
- 3 0
- 4 -20
- 5 5000040
- raster:offset -0.1
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- view:azimuth 287.716927255004
- view:incidence_angle 9.99831284011978
roles[] 2 items
- 0 "data"
- 1 "reflectance"
B06
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B06.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 20m"
alternate
https
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "oidc"
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(GRANULE)/Nodes(L1C_T32TPQ_A008615_20260430T102022)/Nodes(IMG_DATA)/Nodes(T32TPQ_20260430T102021_B06.jp2)/$value"
storage:refs[] 0 items
- alternate:name "S3"
auth:refs[] 1 items
- 0 "s3"
bands[] 1 items
0
- description "Red edge 2 (band 6)"
- eo:center_wavelength 0.741
- eo:common_name "rededge075"
- eo:full_width_half_max 0.374
- name "B06"
- data_type "uint16"
- file:checksum "162091e3cb29ee20af59a39b12a6290d1f7d6b6bc83cd300f33b9fa50ca93b6833c1"
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B06.jp2"
- file:size 14698365
- gsd 20
- nodata 0
proj:bbox[] 4 items
- 0 600000
- 1 4890240
- 2 709800
- 3 5000040
- proj:code "EPSG:32632"
proj:shape[] 2 items
- 0 5490
- 1 5490
proj:transform[] 6 items
- 0 20
- 1 0
- 2 600000
- 3 0
- 4 -20
- 5 5000040
- raster:offset -0.1
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- view:azimuth 287.885088612677
- view:incidence_angle 10.0261886269243
roles[] 2 items
- 0 "data"
- 1 "reflectance"
B07
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B07.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 20m"
alternate
https
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "oidc"
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(GRANULE)/Nodes(L1C_T32TPQ_A008615_20260430T102022)/Nodes(IMG_DATA)/Nodes(T32TPQ_20260430T102021_B07.jp2)/$value"
storage:refs[] 0 items
- alternate:name "S3"
auth:refs[] 1 items
- 0 "s3"
bands[] 1 items
0
- description "Red edge 3 (band 7)"
- eo:center_wavelength 0.783
- eo:common_name "rededge078"
- eo:full_width_half_max 0.399
- name "B07"
- data_type "uint16"
- file:checksum "16208453af0658e670771d53d16c78d0cb992aac3151b157fb73c7fac0994cbc94fa"
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B07.jp2"
- file:size 15027909
- gsd 20
- nodata 0
proj:bbox[] 4 items
- 0 600000
- 1 4890240
- 2 709800
- 3 5000040
- proj:code "EPSG:32632"
proj:shape[] 2 items
- 0 5490
- 1 5490
proj:transform[] 6 items
- 0 20
- 1 0
- 2 600000
- 3 0
- 4 -20
- 5 5000040
- raster:offset -0.1
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- view:azimuth 287.984047427561
- view:incidence_angle 10.0488414169507
roles[] 2 items
- 0 "data"
- 1 "reflectance"
B08
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B08.jp2"
- type "image/jp2"
- title "NIR 1 (band 8) - 10m"
alternate
https
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "oidc"
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(GRANULE)/Nodes(L1C_T32TPQ_A008615_20260430T102022)/Nodes(IMG_DATA)/Nodes(T32TPQ_20260430T102021_B08.jp2)/$value"
storage:refs[] 0 items
- alternate:name "S3"
auth:refs[] 1 items
- 0 "s3"
bands[] 1 items
0
- description "NIR 1 (band 8)"
- eo:center_wavelength 0.833
- eo:common_name "nir"
- eo:full_width_half_max 0.454
- name "B08"
- data_type "uint16"
- file:checksum "1620b2939ddbbd2551a8dfe011c4ef69b152403101a7e70a4bd7081a6c0809cd4ed8"
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B08.jp2"
- file:size 51466531
- gsd 10
- nodata 0
proj:bbox[] 4 items
- 0 600000
- 1 4890240
- 2 709800
- 3 5000040
- proj:code "EPSG:32632"
proj:shape[] 2 items
- 0 10980
- 1 10980
proj:transform[] 6 items
- 0 10
- 1 0
- 2 600000
- 3 0
- 4 -10
- 5 5000040
- raster:offset -0.1
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- view:azimuth 287.208015441448
- view:incidence_angle 9.94056245890689
roles[] 2 items
- 0 "data"
- 1 "reflectance"
B09
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B09.jp2"
- type "image/jp2"
- title "NIR 3 (band 9) - 60m"
alternate
https
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "oidc"
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(GRANULE)/Nodes(L1C_T32TPQ_A008615_20260430T102022)/Nodes(IMG_DATA)/Nodes(T32TPQ_20260430T102021_B09.jp2)/$value"
storage:refs[] 0 items
- alternate:name "S3"
auth:refs[] 1 items
- 0 "s3"
bands[] 1 items
0
- description "NIR 3 (band 9)"
- eo:center_wavelength 0.945
- eo:common_name "nir09"
- eo:full_width_half_max 0.479
- name "B09"
- data_type "uint16"
- file:checksum "16204804470c1e62439e63ef4dde72aed6ade840eabbe684d78b223508205c49dab4"
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B09.jp2"
- file:size 1854379
- gsd 60
- nodata 0
proj:bbox[] 4 items
- 0 600000
- 1 4890240
- 2 709800
- 3 5000040
- proj:code "EPSG:32632"
proj:shape[] 2 items
- 0 1830
- 1 1830
proj:transform[] 6 items
- 0 60
- 1 0
- 2 600000
- 3 0
- 4 -60
- 5 5000040
- raster:offset -0.1
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- view:azimuth 288.361885463141
- view:incidence_angle 10.1255615917795
roles[] 2 items
- 0 "data"
- 1 "reflectance"
B10
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B10.jp2"
- type "image/jp2"
- title "Cirrus (band 10) - 60m"
alternate
https
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "oidc"
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(GRANULE)/Nodes(L1C_T32TPQ_A008615_20260430T102022)/Nodes(IMG_DATA)/Nodes(T32TPQ_20260430T102021_B10.jp2)/$value"
storage:refs[] 0 items
- alternate:name "S3"
auth:refs[] 1 items
- 0 "s3"
bands[] 1 items
0
- description "Cirrus (band 10)"
- eo:center_wavelength 1.377
- eo:common_name "cirrus"
- eo:full_width_half_max 0.706
- name "B10"
- data_type "uint16"
- file:checksum "162041648609abe8863d468ec3578983c782bd9907b33d4fdce15b73ee330d33ba7b"
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B10.jp2"
- file:size 845088
- gsd 60
- nodata 0
proj:bbox[] 4 items
- 0 600000
- 1 4890240
- 2 709800
- 3 5000040
- proj:code "EPSG:32632"
proj:shape[] 2 items
- 0 1830
- 1 1830
proj:transform[] 6 items
- 0 60
- 1 0
- 2 600000
- 3 0
- 4 -60
- 5 5000040
- raster:offset -0.1
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- view:azimuth 287.593921885723
- view:incidence_angle 9.97148143914702
roles[] 2 items
- 0 "data"
- 1 "reflectance"
B11
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B11.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 20m"
alternate
https
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "oidc"
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(GRANULE)/Nodes(L1C_T32TPQ_A008615_20260430T102022)/Nodes(IMG_DATA)/Nodes(T32TPQ_20260430T102021_B11.jp2)/$value"
storage:refs[] 0 items
- alternate:name "S3"
auth:refs[] 1 items
- 0 "s3"
bands[] 1 items
0
- description "SWIR 1 (band 11)"
- eo:center_wavelength 1.614
- eo:common_name "swir16"
- eo:full_width_half_max 0.841
- name "B11"
- data_type "uint16"
- file:checksum "162041b602a7d492970e90a651e069631f2952ca0702c8429fed5947b95a7ca2fb64"
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B11.jp2"
- file:size 14311256
- gsd 20
- nodata 0
proj:bbox[] 4 items
- 0 600000
- 1 4890240
- 2 709800
- 3 5000040
- proj:code "EPSG:32632"
proj:shape[] 2 items
- 0 5490
- 1 5490
proj:transform[] 6 items
- 0 20
- 1 0
- 2 600000
- 3 0
- 4 -20
- 5 5000040
- raster:offset -0.1
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- view:azimuth 287.900449437928
- view:incidence_angle 10.0150550860024
roles[] 2 items
- 0 "data"
- 1 "reflectance"
B12
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B12.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 20m"
alternate
https
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "oidc"
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(GRANULE)/Nodes(L1C_T32TPQ_A008615_20260430T102022)/Nodes(IMG_DATA)/Nodes(T32TPQ_20260430T102021_B12.jp2)/$value"
storage:refs[] 0 items
- alternate:name "S3"
auth:refs[] 1 items
- 0 "s3"
bands[] 1 items
0
- description "SWIR 2 (band 12)"
- eo:center_wavelength 2.202
- eo:common_name "swir22"
- eo:full_width_half_max 1.16
- name "B12"
- data_type "uint16"
- file:checksum "1620c04b879deb710dc32889e8f5cdb8617c644d3b198fd22de399dde7475d83cdc2"
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B12.jp2"
- file:size 14009967
- gsd 20
- nodata 0
proj:bbox[] 4 items
- 0 600000
- 1 4890240
- 2 709800
- 3 5000040
- proj:code "EPSG:32632"
proj:shape[] 2 items
- 0 5490
- 1 5490
proj:transform[] 6 items
- 0 20
- 1 0
- 2 600000
- 3 0
- 4 -20
- 5 5000040
- raster:offset -0.1
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- view:azimuth 288.217151612201
- view:incidence_angle 10.078247924646
roles[] 2 items
- 0 "data"
- 1 "reflectance"
B8A
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B8A.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 20m"
alternate
https
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "oidc"
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(GRANULE)/Nodes(L1C_T32TPQ_A008615_20260430T102022)/Nodes(IMG_DATA)/Nodes(T32TPQ_20260430T102021_B8A.jp2)/$value"
storage:refs[] 0 items
- alternate:name "S3"
auth:refs[] 1 items
- 0 "s3"
bands[] 1 items
0
- description "NIR 2 (band 8A)"
- eo:center_wavelength 0.865
- eo:common_name "nir08"
- eo:full_width_half_max 0.441
- name "B8A"
- data_type "uint16"
- file:checksum "16201b4c56663fec2e3df57a2ba671cf6cf539c1211b33c6a24119895a476e226a0e"
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B8A.jp2"
- file:size 15103596
- gsd 20
- nodata 0
proj:bbox[] 4 items
- 0 600000
- 1 4890240
- 2 709800
- 3 5000040
- proj:code "EPSG:32632"
proj:shape[] 2 items
- 0 5490
- 1 5490
proj:transform[] 6 items
- 0 20
- 1 0
- 2 600000
- 3 0
- 4 -20
- 5 5000040
- raster:offset -0.1
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- view:azimuth 288.125043289709
- view:incidence_angle 10.0722505630632
roles[] 2 items
- 0 "data"
- 1 "reflectance"
Product
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/$value"
- type "application/zip"
- title "Zipped product"
auth:refs[] 1 items
- 0 "oidc"
- file:checksum "d50110be9fa54bf271e9eec4a8a09d83cc3b3e"
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE.zip"
- file:size 354414738
roles[] 3 items
- 0 "data"
- 1 "metadata"
- 2 "archive"
TCI
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_TCI.jp2"
- type "image/jp2"
- title "True color image"
alternate
https
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "oidc"
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(GRANULE)/Nodes(L1C_T32TPQ_A008615_20260430T102022)/Nodes(IMG_DATA)/Nodes(T32TPQ_20260430T102021_TCI.jp2)/$value"
storage:refs[] 0 items
- alternate:name "S3"
auth:refs[] 1 items
- 0 "s3"
bands[] 3 items
0
- description "Red (band 4)"
- eo:center_wavelength 0.665
- eo:common_name "red"
- eo:full_width_half_max 0.342
- name "B04"
1
- description "Green (band 3)"
- eo:center_wavelength 0.56
- eo:common_name "green"
- eo:full_width_half_max 0.291
- name "B03"
2
- description "Blue (band 2)"
- eo:center_wavelength 0.493
- eo:common_name "blue"
- eo:full_width_half_max 0.267
- name "B02"
- data_type "uint8"
- file:checksum "16207625c56c9f86114f355e91d96bb27359e013d61bac9f8102d6116f87bb1f070c"
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_TCI.jp2"
- file:size 51673291
- gsd 10
- nodata 0
proj:bbox[] 4 items
- 0 600000
- 1 4890240
- 2 709800
- 3 5000040
- proj:code "EPSG:32632"
proj:shape[] 2 items
- 0 10980
- 1 10980
proj:transform[] 6 items
- 0 10
- 1 0
- 2 600000
- 3 0
- 4 -10
- 5 5000040
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
roles[] 1 items
- 0 "visual"
datastrip_metadata
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/DATASTRIP/DS_2CPS_20260430T135954_S20260430T102022/MTD_DS.xml"
- type "application/xml"
- title "MTD_DS.xml"
alternate
https
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "oidc"
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(DATASTRIP)/Nodes(DS_2CPS_20260430T135954_S20260430T102022)/Nodes(MTD_DS.xml)/$value"
storage:refs[] 0 items
- alternate:name "S3"
auth:refs[] 1 items
- 0 "s3"
- file:checksum "d501208a4e91869f51b7a94fb654f8322e30a9abf55afee26ff76f72c3d38f2ca418ad"
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/DATASTRIP/DS_2CPS_20260430T135954_S20260430T102022/MTD_DS.xml"
- file:size 19335010
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
roles[] 1 items
- 0 "metadata"
granule_metadata
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/MTD_TL.xml"
- type "application/xml"
- title "MTD_TL.xml"
alternate
https
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "oidc"
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(GRANULE)/Nodes(L1C_T32TPQ_A008615_20260430T102022)/Nodes(MTD_TL.xml)/$value"
storage:refs[] 0 items
- alternate:name "S3"
auth:refs[] 1 items
- 0 "s3"
- file:checksum "d5012094c1f4d04467711cda8bac1b43365531540314e0df0e6dd3468600de04fd84ad"
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/MTD_TL.xml"
- file:size 276504
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
roles[] 1 items
- 0 "metadata"
inspire_metadata
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/INSPIRE.xml"
- type "application/xml"
- title "INSPIRE.xml"
alternate
https
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "oidc"
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(INSPIRE.xml)/$value"
storage:refs[] 0 items
- alternate:name "S3"
auth:refs[] 1 items
- 0 "s3"
- file:checksum "d50120fa6fd3c8fbffdd70a9b545cd4c6b0004395082cb0c201e829c17a24b4c25047d"
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/INSPIRE.xml"
- file:size 18945
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
roles[] 1 items
- 0 "metadata"
product_metadata
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/MTD_MSIL1C.xml"
- type "application/xml"
- title "MTD_MSIL1C.xml"
alternate
https
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "oidc"
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(MTD_MSIL1C.xml)/$value"
storage:refs[] 0 items
- alternate:name "S3"
auth:refs[] 1 items
- 0 "s3"
- file:checksum "d50120362d1129df0c0eb344f4912a4dcba6e807ff6c7a5424a764ba5019d7600484a2"
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/MTD_MSIL1C.xml"
- file:size 49718
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
roles[] 1 items
- 0 "metadata"
safe_manifest
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/manifest.safe"
- type "application/xml"
- title "manifest.safe"
alternate
https
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "oidc"
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(manifest.safe)/$value"
storage:refs[] 0 items
- alternate:name "S3"
auth:refs[] 1 items
- 0 "s3"
- file:checksum "d501105c66ec25b6e3561f00888c4655979209"
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/manifest.safe"
- file:size 48980
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
roles[] 1 items
- 0 "metadata"
thumbnail
- href "https://datahub.creodias.eu/odata/v1/Assets(b276045b-c82e-4194-831d-f0b111bf9e00)/$value"
- type "image/jpeg"
- title "Quicklook"
alternate
s3
- alternate:name "S3"
auth:refs[] 1 items
- 0 "s3"
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954-ql.jpg"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "HTTPS"
- data_type "uint8"
- file:checksum "d501102c916828d301c69a35ba111f305a463a"
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954-ql.jpg"
- file:size 16407
- proj:code None
proj:shape[] 2 items
- 0 343
- 1 343
roles[] 2 items
- 0 "thumbnail"
- 1 "overview"
- collection "sentinel-2-l1c"
- type "Feature"
- stac_version "1.1.0"
stac_extensions[] 14 items
- 0 "https://cs-si.github.io/eopf-stac-extension/v1.2.0/schema.json"
- 1 "https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json"
- 2 "https://stac-extensions.github.io/authentication/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/eo/v2.0.0/schema.json"
- 4 "https://stac-extensions.github.io/file/v2.1.0/schema.json"
- 5 "https://stac-extensions.github.io/grid/v1.1.0/schema.json"
- 6 "https://stac-extensions.github.io/processing/v1.2.0/schema.json"
- 7 "https://stac-extensions.github.io/product/v1.0.0/schema.json"
- 8 "https://stac-extensions.github.io/projection/v2.0.0/schema.json"
- 9 "https://stac-extensions.github.io/raster/v2.0.0/schema.json"
- 10 "https://stac-extensions.github.io/sat/v1.1.0/schema.json"
- 11 "https://stac-extensions.github.io/storage/v2.0.0/schema.json"
- 12 "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json"
- 13 "https://stac-extensions.github.io/view/v1.1.0/schema.json"
- id "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 11.005761826691352
- 1 45.13409237582066
1[] 2 items
- 0 10.272040967768442
- 1 45.14675285555784
2[] 2 items
- 0 10.250616924801538
- 1 44.158520786393645
3[] 2 items
- 0 10.604672367076695
- 1 44.15251630712391
4[] 2 items
- 0 11.005761826691352
- 1 45.13409237582066
bbox[] 4 items
- 0 10.250616924801538
- 1 44.15251630712391
- 2 11.005761826691352
- 3 45.14675285555784
properties
- gsd 10
- created "2026-04-30T15:48:16.000000Z"
- expires "2262-01-01T00:00:00.000000Z"
- updated "2026-04-30T15:52:32.602853Z"
_private
- visible True
- product_name "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE"
- product_size 354391366
- product_uuid "fe107220-8c38-47f7-b113-b0579b38a01f"
- datetime "2026-04-30T10:20:21.025000Z"
- platform "sentinel-2c"
- grid:code "MGRS-32TPQ"
- published "2026-04-30T15:52:03.637118Z"
instruments[] 1 items
- 0 "msi"
auth:schemes
s3
- type "s3"
oidc
- type "openIdConnect"
- openIdConnectUrl "https://identity.dataspace.copernicus.eu/auth/realms/CDSE/.well-known/openid-configuration"
- end_datetime "2026-04-30T10:20:21.025000Z"
- product:type "S2MSI1C"
- view:azimuth 287.7884967596872
- constellation "sentinel-2"
- eo:cloud_cover 38.68
- start_datetime "2026-04-30T10:20:21.025000Z"
- sat:orbit_state "descending"
storage:schemes
cdse-s3
- type "custom-s3"
- class "hot"
- title "Copernicus Data Space Ecosystem S3"
- platform "https://eodata.dataspace.copernicus.eu"
- description "This endpoint provides access to EO data which is stored on the object storage of both CloudFerro Cloud and OpenTelekom Cloud (OTC). See the [documentation](https://documentation.dataspace.copernicus.eu/APIs/S3.html) for more information, including how to get credentials."
- requester_pays False
creodias-s3
- type "custom-s3"
- class "hot"
- title "CREODIAS S3"
- platform "https://eodata.cloudferro.com"
- description "Comprehensive Earth Observation Data (EODATA) archive offered by CREODIAS as a commercial part of CDSE, designed to provide users with access to a vast repository of satellite data without predefined quota limits."
- requester_pays True
- eopf:datatake_id "GS2C_20260430T102021_008615_N05.12"
- processing:level "L1"
- view:sun_azimuth 158.736488455173
- eopf:datastrip_id "S2C_OPER_MSI_L1C_DS_2CPS_20260430T135954_S20260430T102022_N05.12"
- processing:version "05.12"
- product:timeliness "PT24H"
- sat:absolute_orbit 8615
- sat:relative_orbit 65
- view:sun_elevation 58.7154994885162
- processing:datetime "2026-04-30T13:59:54.000000Z"
- processing:facility "ESA"
processing:software
- eometadatatool "260327122600+dirty"
- eopf:instrument_mode "INS-NOBS"
- eopf:origin_datetime "2026-04-30T15:48:16.000000Z"
- view:incidence_angle 10.018228136084666
- product:timeliness_category "NRT"
- sat:platform_international_designator "2024-157A"
links[] 6 items
0
- rel "collection"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l1c"
- type "application/json"
1
- rel "parent"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l1c"
- type "application/json"
2
- rel "root"
- href "https://stac.dataspace.copernicus.eu/v1"
- type "application/json"
- title "Copernicus Data Space Ecosystem (CDSE) asset-level STAC catalogue"
3
- rel "self"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l1c/items/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954"
- type "application/geo+json"
4
- rel "enclosure"
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/"
- type "application/x-directory"
- title "S3 path to source directory"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
5
- rel "version-history"
- href "https://trace.dataspace.copernicus.eu/api/v1/traces/name/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE.zip"
- type "application/json"
- title "Product history record from the CDSE traceability service"
assets
B01
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B01.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 60m"
bands[] 1 items
0
- name "B01"
- description "Coastal aerosol (band 1)"
- eo:common_name "coastal"
- eo:center_wavelength 0.443
- eo:full_width_half_max 0.228
alternate
https
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(GRANULE)/Nodes(L1C_T32TPQ_A008615_20260430T102022)/Nodes(IMG_DATA)/Nodes(T32TPQ_20260430T102021_B01.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "s3"
- file:size 1831037
proj:bbox[] 4 items
- 0 600000
- 1 4890240
- 2 709800
- 3 5000040
- proj:code "EPSG:32632"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- view:azimuth 288.225172000392
- file:checksum "1620f083163349337c42d71c7a1435b48e831b8a271daa38ad8755dd8126fbddd3b1"
proj:transform[] 6 items
- 0 60
- 1 0
- 2 600000
- 3 0
- 4 -60
- 5 5000040
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B01.jp2"
- view:incidence_angle 10.0976061100774
- gsd 60
- nodata 0
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "reflectance"
B02
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B02.jp2"
- type "image/jp2"
- title "Blue (band 2) - 10m"
bands[] 1 items
0
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
alternate
https
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(GRANULE)/Nodes(L1C_T32TPQ_A008615_20260430T102022)/Nodes(IMG_DATA)/Nodes(T32TPQ_20260430T102021_B02.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "s3"
- file:size 45171741
proj:bbox[] 4 items
- 0 600000
- 1 4890240
- 2 709800
- 3 5000040
- proj:code "EPSG:32632"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- view:azimuth 287.078668831189
- file:checksum "1620185cfc00193b4849fb1afa6a92bd9fa06dbe9af044cb25dc6ee18d720b392ade"
proj:transform[] 6 items
- 0 10
- 1 0
- 2 600000
- 3 0
- 4 -10
- 5 5000040
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B02.jp2"
- view:incidence_angle 9.93100316349881
- gsd 10
- nodata 0
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "reflectance"
B03
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B03.jp2"
- type "image/jp2"
- title "Green (band 3) - 10m"
bands[] 1 items
0
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
alternate
https
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(GRANULE)/Nodes(L1C_T32TPQ_A008615_20260430T102022)/Nodes(IMG_DATA)/Nodes(T32TPQ_20260430T102021_B03.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "s3"
- file:size 46078198
proj:bbox[] 4 items
- 0 600000
- 1 4890240
- 2 709800
- 3 5000040
- proj:code "EPSG:32632"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- view:azimuth 287.339478914011
- file:checksum "1620278f79fe3c95f06393392e1690f0b63b283c0f508ffd31ccca2e1b8fcfdfc71b"
proj:transform[] 6 items
- 0 10
- 1 0
- 2 600000
- 3 0
- 4 -10
- 5 5000040
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B03.jp2"
- view:incidence_angle 9.95216913173886
- gsd 10
- nodata 0
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "reflectance"
B04
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B04.jp2"
- type "image/jp2"
- title "Red (band 4) - 10m"
bands[] 1 items
0
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
alternate
https
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(GRANULE)/Nodes(L1C_T32TPQ_A008615_20260430T102022)/Nodes(IMG_DATA)/Nodes(T32TPQ_20260430T102021_B04.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "s3"
- file:size 47071995
proj:bbox[] 4 items
- 0 600000
- 1 4890240
- 2 709800
- 3 5000040
- proj:code "EPSG:32632"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- view:azimuth 287.614607704949
- file:checksum "1620e100040c49e44259bd1c5335e0a5f6122741b9501ec9bba46f7c1068ec10be22"
proj:transform[] 6 items
- 0 10
- 1 0
- 2 600000
- 3 0
- 4 -10
- 5 5000040
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B04.jp2"
- view:incidence_angle 9.97968541624578
- gsd 10
- nodata 0
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "reflectance"
B05
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B05.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 20m"
bands[] 1 items
0
- name "B05"
- description "Red edge 1 (band 5)"
- eo:common_name "rededge071"
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
alternate
https
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(GRANULE)/Nodes(L1C_T32TPQ_A008615_20260430T102022)/Nodes(IMG_DATA)/Nodes(T32TPQ_20260430T102021_B05.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "s3"
- file:size 14132761
proj:bbox[] 4 items
- 0 600000
- 1 4890240
- 2 709800
- 3 5000040
- proj:code "EPSG:32632"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- view:azimuth 287.716927255004
- file:checksum "1620854633e05ccd3deb8ffe361556fe2b678feb2cfcd02c552accca0c7dd3e600c2"
proj:transform[] 6 items
- 0 20
- 1 0
- 2 600000
- 3 0
- 4 -20
- 5 5000040
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B05.jp2"
- view:incidence_angle 9.99831284011978
- gsd 20
- nodata 0
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "reflectance"
B06
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B06.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 20m"
bands[] 1 items
0
- name "B06"
- description "Red edge 2 (band 6)"
- eo:common_name "rededge075"
- eo:center_wavelength 0.741
- eo:full_width_half_max 0.374
alternate
https
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(GRANULE)/Nodes(L1C_T32TPQ_A008615_20260430T102022)/Nodes(IMG_DATA)/Nodes(T32TPQ_20260430T102021_B06.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "s3"
- file:size 14698365
proj:bbox[] 4 items
- 0 600000
- 1 4890240
- 2 709800
- 3 5000040
- proj:code "EPSG:32632"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- view:azimuth 287.885088612677
- file:checksum "162091e3cb29ee20af59a39b12a6290d1f7d6b6bc83cd300f33b9fa50ca93b6833c1"
proj:transform[] 6 items
- 0 20
- 1 0
- 2 600000
- 3 0
- 4 -20
- 5 5000040
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B06.jp2"
- view:incidence_angle 10.0261886269243
- gsd 20
- nodata 0
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "reflectance"
B07
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B07.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 20m"
bands[] 1 items
0
- name "B07"
- description "Red edge 3 (band 7)"
- eo:common_name "rededge078"
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.399
alternate
https
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(GRANULE)/Nodes(L1C_T32TPQ_A008615_20260430T102022)/Nodes(IMG_DATA)/Nodes(T32TPQ_20260430T102021_B07.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "s3"
- file:size 15027909
proj:bbox[] 4 items
- 0 600000
- 1 4890240
- 2 709800
- 3 5000040
- proj:code "EPSG:32632"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- view:azimuth 287.984047427561
- file:checksum "16208453af0658e670771d53d16c78d0cb992aac3151b157fb73c7fac0994cbc94fa"
proj:transform[] 6 items
- 0 20
- 1 0
- 2 600000
- 3 0
- 4 -20
- 5 5000040
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B07.jp2"
- view:incidence_angle 10.0488414169507
- gsd 20
- nodata 0
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "reflectance"
B08
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B08.jp2"
- type "image/jp2"
- title "NIR 1 (band 8) - 10m"
bands[] 1 items
0
- name "B08"
- description "NIR 1 (band 8)"
- eo:common_name "nir"
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.454
alternate
https
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(GRANULE)/Nodes(L1C_T32TPQ_A008615_20260430T102022)/Nodes(IMG_DATA)/Nodes(T32TPQ_20260430T102021_B08.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "s3"
- file:size 51466531
proj:bbox[] 4 items
- 0 600000
- 1 4890240
- 2 709800
- 3 5000040
- proj:code "EPSG:32632"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- view:azimuth 287.208015441448
- file:checksum "1620b2939ddbbd2551a8dfe011c4ef69b152403101a7e70a4bd7081a6c0809cd4ed8"
proj:transform[] 6 items
- 0 10
- 1 0
- 2 600000
- 3 0
- 4 -10
- 5 5000040
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B08.jp2"
- view:incidence_angle 9.94056245890689
- gsd 10
- nodata 0
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "reflectance"
B09
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B09.jp2"
- type "image/jp2"
- title "NIR 3 (band 9) - 60m"
bands[] 1 items
0
- name "B09"
- description "NIR 3 (band 9)"
- eo:common_name "nir09"
- eo:center_wavelength 0.945
- eo:full_width_half_max 0.479
alternate
https
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(GRANULE)/Nodes(L1C_T32TPQ_A008615_20260430T102022)/Nodes(IMG_DATA)/Nodes(T32TPQ_20260430T102021_B09.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "s3"
- file:size 1854379
proj:bbox[] 4 items
- 0 600000
- 1 4890240
- 2 709800
- 3 5000040
- proj:code "EPSG:32632"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- view:azimuth 288.361885463141
- file:checksum "16204804470c1e62439e63ef4dde72aed6ade840eabbe684d78b223508205c49dab4"
proj:transform[] 6 items
- 0 60
- 1 0
- 2 600000
- 3 0
- 4 -60
- 5 5000040
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B09.jp2"
- view:incidence_angle 10.1255615917795
- gsd 60
- nodata 0
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "reflectance"
B10
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B10.jp2"
- type "image/jp2"
- title "Cirrus (band 10) - 60m"
bands[] 1 items
0
- name "B10"
- description "Cirrus (band 10)"
- eo:common_name "cirrus"
- eo:center_wavelength 1.377
- eo:full_width_half_max 0.706
alternate
https
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(GRANULE)/Nodes(L1C_T32TPQ_A008615_20260430T102022)/Nodes(IMG_DATA)/Nodes(T32TPQ_20260430T102021_B10.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "s3"
- file:size 845088
proj:bbox[] 4 items
- 0 600000
- 1 4890240
- 2 709800
- 3 5000040
- proj:code "EPSG:32632"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- view:azimuth 287.593921885723
- file:checksum "162041648609abe8863d468ec3578983c782bd9907b33d4fdce15b73ee330d33ba7b"
proj:transform[] 6 items
- 0 60
- 1 0
- 2 600000
- 3 0
- 4 -60
- 5 5000040
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B10.jp2"
- view:incidence_angle 9.97148143914702
- gsd 60
- nodata 0
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "reflectance"
B11
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B11.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 20m"
bands[] 1 items
0
- name "B11"
- description "SWIR 1 (band 11)"
- eo:common_name "swir16"
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.841
alternate
https
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(GRANULE)/Nodes(L1C_T32TPQ_A008615_20260430T102022)/Nodes(IMG_DATA)/Nodes(T32TPQ_20260430T102021_B11.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "s3"
- file:size 14311256
proj:bbox[] 4 items
- 0 600000
- 1 4890240
- 2 709800
- 3 5000040
- proj:code "EPSG:32632"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- view:azimuth 287.900449437928
- file:checksum "162041b602a7d492970e90a651e069631f2952ca0702c8429fed5947b95a7ca2fb64"
proj:transform[] 6 items
- 0 20
- 1 0
- 2 600000
- 3 0
- 4 -20
- 5 5000040
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B11.jp2"
- view:incidence_angle 10.0150550860024
- gsd 20
- nodata 0
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "reflectance"
B12
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B12.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 20m"
bands[] 1 items
0
- name "B12"
- description "SWIR 2 (band 12)"
- eo:common_name "swir22"
- eo:center_wavelength 2.202
- eo:full_width_half_max 1.16
alternate
https
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(GRANULE)/Nodes(L1C_T32TPQ_A008615_20260430T102022)/Nodes(IMG_DATA)/Nodes(T32TPQ_20260430T102021_B12.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "s3"
- file:size 14009967
proj:bbox[] 4 items
- 0 600000
- 1 4890240
- 2 709800
- 3 5000040
- proj:code "EPSG:32632"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- view:azimuth 288.217151612201
- file:checksum "1620c04b879deb710dc32889e8f5cdb8617c644d3b198fd22de399dde7475d83cdc2"
proj:transform[] 6 items
- 0 20
- 1 0
- 2 600000
- 3 0
- 4 -20
- 5 5000040
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B12.jp2"
- view:incidence_angle 10.078247924646
- gsd 20
- nodata 0
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "reflectance"
B8A
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B8A.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 20m"
bands[] 1 items
0
- name "B8A"
- description "NIR 2 (band 8A)"
- eo:common_name "nir08"
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.441
alternate
https
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(GRANULE)/Nodes(L1C_T32TPQ_A008615_20260430T102022)/Nodes(IMG_DATA)/Nodes(T32TPQ_20260430T102021_B8A.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "s3"
- file:size 15103596
proj:bbox[] 4 items
- 0 600000
- 1 4890240
- 2 709800
- 3 5000040
- proj:code "EPSG:32632"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- view:azimuth 288.125043289709
- file:checksum "16201b4c56663fec2e3df57a2ba671cf6cf539c1211b33c6a24119895a476e226a0e"
proj:transform[] 6 items
- 0 20
- 1 0
- 2 600000
- 3 0
- 4 -20
- 5 5000040
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_B8A.jp2"
- view:incidence_angle 10.0722505630632
- gsd 20
- nodata 0
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "reflectance"
TCI
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_TCI.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(GRANULE)/Nodes(L1C_T32TPQ_A008615_20260430T102022)/Nodes(IMG_DATA)/Nodes(T32TPQ_20260430T102021_TCI.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "s3"
- file:size 51673291
proj:bbox[] 4 items
- 0 600000
- 1 4890240
- 2 709800
- 3 5000040
- proj:code "EPSG:32632"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- file:checksum "16207625c56c9f86114f355e91d96bb27359e013d61bac9f8102d6116f87bb1f070c"
proj:transform[] 6 items
- 0 10
- 1 0
- 2 600000
- 3 0
- 4 -10
- 5 5000040
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/IMG_DATA/T32TPQ_20260430T102021_TCI.jp2"
- gsd 10
- nodata 0
- data_type "uint8"
proj:shape[] 2 items
- 0 10980
- 1 10980
- alternate:name "S3"
roles[] 1 items
- 0 "visual"
Product
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/$value"
- type "application/zip"
- title "Zipped product"
auth:refs[] 1 items
- 0 "oidc"
- file:size 354414738
- file:checksum "d50110be9fa54bf271e9eec4a8a09d83cc3b3e"
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE.zip"
roles[] 3 items
- 0 "data"
- 1 "metadata"
- 2 "archive"
thumbnail
- href "https://datahub.creodias.eu/odata/v1/Assets(b276045b-c82e-4194-831d-f0b111bf9e00)/$value"
- type "image/jpeg"
- title "Quicklook"
alternate
s3
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954-ql.jpg"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
- file:size 16407
proj:shape[] 2 items
- 0 343
- 1 343
- file:checksum "d501102c916828d301c69a35ba111f305a463a"
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954-ql.jpg"
- data_type "uint8"
- proj:code None
- alternate:name "HTTPS"
roles[] 2 items
- 0 "thumbnail"
- 1 "overview"
safe_manifest
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/manifest.safe"
- type "application/xml"
- title "manifest.safe"
alternate
https
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(manifest.safe)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "s3"
- file:size 48980
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- file:checksum "d501105c66ec25b6e3561f00888c4655979209"
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/manifest.safe"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
granule_metadata
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/MTD_TL.xml"
- type "application/xml"
- title "MTD_TL.xml"
alternate
https
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(GRANULE)/Nodes(L1C_T32TPQ_A008615_20260430T102022)/Nodes(MTD_TL.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "s3"
- file:size 276504
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- file:checksum "d5012094c1f4d04467711cda8bac1b43365531540314e0df0e6dd3468600de04fd84ad"
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/GRANULE/L1C_T32TPQ_A008615_20260430T102022/MTD_TL.xml"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
inspire_metadata
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/INSPIRE.xml"
- type "application/xml"
- title "INSPIRE.xml"
alternate
https
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(INSPIRE.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "s3"
- file:size 18945
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- file:checksum "d50120fa6fd3c8fbffdd70a9b545cd4c6b0004395082cb0c201e829c17a24b4c25047d"
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/INSPIRE.xml"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
product_metadata
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/MTD_MSIL1C.xml"
- type "application/xml"
- title "MTD_MSIL1C.xml"
alternate
https
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(MTD_MSIL1C.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "s3"
- file:size 49718
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- file:checksum "d50120362d1129df0c0eb344f4912a4dcba6e807ff6c7a5424a764ba5019d7600484a2"
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/MTD_MSIL1C.xml"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
datastrip_metadata
- href "s3://eodata/Sentinel-2/MSI/L1C/2026/04/30/S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/DATASTRIP/DS_2CPS_20260430T135954_S20260430T102022/MTD_DS.xml"
- type "application/xml"
- title "MTD_DS.xml"
alternate
https
- href "https://download.dataspace.copernicus.eu/odata/v1/Products(fe107220-8c38-47f7-b113-b0579b38a01f)/Nodes(S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE)/Nodes(DATASTRIP)/Nodes(DS_2CPS_20260430T135954_S20260430T102022)/Nodes(MTD_DS.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
auth:refs[] 1 items
- 0 "s3"
- file:size 19335010
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- file:checksum "d501208a4e91869f51b7a94fb654f8322e30a9abf55afee26ff76f72c3d38f2ca418ad"
- file:local_path "S2C_MSIL1C_20260430T102021_N0512_R065_T32TPQ_20260430T135954.SAFE/DATASTRIP/DS_2CPS_20260430T135954_S20260430T102022/MTD_DS.xml"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
- collection "sentinel-2-l1c"
Other methods
CDSE provides a graphical STAC browser that can be used to search for and select singular items.