Metadata
title: "E-TRAINEE Tutorial - Sentinel-2 data STAC access and time series processing"description: "This is a tutorial within the second theme of Module 1 of the E-TRAINEE course."
lastUpdate: 2025-03-23
authors: Andreas Mayr
Sentinel-2 data STAC access and time series processing¶
This Notebook illustrates how to query and download Sentinel-2 satellite imagery from a SpatioTemporal Asset Catalog (STAC) hosted on S3 object storage. Furthermore, it shows how to work with the data using xarray
(which was introduced in a tutorial in theme 1), and how to perform tasks like subsetting, cloud masking, spectral index calculation, temporal aggregation, and trend analysis. A few simple processing steps let you explore the development of the Normalized Difference Vegetation Index (NDVI) in spring and summer, including e.g. the seasonal greening of mountain grasslands.
The Notebook heavily relies on the Python packages pystac-client, stackstac, and xarray. These packages are contained in the requirements file provided for the course (etrainee_m1.yml). Please see the instructions on the software page for setting up a Conda environment based on this file.
Parts of the Notebook use code from a tutorial provided here.
Query data via STAC¶
Import the most important packages.
#from osgeo import gdal # In case of problems with importing rasterio, run 'mamba install gdal' and then import gdal like this first
import pystac_client
import stackstac
import pyproj
import xarray
import rioxarray
We use the pystac_client
package to look for items from the Sentinel-2 L2A collection in a STAC catalog (named sentinel-2-l2a
or similar, depending on endpoint). E.g., try the endpoint of the Copernicus Dataspace Ecosystem (CDSE) STAC catalog.
Alternatively, you could try element84’s search endpoint on Amazon Web Service (AWS) which works without credentials (i.e., no registration and authentication needed). However, this seems to raise problems with inconsistent band value offsets due to different processing baselines within the collection and/or the way this is handled by stackstac
(see e.g. here).
CDSE secrets
For downloading from the CDSE endpoint you will need credentials ("secrets"). To generate the necessary credentials, you must have a registered account on dataspace.copernicus.eu. If you don’t have an account, you can find a registration link here. To obtain secrets, visit this page and log in with your CDSE account (here you can also see your transfer data limit and bandwidth limit). Create your own S3 credentials and save them somewhere; see this page for a more detailed description.
Using the os
package, we can set environment variables to authenticate as a valid user for the S3 protocol.
The only variables you need to configure are:
AWS_ACCESS_KEY_ID
AWS_SECRET_ACCESS_KEY
import os
os.environ["GDAL_HTTP_TCP_KEEPALIVE"] = "YES"
os.environ["AWS_S3_ENDPOINT"] = "eodata.dataspace.copernicus.eu"
os.environ["AWS_ACCESS_KEY_ID"] = "your_access_key" # !
os.environ["AWS_SECRET_ACCESS_KEY"] = "your_secret_access_key" # !
os.environ["AWS_HTTPS"] = "YES"
os.environ["AWS_VIRTUAL_HOSTING"] = "FALSE"
os.environ["GDAL_HTTP_UNSAFESSL"] = "YES"
Search items from the STAC catalog¶
Now connect to the STAC catalog and search items of the sentinel-2-l2a
collection that cover (intersect) a point of interest or an area. As search criteria we use a maximum cloud cover (per scene) and a time period.
#URL = "https://earth-search.aws.element84.com/v1"
URL = "https://stac.dataspace.copernicus.eu/v1/"
catalog = pystac_client.Client.open(URL)
%%time
# Define a point of interest to intersect our query
lon, lat = 11.39, 47.26 # Innsbruck (Austria)
items = catalog.search(
intersects=dict(type="Point", coordinates=[lon, lat]),
collections=["sentinel-2-l2a"],
query = ['eo:cloud_cover<50'],
datetime="2021-04-01/2021-08-31"
).item_collection()
print(f'{len(items)} items found') # How many items in the catalog match these criteria?
24 items found CPU times: total: 156 ms Wall time: 1.31 s
Let's have look at the items found by the search. You can expand them and inspect the assets and the metadata they contain (such as coordinate reference system and resolution of spectral bands).
items
- type "FeatureCollection"
features[] 24 items
0
- type "Feature"
- stac_version "1.1.0"
stac_extensions[] 15 items
- 0 "https://stac-extensions.github.io/eo/v2.0.0/schema.json"
- 1 "https://stac-extensions.github.io/raster/v2.0.0/schema.json"
- 2 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 3 "https://stac-extensions.github.io/projection/v2.0.0/schema.json"
- 4 "https://stac-extensions.github.io/grid/v1.1.0/schema.json"
- 5 "https://stac-extensions.github.io/view/v1.0.0/schema.json"
- 6 "https://stac-extensions.github.io/file/v2.1.0/schema.json"
- 7 "https://stac-extensions.github.io/processing/v1.2.0/schema.json"
- 8 "https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json"
- 9 "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json"
- 10 "https://stac-extensions.github.io/authentication/v1.1.0/schema.json"
- 11 "https://stac-extensions.github.io/classification/v2.0.0/schema.json"
- 12 "https://stac-extensions.github.io/product/v0.1.0/schema.json"
- 13 "https://cs-si.github.io/eopf-stac-extension/v1.2.0/schema.json"
- 14 "https://stac-extensions.github.io/storage/v2.0.0/schema.json"
- id "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 12 items
0[] 2 items
- 0 10.31459483424609
- 1 46.96641288701154
1[] 2 items
- 0 10.350771738924328
- 1 47.07150873666159
2[] 2 items
- 0 10.403439654307547
- 1 47.21781749706131
3[] 2 items
- 0 10.454186408571749
- 1 47.3647783225232
4[] 2 items
- 0 10.5070026522269
- 1 47.51134033606641
5[] 2 items
- 0 10.55950001853795
- 1 47.65808957422401
6[] 2 items
- 0 10.613147270313863
- 1 47.8046338914676
7[] 2 items
- 0 10.626428805825778
- 1 47.84069342146092
8[] 2 items
- 0 11.802846682924509
- 1 47.81947440295927
9[] 2 items
- 0 11.751084998620154
- 1 46.83262831925138
10[] 2 items
- 0 10.31188688551243
- 1 46.85818197246455
11[] 2 items
- 0 10.31459483424609
- 1 46.96641288701154
bbox[] 4 items
- 0 10.311887
- 1 46.832628
- 2 11.802847
- 3 47.840693
properties
- gsd 10
- created "2023-02-18T23:05:08.041000Z"
- updated "2024-04-26T16:53:39.638902Z"
- datetime "2021-08-21T10:10:31.024000Z"
- platform "sentinel-2a"
- grid:code "MGRS-32TPT"
- published "2023-02-24T02:37:32.879968Z"
statistics
- water 0.776181
- nodata 8.875183
- dark_area 4.506517
- vegetation 63.35969
- thin_cirrus 4.394666
- cloud_shadow 3.6869319999999997
- unclassified 1.352611
- not_vegetated 9.031644
- high_proba_clouds 5.66865
- medium_proba_clouds 6.177029000000001
- saturated_defective 0.0
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 "2021-08-21T10:10:31.024Z"
- product:type "S2MSI2A"
- view:azimuth 104.25122222176154
- constellation "sentinel-2"
- eo:snow_cover 1.05
- eo:cloud_cover 16.24
- start_datetime "2021-08-21T10:10:31.024Z"
- sat:orbit_state "descending"
storage:schemes
cdse-s3
- 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. A Global Service Load Balancer (GSLB) directs the request to either CloudFerro Cloud or OpenTelekom Cloud (OTC) S3 endpoint based on the location of the DNS resolver."
- requester_pays False
creodias-s3
- 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 "GS2A_20210821T101031_032194_N05.00"
- processing:level "L2"
- view:sun_azimuth 155.028547977446
- eopf:datastrip_id "S2A_OPER_MSI_L2A_DS_S2RP_20230120T102131_S20210821T101418_N05.00"
- processing:version "05.00"
- product:timeliness "PT24H"
- sat:absolute_orbit 32194
- sat:relative_orbit 22
- view:sun_elevation 52.3641253600513
- processing:datetime "2023-01-20T10:21:31.000000Z"
- processing:facility "ESA"
- eopf:instrument_mode "INS-NOBS"
- eopf:origin_datetime "2023-02-18T23:05:08.041000Z"
- view:incidence_angle 7.93273129599281
- product:timeliness_category "NRT"
- sat:platform_international_designator "2015-028A"
links[] 5 items
0
- rel "collection"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
1
- rel "parent"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
2
- rel "root"
- href "https://stac.dataspace.copernicus.eu/v1/"
- type "application/json"
- title "cdse-stac"
3
- rel "self"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131"
- type "application/geo+json"
4
- rel "version-history"
- href "https://trace.dataspace.copernicus.eu/api/v1/traces/name/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE.zip"
- type "application/json"
- title "Product history record from the CDSE traceability service"
assets
AOT_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R10m/T32TPT_20210821T101031_AOT_10m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210821T101031_AOT_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 5891084
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620b1e391daaa3e2fef7519a2041f264daf072ac8d6d3ba9ac73e2a38d9cc2b7efb"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R10m/T32TPT_20210821T101031_AOT_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
AOT_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R20m/T32TPT_20210821T101031_AOT_20m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210821T101031_AOT_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 4167012
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162085a9917e84b8ed2ab6734af1e890b4c5f80f357afb9973ba8ff1c943b2d9cb78"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R20m/T32TPT_20210821T101031_AOT_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
AOT_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R60m/T32TPT_20210821T101031_AOT_60m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210821T101031_AOT_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 913975
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620ef1a36f3adba39d5fba1cb5250a99fc412bd5a4c0d5951b72761b4b845d916ea"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R60m/T32TPT_20210821T101031_AOT_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
B01_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R20m/T32TPT_20210821T101031_B01_20m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.443
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210821T101031_B01_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 21774379
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.160518928392
- file:checksum "1620280f179bdee812afccbd33ebcfe9feed45caba0c44b4dc0ad97459febf2c64ce"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R20m/T32TPT_20210821T101031_B01_20m.jp2"
- view:incidence_angle 8.03756140447666
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:upsampled"
- 3 "gsd:20m"
B01_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R60m/T32TPT_20210821T101031_B01_60m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.443
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210821T101031_B01_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3747857
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.160518928392
- file:checksum "1620d076388252ac156b195168cf9d2bc3e5636cc96cf260a48ee8d4975e4d453b36"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R60m/T32TPT_20210821T101031_B01_60m.jp2"
- view:incidence_angle 8.03756140447666
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B02_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R10m/T32TPT_20210821T101031_B02_10m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210821T101031_B02_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 112901583
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.298589145546
- file:checksum "16200e3fc2f2217a27b9bdbba705b49988c2ba64ca541599f67202bb4b0f7979cf9b"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R10m/T32TPT_20210821T101031_B02_10m.jp2"
- view:incidence_angle 7.82576047380819
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B02_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R20m/T32TPT_20210821T101031_B02_20m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210821T101031_B02_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 32458623
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.298589145546
- file:checksum "162023d6310909611eceddaa9f0b3d1717cb9bcfd11c94170cf9f7387f562a288941"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R20m/T32TPT_20210821T101031_B02_20m.jp2"
- view:incidence_angle 7.82576047380819
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B02_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R60m/T32TPT_20210821T101031_B02_60m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210821T101031_B02_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3747374
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.298589145546
- file:checksum "1620fc8aa4a91fcece8dce0e05b9a6ed7dc73980aa6657e9c3247a455a38c41a442b"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R60m/T32TPT_20210821T101031_B02_60m.jp2"
- view:incidence_angle 7.82576047380819
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B03_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R10m/T32TPT_20210821T101031_B03_10m.jp2"
- type "image/jp2"
- title "Green (band 3) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210821T101031_B03_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 116357340
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.260963874942
- file:checksum "16209adf10f621d91d89e665a9a375f6e5dea723decb76bc11ee0ae54a84f47a857d"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R10m/T32TPT_20210821T101031_B03_10m.jp2"
- view:incidence_angle 7.85622198795423
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B03_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R20m/T32TPT_20210821T101031_B03_20m.jp2"
- type "image/jp2"
- title "Green (band 3) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210821T101031_B03_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33648883
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.260963874942
- file:checksum "1620450c7dcb7e01bc10e20dcd52de9e4634e57cee179fc43fa230bf3a800db78fda"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R20m/T32TPT_20210821T101031_B03_20m.jp2"
- view:incidence_angle 7.85622198795423
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B03_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R60m/T32TPT_20210821T101031_B03_60m.jp2"
- type "image/jp2"
- title "Green (band 3) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210821T101031_B03_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3748716
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.260963874942
- file:checksum "1620d324fb6bb24d14105ad2872045d33950a48fa6f743191ce8907b05b24c7358e7"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R60m/T32TPT_20210821T101031_B03_60m.jp2"
- view:incidence_angle 7.85622198795423
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B04_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R10m/T32TPT_20210821T101031_B04_10m.jp2"
- type "image/jp2"
- title "Red (band 4) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210821T101031_B04_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 113707574
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.263797980311
- file:checksum "16201f1ecf615b047f3de2bb503a126b40ea09b0cadf809d25250a8294dca03bcf95"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R10m/T32TPT_20210821T101031_B04_10m.jp2"
- view:incidence_angle 7.89431664145643
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B04_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R20m/T32TPT_20210821T101031_B04_20m.jp2"
- type "image/jp2"
- title "Red (band 4) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210821T101031_B04_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33401944
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.263797980311
- file:checksum "162050ac6ca32aadb13fe73a4bc713faf0c22c2de1975754ddabe6bda3ab19391f52"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R20m/T32TPT_20210821T101031_B04_20m.jp2"
- view:incidence_angle 7.89431664145643
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B04_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R60m/T32TPT_20210821T101031_B04_60m.jp2"
- type "image/jp2"
- title "Red (band 4) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210821T101031_B04_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3753142
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.263797980311
- file:checksum "1620a76b26df99ebc3009c7f36984b57596a63d357d303a86a61ae2dd18d7e257bc4"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R60m/T32TPT_20210821T101031_B04_60m.jp2"
- view:incidence_angle 7.89431664145643
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B05_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R20m/T32TPT_20210821T101031_B05_20m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210821T101031_B05_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33859050
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.229172265352
- file:checksum "162037a187cf7c583cb0ea0dc796980f134a88dd541e7298dc715cc8828b5aed3f00"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R20m/T32TPT_20210821T101031_B05_20m.jp2"
- view:incidence_angle 7.92076761188579
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B05_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R60m/T32TPT_20210821T101031_B05_60m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210821T101031_B05_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3753390
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.229172265352
- file:checksum "16205f83934cd1ee3299df79dbceed8100f9482fe4b2c49f8d44b068a55ae555eec4"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R60m/T32TPT_20210821T101031_B05_60m.jp2"
- view:incidence_angle 7.92076761188579
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B06_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R20m/T32TPT_20210821T101031_B06_20m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 20m"
- description "S3 storage provided by CloudFerro Cloud and OpenTelekom Cloud (OTC). Use endpoint URL `https://eodata.dataspace.copernicus.eu`."
bands[] 1 items
0
- eo:center_wavelength 0.741
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210821T101031_B06_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33798764
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.200922671909
- file:checksum "162031a3e39eefb1f5c1b1dc4fe3fc30fe5cc63e28c6c466a4d56a286d5ef79aba22"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R20m/T32TPT_20210821T101031_B06_20m.jp2"
- view:incidence_angle 7.94597751581292
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B06_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R60m/T32TPT_20210821T101031_B06_60m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.741
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210821T101031_B06_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3740966
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.200922671909
- file:checksum "1620585b8afcdd140e605053831bdffddc514bf7c8101f55aa3663089d8be4602ad1"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R60m/T32TPT_20210821T101031_B06_60m.jp2"
- view:incidence_angle 7.94597751581292
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B07_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R20m/T32TPT_20210821T101031_B07_20m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210821T101031_B07_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33899800
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.215699314914
- file:checksum "16202ee8ac30a863bd581c510397540de3f03f0854f0846ec3c570a95d6aab246639"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R20m/T32TPT_20210821T101031_B07_20m.jp2"
- view:incidence_angle 7.96992271240387
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B07_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R60m/T32TPT_20210821T101031_B07_60m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210821T101031_B07_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3738528
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.215699314914
- file:checksum "16201ae59af772d3581a2f83d0e36a3bb1f6f4a627cec6b381f531c143e9051d8c1e"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R60m/T32TPT_20210821T101031_B07_60m.jp2"
- view:incidence_angle 7.96992271240387
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B08_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R10m/T32TPT_20210821T101031_B08_10m.jp2"
- type "image/jp2"
- title "NIR 1 (band 8) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.454
- name "B08"
- eo:common_name "nir"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210821T101031_B08_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135057085
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.282461767251
- file:checksum "16200a4ec42538b703bccfe49bb90f47c0adab0f8ec59c964cdad005f4ab6f7ce2f6"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R10m/T32TPT_20210821T101031_B08_10m.jp2"
- view:incidence_angle 7.84150646613809
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B09_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R60m/T32TPT_20210821T101031_B09_60m.jp2"
- type "image/jp2"
- title "NIR 3 (band 9) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.945
- eo:full_width_half_max 0.479
- name "B09"
- eo:common_name "nir09"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210821T101031_B09_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3742296
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.132634696969
- file:checksum "16203fa598588806fd32701f695423c943b416d96a810ef316b9e3373e627751338f"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R60m/T32TPT_20210821T101031_B09_60m.jp2"
- view:incidence_angle 8.07398551467135
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B11_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R20m/T32TPT_20210821T101031_B11_20m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 20m"
bands[] 1 items
0
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210821T101031_B11_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33840003
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.330249225666
- file:checksum "16200917db4cea459547cf56af5ad41d1c8fc813978e9b1c996eca7dfc8fd7315c32"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R20m/T32TPT_20210821T101031_B11_20m.jp2"
- view:incidence_angle 7.9093848872166
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B11_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R60m/T32TPT_20210821T101031_B11_60m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 60m"
bands[] 1 items
0
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210821T101031_B11_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3757940
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.330249225666
- file:checksum "1620d6a6a9c6bd42e6b41dd34d869734d8a67bdd02d05da5436db730a3e54c755e4d"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R60m/T32TPT_20210821T101031_B11_60m.jp2"
- view:incidence_angle 7.9093848872166
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B12_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R20m/T32TPT_20210821T101031_B12_20m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 20m"
bands[] 1 items
0
- eo:center_wavelength 2.202
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210821T101031_B12_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33148218
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.320647188533
- file:checksum "162019707191e9a3038401446206badf18de8bff9328479ce1c0bb66cfbc7f4db530"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R20m/T32TPT_20210821T101031_B12_20m.jp2"
- view:incidence_angle 7.97941219065115
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B12_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R60m/T32TPT_20210821T101031_B12_60m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 60m"
bands[] 1 items
0
- eo:center_wavelength 2.202
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210821T101031_B12_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3751807
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.320647188533
- file:checksum "16205ad176394923de7c5321172b93474236a1fddde0a06b6b29bc7d7932528dc266"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R60m/T32TPT_20210821T101031_B12_60m.jp2"
- view:incidence_angle 7.97941219065115
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B8A_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R20m/T32TPT_20210821T101031_B8A_20m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210821T101031_B8A_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33798004
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.167125764108
- file:checksum "1620ab4f34dc2c5f1a5f8061e4f2085ae7cb004e8606b5123da4c0ce2cc15db463c3"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R20m/T32TPT_20210821T101031_B8A_20m.jp2"
- view:incidence_angle 8.00024528540876
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B8A_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R60m/T32TPT_20210821T101031_B8A_60m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210821T101031_B8A_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3773427
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.167125764108
- file:checksum "162015d1422eaf0eee567114e329d18d55642b2e3037bc6fcff2f84a0d02d8a5af38"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R60m/T32TPT_20210821T101031_B8A_60m.jp2"
- view:incidence_angle 8.00024528540876
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
Product
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/$value"
- type "application/zip"
- title "Zipped product"
auth:refs[] 1 items
- 0 "oidc"
- file:size 1163226517
- storage:refs "𒍟※"
- file:checksum "d50110c2131158c76d0ce94a01a9d4c313dab1"
- alternate:name "HTTPS"
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE.zip"
roles[] 3 items
- 0 "data"
- 1 "metadata"
- 2 "archive"
SCL_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R20m/T32TPT_20210821T101031_SCL_20m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210821T101031_SCL_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 2948735
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620921da9f89e68d96bc0062addb6d358456ae68fc0a3bbf502dcdb68b34b3e2c46"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R20m/T32TPT_20210821T101031_SCL_20m.jp2"
classification:classes[] 12 items
0
- percentage 8.875183
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
- percentage 0.0
2
- percentage 4.506517
- name "dark_area_pixels"
- value 2
3
- percentage 3.6869319999999997
- name "cloud_shadows"
- value 3
4
- percentage 63.35969
- name "vegetation"
- value 4
5
- percentage 9.031644
- name "not_vegetated"
- value 5
6
- percentage 0.776181
- name "water"
- value 6
7
- percentage 1.352611
- name "unclassified"
- value 7
8
- percentage 6.177029000000001
- name "cloud_medium_probability"
- value 8
9
- percentage 5.66865
- name "cloud_high_probability"
- value 9
10
- percentage 4.394666
- name "thin_cirrus"
- value 10
11
- percentage 1.046076
- name "snow"
- value 11
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "data"
- 1 "sampling:original"
- 2 "gsd:20m"
SCL_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R60m/T32TPT_20210821T101031_SCL_60m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210821T101031_SCL_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 701982
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620b99acf8010763e21b28ae0037e4dae2fd5e9ad12140ed9395734bf3eef730bce"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R60m/T32TPT_20210821T101031_SCL_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
classification:classes[] 12 items
0
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
2
- name "dark_area_pixels"
- value 2
3
- name "cloud_shadows"
- value 3
4
- name "vegetation"
- value 4
5
- name "not_vegetated"
- value 5
6
- name "water"
- value 6
7
- name "unclassified"
- value 7
8
- name "cloud_medium_probability"
- value 8
9
- name "cloud_high_probability"
- value 9
10
- name "thin_cirrus"
- value 10
11
- name "snow"
- value 11
roles[] 3 items
- 0 "data"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
TCI_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R10m/T32TPT_20210821T101031_TCI_10m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210821T101031_TCI_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135236399
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16209cd35fb0fa588f8f22794ef2861df04b5ade9fb18d89f0c0f94460c9f4b83b26"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R10m/T32TPT_20210821T101031_TCI_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 10980
- 1 10980
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:original"
- 2 "gsd:10m"
TCI_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R20m/T32TPT_20210821T101031_TCI_20m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210821T101031_TCI_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33857579
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620d4c2b5d3862d7229ce14e500d67457690f52876dcd1ae90477118a5050b7ba10"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R20m/T32TPT_20210821T101031_TCI_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:20m"
TCI_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R60m/T32TPT_20210821T101031_TCI_60m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210821T101031_TCI_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3734966
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620f4db779530e131afd79aad0a9f4bada0cad6b5a05e2562edb9428927b1e6a880"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R60m/T32TPT_20210821T101031_TCI_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
WVP_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R10m/T32TPT_20210821T101031_WVP_10m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210821T101031_WVP_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 82182996
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16207c9421508d34d46f2d2489dce4d991b0b2092f6699deca8802f8df264e4948b3"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R10m/T32TPT_20210821T101031_WVP_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
WVP_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R20m/T32TPT_20210821T101031_WVP_20m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210821T101031_WVP_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 26271888
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620bc3c8de0ff65680eeb1621560bc303e04e0d23df5885dddf231cd2f5de3bad24"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R20m/T32TPT_20210821T101031_WVP_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
WVP_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R60m/T32TPT_20210821T101031_WVP_60m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210821T101031_WVP_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3762419
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162057ef5e96fc38d321d06389083dbbe77487ffd233a35c7b84b153f9b30607ff82"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/IMG_DATA/R60m/T32TPT_20210821T101031_WVP_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
thumbnail
- href "https://datahub.creodias.eu/odata/v1/Assets(bf1fbd81-4d63-4a53-a36b-b10e2cbf6724)/$value"
- type "image/jpeg"
- title "Quicklook"
alternate
s3
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131-ql.jpg"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
auth:refs[] 1 items
- 0 "oidc"
- file:size 43771
- file:checksum "d50110260bc8a3f73f23d308ec2c19d961e389"
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131-ql.jpg"
- data_type "uint8"
- proj:code None
proj:shape[] 2 items
- 0 343
- 1 343
- alternate:name "HTTPS"
roles[] 2 items
- 0 "thumbnail"
- 1 "overview"
safe_manifest
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/manifest.safe"
- type "application/xml"
- title "manifest.safe"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(manifest.safe)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 69162
- file:checksum "d501102673308f10b58564652fc42c74b5cf42"
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/manifest.safe"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
granule_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/MTD_TL.xml"
- type "application/xml"
- title "MTD_TL.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes()/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032194_20210821T101418)/Nodes(MTD_TL.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 463535
- file:checksum "d50120f7621b5d20550849b385d2418bdc0aa44bf79b9b6dbf7798923893262ab26ac1"
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/GRANULE/L2A_T32TPT_A032194_20210821T101418/MTD_TL.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
inspire_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/INSPIRE.xml"
- type "application/xml"
- title "INSPIRE.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(INSPIRE.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 18898
- file:checksum "d501207a1c99b5bf7c869a9075e74d151dbcdb7fed99e8d455eb93aa78c9afbade134b"
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/INSPIRE.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
product_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/MTD_MSIL2A.xml"
- type "application/xml"
- title "MTD_MSIL2A.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes(MTD_MSIL2A.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 55127
- file:checksum "d50120cd8cb26518cf3cc41c5559c36184ab2054d6d7d3fd9ae522cd1970b202e5a330"
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/MTD_MSIL2A.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
datastrip_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/21/S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/DATASTRIP/DS_S2RP_20230120T102131_S20210821T101418/MTD_DS.xml"
- type "application/xml"
- title "MTD_DS.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(ffb1276d-c803-4144-984c-4a79bdee8420)/Nodes(S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE)/Nodes()/Nodes(DATASTRIP)/Nodes(DS_S2RP_20230120T102131_S20210821T101418)/Nodes(MTD_DS.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 13676894
- file:checksum "d50120e5d661a87efcc57838258bef73afbc794e8b342284d0410ab8261012021b831a"
- file:local_path "S2A_MSIL2A_20210821T101031_N0500_R022_T32TPT_20230120T102131.SAFE/DATASTRIP/DS_S2RP_20230120T102131_S20210821T101418/MTD_DS.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
- collection "sentinel-2-l2a"
1
- type "Feature"
- stac_version "1.1.0"
stac_extensions[] 15 items
- 0 "https://stac-extensions.github.io/eo/v2.0.0/schema.json"
- 1 "https://stac-extensions.github.io/raster/v2.0.0/schema.json"
- 2 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 3 "https://stac-extensions.github.io/projection/v2.0.0/schema.json"
- 4 "https://stac-extensions.github.io/grid/v1.1.0/schema.json"
- 5 "https://stac-extensions.github.io/view/v1.0.0/schema.json"
- 6 "https://stac-extensions.github.io/file/v2.1.0/schema.json"
- 7 "https://stac-extensions.github.io/processing/v1.2.0/schema.json"
- 8 "https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json"
- 9 "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json"
- 10 "https://stac-extensions.github.io/authentication/v1.1.0/schema.json"
- 11 "https://stac-extensions.github.io/classification/v2.0.0/schema.json"
- 12 "https://stac-extensions.github.io/product/v0.1.0/schema.json"
- 13 "https://cs-si.github.io/eopf-stac-extension/v1.2.0/schema.json"
- 14 "https://stac-extensions.github.io/storage/v2.0.0/schema.json"
- id "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 6 items
0[] 2 items
- 0 11.752095085073089
- 1 46.851885804274936
1[] 2 items
- 0 11.744307572654966
- 1 46.83274865570208
2[] 2 items
- 0 10.31188688551243
- 1 46.85818197246455
3[] 2 items
- 0 10.33660021997006
- 1 47.84592105208886
4[] 2 items
- 0 11.802846682924509
- 1 47.81947440295927
5[] 2 items
- 0 11.752095085073089
- 1 46.851885804274936
bbox[] 4 items
- 0 10.311887
- 1 46.832749
- 2 11.802847
- 3 47.845921
properties
- gsd 10
- created "2023-03-23T12:07:21.812000Z"
- updated "2024-05-09T03:06:18.899667Z"
- datetime "2021-08-14T10:20:31.024000Z"
- platform "sentinel-2a"
- grid:code "MGRS-32TPT"
- published "2023-03-23T12:20:09.538835Z"
statistics
- water 0.9534519999999999
- nodata 0.004343
- dark_area 4.24873
- vegetation 76.222962
- thin_cirrus 0.000703
- cloud_shadow 2.589132
- unclassified 0.437572
- not_vegetated 9.535979
- high_proba_clouds 2.201873
- medium_proba_clouds 2.75949
- saturated_defective 0.0
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 "2021-08-14T10:20:31.024Z"
- product:type "S2MSI2A"
- view:azimuth 286.9130362729089
- constellation "sentinel-2"
- eo:snow_cover 1.05
- eo:cloud_cover 4.96
- start_datetime "2021-08-14T10:20:31.024Z"
- sat:orbit_state "descending"
storage:schemes
cdse-s3
- 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. A Global Service Load Balancer (GSLB) directs the request to either CloudFerro Cloud or OpenTelekom Cloud (OTC) S3 endpoint based on the location of the DNS resolver."
- requester_pays False
creodias-s3
- 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 "GS2A_20210814T102031_032094_N05.00"
- processing:level "L2"
- view:sun_azimuth 157.282806146231
- eopf:datastrip_id "S2A_OPER_MSI_L2A_DS_S2RP_20230213T034213_S20210814T102609_N05.00"
- processing:version "05.00"
- product:timeliness "PT24H"
- sat:absolute_orbit 32094
- sat:relative_orbit 65
- view:sun_elevation 55.1045662946773
- processing:datetime "2023-02-13T03:42:13.000000Z"
- processing:facility "ESA"
- eopf:instrument_mode "INS-NOBS"
- eopf:origin_datetime "2023-03-23T12:07:21.812000Z"
- view:incidence_angle 6.635967315787358
- product:timeliness_category "NRT"
- sat:platform_international_designator "2015-028A"
links[] 5 items
0
- rel "collection"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
1
- rel "parent"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
2
- rel "root"
- href "https://stac.dataspace.copernicus.eu/v1/"
- type "application/json"
- title "cdse-stac"
3
- rel "self"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213"
- type "application/geo+json"
4
- rel "version-history"
- href "https://trace.dataspace.copernicus.eu/api/v1/traces/name/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE.zip"
- type "application/json"
- title "Product history record from the CDSE traceability service"
assets
AOT_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R10m/T32TPT_20210814T102031_AOT_10m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210814T102031_AOT_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 5290248
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620b015c703faee586dd33c844f72b414b2b298eb56c285f5590890190279f4d36d"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R10m/T32TPT_20210814T102031_AOT_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
AOT_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R20m/T32TPT_20210814T102031_AOT_20m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210814T102031_AOT_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3914112
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162088afac434ab01ed85abd67d76c175b0ce8dda6873f762063a47047234903c291"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R20m/T32TPT_20210814T102031_AOT_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
AOT_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R60m/T32TPT_20210814T102031_AOT_60m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210814T102031_AOT_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 937545
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620ee51674864c6cca3061319cf0c9d9a66fad942af40b8fe3fc0db6bca172a2a3b"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R60m/T32TPT_20210814T102031_AOT_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
B01_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R20m/T32TPT_20210814T102031_B01_20m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.443
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210814T102031_B01_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 21976677
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 287.409646752346
- file:checksum "16207b69d1fc03e56d018c67ef2b52d5054aea2c3ff6fe9a0f09f2bc0c97b119c72b"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R20m/T32TPT_20210814T102031_B01_20m.jp2"
- view:incidence_angle 6.76073421805869
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:upsampled"
- 3 "gsd:20m"
B01_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R60m/T32TPT_20210814T102031_B01_60m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.443
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210814T102031_B01_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3720751
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 287.409646752346
- file:checksum "16201b8468391bd50cf6e291ce260ab6d283cc4ea6929d056006f13aebb3e97d2c37"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R60m/T32TPT_20210814T102031_B01_60m.jp2"
- view:incidence_angle 6.76073421805869
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B02_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R10m/T32TPT_20210814T102031_B02_10m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210814T102031_B02_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 121588164
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.11190907758
- file:checksum "1620e613cc8d40fd043524603c75ab983c552933c56a2f52db94a12b3a2c3a91f169"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R10m/T32TPT_20210814T102031_B02_10m.jp2"
- view:incidence_angle 6.49484613400197
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B02_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R20m/T32TPT_20210814T102031_B02_20m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210814T102031_B02_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33839186
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.11190907758
- file:checksum "162005f634d1a8c6602efe1cfbc32fb4814f96faf0b099cd4fb0a67fc2285351688c"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R20m/T32TPT_20210814T102031_B02_20m.jp2"
- view:incidence_angle 6.49484613400197
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B02_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R60m/T32TPT_20210814T102031_B02_60m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210814T102031_B02_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3762664
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.11190907758
- file:checksum "16208119b86603c8be665a046a0a7f63cb2b01f80a1ed4b0e204391b6c7db73d034f"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R60m/T32TPT_20210814T102031_B02_60m.jp2"
- view:incidence_angle 6.49484613400197
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B03_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R10m/T32TPT_20210814T102031_B03_10m.jp2"
- type "image/jp2"
- title "Green (band 3) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210814T102031_B03_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 126605611
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.419175811977
- file:checksum "16204cc671a9da4d5cbb954acb15ae3f7696460a636a9c47fedff0fd2c7e6e62b9aa"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R10m/T32TPT_20210814T102031_B03_10m.jp2"
- view:incidence_angle 6.53366485778195
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B03_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R20m/T32TPT_20210814T102031_B03_20m.jp2"
- type "image/jp2"
- title "Green (band 3) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210814T102031_B03_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33897972
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.419175811977
- file:checksum "16207cac33a2b171ae3fb7da7220df8078363cf6f8d8cc9335d6ee70bd02b2e9ecdc"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R20m/T32TPT_20210814T102031_B03_20m.jp2"
- view:incidence_angle 6.53366485778195
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B03_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R60m/T32TPT_20210814T102031_B03_60m.jp2"
- type "image/jp2"
- title "Green (band 3) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210814T102031_B03_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3773729
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.419175811977
- file:checksum "16204f917ad9e5a82f21f45fe574b3eda8ec7e86842dd2485b220f29b064a32c09d9"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R60m/T32TPT_20210814T102031_B03_60m.jp2"
- view:incidence_angle 6.53366485778195
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B04_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R10m/T32TPT_20210814T102031_B04_10m.jp2"
- type "image/jp2"
- title "Red (band 4) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210814T102031_B04_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 122933976
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.719434673215
- file:checksum "16209f579d9058cebcf698cd893d45b90eb75e36df40d657c9c9721f13bb2631f65a"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R10m/T32TPT_20210814T102031_B04_10m.jp2"
- view:incidence_angle 6.5801306168444
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B04_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R20m/T32TPT_20210814T102031_B04_20m.jp2"
- type "image/jp2"
- title "Red (band 4) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210814T102031_B04_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33837404
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.719434673215
- file:checksum "1620fda23a3f2686eb23d001567161c4e2d23b18454f20d7e2461b604805c4f622c9"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R20m/T32TPT_20210814T102031_B04_20m.jp2"
- view:incidence_angle 6.5801306168444
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B04_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R60m/T32TPT_20210814T102031_B04_60m.jp2"
- type "image/jp2"
- title "Red (band 4) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210814T102031_B04_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3742460
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.719434673215
- file:checksum "1620df5d43b9ce63bd14eb662e80220afdfedab814d1d1d2dc995c4675b52d1a9e96"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R60m/T32TPT_20210814T102031_B04_60m.jp2"
- view:incidence_angle 6.5801306168444
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B05_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R20m/T32TPT_20210814T102031_B05_20m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210814T102031_B05_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33762380
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.867783157964
- file:checksum "162044048d345368a8889901e99df99f131b7d24db09f038bdca3359f89fb92abb0b"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R20m/T32TPT_20210814T102031_B05_20m.jp2"
- view:incidence_angle 6.61029529418714
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B05_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R60m/T32TPT_20210814T102031_B05_60m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210814T102031_B05_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3749205
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.867783157964
- file:checksum "162047bad022e4995ae4fd60d7795ce6dd95d2e56e59605dfe7490b3655c131ff561"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R60m/T32TPT_20210814T102031_B05_60m.jp2"
- view:incidence_angle 6.61029529418714
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B06_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R20m/T32TPT_20210814T102031_B06_20m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 20m"
- description "S3 storage provided by CloudFerro Cloud and OpenTelekom Cloud (OTC). Use endpoint URL `https://eodata.dataspace.copernicus.eu`."
bands[] 1 items
0
- eo:center_wavelength 0.741
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210814T102031_B06_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33713755
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 287.034071986313
- file:checksum "16202054ba44b19ff197046ea47317141fd97e0fcaeb790721e23a0d5a73627fab49"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R20m/T32TPT_20210814T102031_B06_20m.jp2"
- view:incidence_angle 6.64378012827732
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B06_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R60m/T32TPT_20210814T102031_B06_60m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.741
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210814T102031_B06_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3751437
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 287.034071986313
- file:checksum "162095dd50fa6094df79821c8f2c784f0835dfc537da59ccc90f627a31f6ac03bcff"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R60m/T32TPT_20210814T102031_B06_60m.jp2"
- view:incidence_angle 6.64378012827732
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B07_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R20m/T32TPT_20210814T102031_B07_20m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210814T102031_B07_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33714648
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 287.157314288616
- file:checksum "1620d846a74ed751b31aa557274b85b5632a155358ac0f6e02d66c97d22dac4be54a"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R20m/T32TPT_20210814T102031_B07_20m.jp2"
- view:incidence_angle 6.68196000261477
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B07_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R60m/T32TPT_20210814T102031_B07_60m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210814T102031_B07_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3745895
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 287.157314288616
- file:checksum "1620bd0bceac24195d5f7d1d332c709ef47dd65dbbf58685db83b1c36a56117bee11"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R60m/T32TPT_20210814T102031_B07_60m.jp2"
- view:incidence_angle 6.68196000261477
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B08_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R10m/T32TPT_20210814T102031_B08_10m.jp2"
- type "image/jp2"
- title "NIR 1 (band 8) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.454
- name "B08"
- eo:common_name "nir"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210814T102031_B08_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135324894
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.260128639851
- file:checksum "16209cd77b32776b4a2cc4b76378ba2900c73ea415379f683f4e3e6d1b797bfdd572"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R10m/T32TPT_20210814T102031_B08_10m.jp2"
- view:incidence_angle 6.51346831548451
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B09_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R60m/T32TPT_20210814T102031_B09_60m.jp2"
- type "image/jp2"
- title "NIR 3 (band 9) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.945
- eo:full_width_half_max 0.479
- name "B09"
- eo:common_name "nir09"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210814T102031_B09_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3749094
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 287.576347364606
- file:checksum "1620af196ba52e80b7534235ef43797526242e5c31c4d9c63700d875392bf269d70d"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R60m/T32TPT_20210814T102031_B09_60m.jp2"
- view:incidence_angle 6.80217567063406
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B11_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R20m/T32TPT_20210814T102031_B11_20m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 20m"
bands[] 1 items
0
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210814T102031_B11_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33821308
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 287.027273303056
- file:checksum "1620a05ad44e3b994529a311004a93fff4f5e946fd934019401e89fec52c5783b522"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R20m/T32TPT_20210814T102031_B11_20m.jp2"
- view:incidence_angle 6.63691889381863
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B11_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R60m/T32TPT_20210814T102031_B11_60m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 60m"
bands[] 1 items
0
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210814T102031_B11_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3732590
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 287.027273303056
- file:checksum "162056bb18237791663489d277a67b8e0092286a322183454f3ddd6ca6292f19b7cc"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R60m/T32TPT_20210814T102031_B11_60m.jp2"
- view:incidence_angle 6.63691889381863
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B12_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R20m/T32TPT_20210814T102031_B12_20m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 20m"
bands[] 1 items
0
- eo:center_wavelength 2.202
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210814T102031_B12_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33757179
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 287.368054273855
- file:checksum "16200c599cd01629419901ef8521f2ebf9fea1978e89a7c82b3c611dd9edd6b58ed1"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R20m/T32TPT_20210814T102031_B12_20m.jp2"
- view:incidence_angle 6.72418414763998
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B12_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R60m/T32TPT_20210814T102031_B12_60m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 60m"
bands[] 1 items
0
- eo:center_wavelength 2.202
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210814T102031_B12_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3744979
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 287.368054273855
- file:checksum "1620dce2d6d6aaad90c5588c9112d552bf02f378d9f26d714406939093dc9f701464"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R60m/T32TPT_20210814T102031_B12_60m.jp2"
- view:incidence_angle 6.72418414763998
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B8A_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R20m/T32TPT_20210814T102031_B8A_20m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210814T102031_B8A_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33715292
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 287.334320986479
- file:checksum "1620c1a2f195c53a2bbcc479ff09c615ea4aa4be479ba7e70f398908233a2775ffa5"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R20m/T32TPT_20210814T102031_B8A_20m.jp2"
- view:incidence_angle 6.72409524602914
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B8A_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R60m/T32TPT_20210814T102031_B8A_60m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210814T102031_B8A_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3744906
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 287.334320986479
- file:checksum "16209b1e00922753e42a91918e13e753a46538b7116a89b88ad1012896cee05c2a63"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R60m/T32TPT_20210814T102031_B8A_60m.jp2"
- view:incidence_angle 6.72409524602914
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
Product
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/$value"
- type "application/zip"
- title "Zipped product"
auth:refs[] 1 items
- 0 "oidc"
- file:size 1235129170
- storage:refs "𒍟※"
- file:checksum "d50110388047a0348235f14ad5ec6637127960"
- alternate:name "HTTPS"
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE.zip"
roles[] 3 items
- 0 "data"
- 1 "metadata"
- 2 "archive"
SCL_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R20m/T32TPT_20210814T102031_SCL_20m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210814T102031_SCL_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 2581800
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162045a37d23b0b59612a929427796147629da4474aaa72451c5d934220555a9390c"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R20m/T32TPT_20210814T102031_SCL_20m.jp2"
classification:classes[] 12 items
0
- percentage 0.004343
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
- percentage 0.0
2
- percentage 4.24873
- name "dark_area_pixels"
- value 2
3
- percentage 2.589132
- name "cloud_shadows"
- value 3
4
- percentage 76.222962
- name "vegetation"
- value 4
5
- percentage 9.535979
- name "not_vegetated"
- value 5
6
- percentage 0.9534519999999999
- name "water"
- value 6
7
- percentage 0.437572
- name "unclassified"
- value 7
8
- percentage 2.75949
- name "cloud_medium_probability"
- value 8
9
- percentage 2.201873
- name "cloud_high_probability"
- value 9
10
- percentage 0.000703
- name "thin_cirrus"
- value 10
11
- percentage 1.050099
- name "snow"
- value 11
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "data"
- 1 "sampling:original"
- 2 "gsd:20m"
SCL_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R60m/T32TPT_20210814T102031_SCL_60m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210814T102031_SCL_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 586303
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16209d1e9d747c3ceb2f8e4dce5e034dcc3f7badc14647c470a0dec30ac96422214d"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R60m/T32TPT_20210814T102031_SCL_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
classification:classes[] 12 items
0
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
2
- name "dark_area_pixels"
- value 2
3
- name "cloud_shadows"
- value 3
4
- name "vegetation"
- value 4
5
- name "not_vegetated"
- value 5
6
- name "water"
- value 6
7
- name "unclassified"
- value 7
8
- name "cloud_medium_probability"
- value 8
9
- name "cloud_high_probability"
- value 9
10
- name "thin_cirrus"
- value 10
11
- name "snow"
- value 11
roles[] 3 items
- 0 "data"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
TCI_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R10m/T32TPT_20210814T102031_TCI_10m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210814T102031_TCI_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135247331
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620dcd5971e519da5b22e40dca50cc08864f9868c6a37d0dd109b762c358152a097"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R10m/T32TPT_20210814T102031_TCI_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 10980
- 1 10980
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:original"
- 2 "gsd:10m"
TCI_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R20m/T32TPT_20210814T102031_TCI_20m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210814T102031_TCI_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33893417
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16200626d662ff92cc9b63e45db515b7067b0c1ab0a5d5d060f889d1340fd557dbd5"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R20m/T32TPT_20210814T102031_TCI_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:20m"
TCI_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R60m/T32TPT_20210814T102031_TCI_60m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210814T102031_TCI_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3768593
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162089c95fa865f498a0d0fb20c5cdb2450d085e8a0a6182da9d8d4490c3637ad1b2"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R60m/T32TPT_20210814T102031_TCI_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
WVP_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R10m/T32TPT_20210814T102031_WVP_10m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210814T102031_WVP_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 108377197
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620aa7598fdc776a8f801c74a9b06553eef10534ff12c348f06a3187a62bfa3e579"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R10m/T32TPT_20210814T102031_WVP_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
WVP_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R20m/T32TPT_20210814T102031_WVP_20m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210814T102031_WVP_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33456099
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16203e514d713115e55a2c4584bb64831f08ad69f9c03780ecabf9834e5b08f68daf"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R20m/T32TPT_20210814T102031_WVP_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
WVP_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R60m/T32TPT_20210814T102031_WVP_60m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210814T102031_WVP_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3773593
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620513a7a19343031064cfa90c2a13ee77e2a2c704f62e61a9af0592d3e0402303e"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/IMG_DATA/R60m/T32TPT_20210814T102031_WVP_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
thumbnail
- href "https://datahub.creodias.eu/odata/v1/Assets(045a75b8-eaa4-406e-9a79-3161099b215c)/$value"
- type "image/jpeg"
- title "Quicklook"
alternate
s3
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213-ql.jpg"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
auth:refs[] 1 items
- 0 "oidc"
- file:size 42012
- file:checksum "d501101acf2cd861efc071dd0a89a874ee25de"
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213-ql.jpg"
- data_type "uint8"
- proj:code None
proj:shape[] 2 items
- 0 343
- 1 343
- alternate:name "HTTPS"
roles[] 2 items
- 0 "thumbnail"
- 1 "overview"
safe_manifest
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/manifest.safe"
- type "application/xml"
- title "manifest.safe"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(manifest.safe)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 68949
- file:checksum "d50110da77d8433277745a9a04c74074f64f5d"
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/manifest.safe"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
granule_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/MTD_TL.xml"
- type "application/xml"
- title "MTD_TL.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes()/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032094_20210814T102609)/Nodes(MTD_TL.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 547677
- file:checksum "d501208782e8bcc0290d5fa0488641c2a16809ba89bc6ca45ec3ecc0899594b7bd0c9c"
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/GRANULE/L2A_T32TPT_A032094_20210814T102609/MTD_TL.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
inspire_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/INSPIRE.xml"
- type "application/xml"
- title "INSPIRE.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(INSPIRE.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 18684
- file:checksum "d5012026ddd92609dc619a99734ccf68e857ea17c0d3f113d896a00c3e88205c7d35f4"
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/INSPIRE.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
product_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/MTD_MSIL2A.xml"
- type "application/xml"
- title "MTD_MSIL2A.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes(MTD_MSIL2A.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 55100
- file:checksum "d5012027a1f27e6f2b3ca279661f47f62fbd9ac79ec95d4c51b95ea36662e6a77840eb"
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/MTD_MSIL2A.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
datastrip_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/14/S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/DATASTRIP/DS_S2RP_20230213T034213_S20210814T102609/MTD_DS.xml"
- type "application/xml"
- title "MTD_DS.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6c5b44a7-c04b-48e6-a137-32168dc58116)/Nodes(S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE)/Nodes()/Nodes(DATASTRIP)/Nodes(DS_S2RP_20230213T034213_S20210814T102609)/Nodes(MTD_DS.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 24411034
- file:checksum "d501203dc03129c4fb3a48dd7c8d6a5deb65ef71802ac5adac1d55921c0ca5171f9089"
- file:local_path "S2A_MSIL2A_20210814T102031_N0500_R065_T32TPT_20230213T034213.SAFE/DATASTRIP/DS_S2RP_20230213T034213_S20210814T102609/MTD_DS.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
- collection "sentinel-2-l2a"
2
- type "Feature"
- stac_version "1.1.0"
stac_extensions[] 15 items
- 0 "https://stac-extensions.github.io/eo/v2.0.0/schema.json"
- 1 "https://stac-extensions.github.io/raster/v2.0.0/schema.json"
- 2 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 3 "https://stac-extensions.github.io/projection/v2.0.0/schema.json"
- 4 "https://stac-extensions.github.io/grid/v1.1.0/schema.json"
- 5 "https://stac-extensions.github.io/view/v1.0.0/schema.json"
- 6 "https://stac-extensions.github.io/file/v2.1.0/schema.json"
- 7 "https://stac-extensions.github.io/processing/v1.2.0/schema.json"
- 8 "https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json"
- 9 "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json"
- 10 "https://stac-extensions.github.io/authentication/v1.1.0/schema.json"
- 11 "https://stac-extensions.github.io/classification/v2.0.0/schema.json"
- 12 "https://stac-extensions.github.io/product/v0.1.0/schema.json"
- 13 "https://cs-si.github.io/eopf-stac-extension/v1.2.0/schema.json"
- 14 "https://stac-extensions.github.io/storage/v2.0.0/schema.json"
- id "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 12 items
0[] 2 items
- 0 10.314576799706494
- 1 46.965692085066614
1[] 2 items
- 0 10.35253016107382
- 1 47.074666707988605
2[] 2 items
- 0 10.405264599260416
- 1 47.22112861827712
3[] 2 items
- 0 10.45712068213082
- 1 47.36793904976239
4[] 2 items
- 0 10.509898361364984
- 1 47.51456466714176
5[] 2 items
- 0 10.562119170560498
- 1 47.661395226945295
6[] 2 items
- 0 10.615559358936984
- 1 47.80791934389489
7[] 2 items
- 0 10.627605541356008
- 1 47.840672196712916
8[] 2 items
- 0 11.802846682924509
- 1 47.81947440295927
9[] 2 items
- 0 11.751084998620154
- 1 46.83262831925138
10[] 2 items
- 0 10.31188688551243
- 1 46.85818197246455
11[] 2 items
- 0 10.314576799706494
- 1 46.965692085066614
bbox[] 4 items
- 0 10.311887
- 1 46.832628
- 2 11.802847
- 3 47.840672
properties
- gsd 10
- created "2023-03-16T19:21:35.609000Z"
- updated "2024-05-10T03:24:47.475119Z"
- datetime "2021-08-11T10:10:31.024000Z"
- platform "sentinel-2a"
- grid:code "MGRS-32TPT"
- published "2023-03-17T04:28:33.177675Z"
statistics
- water 0.829878
- nodata 8.94069
- dark_area 2.882293
- vegetation 51.834636999999994
- thin_cirrus 0.12103
- cloud_shadow 4.503478
- unclassified 1.837465
- not_vegetated 5.280935
- high_proba_clouds 20.594274
- medium_proba_clouds 11.997671
- saturated_defective 0.0
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 "2021-08-11T10:10:31.024Z"
- product:type "S2MSI2A"
- view:azimuth 104.25641131556739
- constellation "sentinel-2"
- eo:snow_cover 0.12
- eo:cloud_cover 32.71
- start_datetime "2021-08-11T10:10:31.024Z"
- sat:orbit_state "descending"
storage:schemes
cdse-s3
- 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. A Global Service Load Balancer (GSLB) directs the request to either CloudFerro Cloud or OpenTelekom Cloud (OTC) S3 endpoint based on the location of the DNS resolver."
- requester_pays False
creodias-s3
- 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 "GS2A_20210811T101031_032051_N05.00"
- processing:level "L2"
- view:sun_azimuth 152.562472527019
- eopf:datastrip_id "S2A_OPER_MSI_L2A_DS_S2RP_20230212T045253_S20210811T101411_N05.00"
- processing:version "05.00"
- product:timeliness "PT24H"
- sat:absolute_orbit 32051
- sat:relative_orbit 22
- view:sun_elevation 55.2246945522563
- processing:datetime "2023-02-12T04:52:53.000000Z"
- processing:facility "ESA"
- eopf:instrument_mode "INS-NOBS"
- eopf:origin_datetime "2023-03-16T19:21:35.609000Z"
- view:incidence_angle 7.932985428673782
- product:timeliness_category "NRT"
- sat:platform_international_designator "2015-028A"
links[] 5 items
0
- rel "collection"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
1
- rel "parent"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
2
- rel "root"
- href "https://stac.dataspace.copernicus.eu/v1/"
- type "application/json"
- title "cdse-stac"
3
- rel "self"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253"
- type "application/geo+json"
4
- rel "version-history"
- href "https://trace.dataspace.copernicus.eu/api/v1/traces/name/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE.zip"
- type "application/json"
- title "Product history record from the CDSE traceability service"
assets
AOT_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R10m/T32TPT_20210811T101031_AOT_10m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210811T101031_AOT_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 4392200
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620bf6add19cf414d4fe918aafe4402d4329d10bf4556869f150fd11cbbac852c35"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R10m/T32TPT_20210811T101031_AOT_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
AOT_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R20m/T32TPT_20210811T101031_AOT_20m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210811T101031_AOT_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3293374
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162065493f022a9c8e1a8fd09ec040f4cce1e8ec979142c8e54eecb238342d232fdd"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R20m/T32TPT_20210811T101031_AOT_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
AOT_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R60m/T32TPT_20210811T101031_AOT_60m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210811T101031_AOT_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 845660
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620c308840841611179573466789dc97e238603d0311a08783439b892a9a7405906"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R60m/T32TPT_20210811T101031_AOT_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
B01_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R20m/T32TPT_20210811T101031_B01_20m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.443
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210811T101031_B01_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 23379689
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.161560430326
- file:checksum "16202ff5e4656d5d90a878d298170ae1d5f5242c930c0b47abb30d62fbbf56241f20"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R20m/T32TPT_20210811T101031_B01_20m.jp2"
- view:incidence_angle 8.02999636244479
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:upsampled"
- 3 "gsd:20m"
B01_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R60m/T32TPT_20210811T101031_B01_60m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.443
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210811T101031_B01_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3743655
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.161560430326
- file:checksum "16209eef40dc0470e5468af12de202a81bfa22dd71c6cf53ddd39d9e401b54acfd84"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R60m/T32TPT_20210811T101031_B01_60m.jp2"
- view:incidence_angle 8.02999636244479
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B02_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R10m/T32TPT_20210811T101031_B02_10m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210811T101031_B02_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 114963569
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.347155800457
- file:checksum "162084c77d171f0d7a1ed326f81ff5db1053e1347a66a65b39dda4ce62b94fec95e7"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R10m/T32TPT_20210811T101031_B02_10m.jp2"
- view:incidence_angle 7.82494594645253
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B02_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R20m/T32TPT_20210811T101031_B02_20m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210811T101031_B02_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33700531
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.347155800457
- file:checksum "1620e3cb961ddde2aa739360f1cc9704763f707ebf51ddab5af806d72dbcdcce7504"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R20m/T32TPT_20210811T101031_B02_20m.jp2"
- view:incidence_angle 7.82494594645253
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B02_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R60m/T32TPT_20210811T101031_B02_60m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210811T101031_B02_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3752872
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.347155800457
- file:checksum "1620a62d12aee327b31133a83af396b4a387e551950980f058646f48a1045b9580e5"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R60m/T32TPT_20210811T101031_B02_60m.jp2"
- view:incidence_angle 7.82494594645253
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B03_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R10m/T32TPT_20210811T101031_B03_10m.jp2"
- type "image/jp2"
- title "Green (band 3) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210811T101031_B03_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 117235949
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.305967968219
- file:checksum "16203e877dcef796362a51f744a6bfbc8d3beac154c0cd699474587f7235331eeb36"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R10m/T32TPT_20210811T101031_B03_10m.jp2"
- view:incidence_angle 7.85572810703344
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B03_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R20m/T32TPT_20210811T101031_B03_20m.jp2"
- type "image/jp2"
- title "Green (band 3) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210811T101031_B03_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33811583
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.305967968219
- file:checksum "1620695c8b7aae7b8dce3065414f15e9406216b566b1d78f5ab808f638625aba2476"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R20m/T32TPT_20210811T101031_B03_20m.jp2"
- view:incidence_angle 7.85572810703344
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B03_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R60m/T32TPT_20210811T101031_B03_60m.jp2"
- type "image/jp2"
- title "Green (band 3) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210811T101031_B03_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3752158
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.305967968219
- file:checksum "16206083161a35683d469dae5ba86283ef9fffe06c515520d205910e295f71eac44e"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R60m/T32TPT_20210811T101031_B03_60m.jp2"
- view:incidence_angle 7.85572810703344
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B04_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R10m/T32TPT_20210811T101031_B04_10m.jp2"
- type "image/jp2"
- title "Red (band 4) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210811T101031_B04_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 114669591
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.252568329029
- file:checksum "162083c1f57a368fd2d5652351057bda43d2876e8ed7f8812386c3131e614c7a8e54"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R10m/T32TPT_20210811T101031_B04_10m.jp2"
- view:incidence_angle 7.8941147234698
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B04_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R20m/T32TPT_20210811T101031_B04_20m.jp2"
- type "image/jp2"
- title "Red (band 4) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210811T101031_B04_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33899065
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.252568329029
- file:checksum "1620cfbf4d7391d6dccfd14025f2d409742a513f8ac0fe5f17615bd3ad6d0e780c67"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R20m/T32TPT_20210811T101031_B04_20m.jp2"
- view:incidence_angle 7.8941147234698
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B04_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R60m/T32TPT_20210811T101031_B04_60m.jp2"
- type "image/jp2"
- title "Red (band 4) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210811T101031_B04_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3753593
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.252568329029
- file:checksum "162025224a478141489cb11d2b35ef0cef18a8ceecbe612dd65123ff9376db4d9670"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R60m/T32TPT_20210811T101031_B04_60m.jp2"
- view:incidence_angle 7.8941147234698
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B05_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R20m/T32TPT_20210811T101031_B05_20m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210811T101031_B05_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33821584
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.239997552466
- file:checksum "16204126900cd1bee5e5ae8518a9dcc83d641aa81f57f23d03f2b6dd431f7dc98707"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R20m/T32TPT_20210811T101031_B05_20m.jp2"
- view:incidence_angle 7.91663922285657
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B05_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R60m/T32TPT_20210811T101031_B05_60m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210811T101031_B05_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3754373
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.239997552466
- file:checksum "162089dbcdbcc405d9e4da6f61bebe69279f23b508c065fa47e27c6b78faba5cc73e"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R60m/T32TPT_20210811T101031_B05_60m.jp2"
- view:incidence_angle 7.91663922285657
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B06_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R20m/T32TPT_20210811T101031_B06_20m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 20m"
- description "S3 storage provided by CloudFerro Cloud and OpenTelekom Cloud (OTC). Use endpoint URL `https://eodata.dataspace.copernicus.eu`."
bands[] 1 items
0
- eo:center_wavelength 0.741
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210811T101031_B06_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33792948
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.225705565622
- file:checksum "1620baf74a716a61107aefcc423aa5096b45607a1b9bdaf9f81e6a8129facb68cbf9"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R20m/T32TPT_20210811T101031_B06_20m.jp2"
- view:incidence_angle 7.94561575684216
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B06_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R60m/T32TPT_20210811T101031_B06_60m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.741
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210811T101031_B06_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3739259
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.225705565622
- file:checksum "1620becb0a48e8a55f661c414e985b23b851457513589a89ebcb9cdd94d8a615ba06"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R60m/T32TPT_20210811T101031_B06_60m.jp2"
- view:incidence_angle 7.94561575684216
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B07_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R20m/T32TPT_20210811T101031_B07_20m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210811T101031_B07_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33784537
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.210195123469
- file:checksum "1620e2958275bea95ef92e39c983ef26001597a82a6bc8b8ce8f2b31bf198423bbce"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R20m/T32TPT_20210811T101031_B07_20m.jp2"
- view:incidence_angle 7.9734827250164
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B07_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R60m/T32TPT_20210811T101031_B07_60m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210811T101031_B07_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3773711
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.210195123469
- file:checksum "1620c397595bd5c07e608b7ba6d0cd2c785b2d92107211c90e0044428c62ce0b9ee9"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R60m/T32TPT_20210811T101031_B07_60m.jp2"
- view:incidence_angle 7.9734827250164
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B08_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R10m/T32TPT_20210811T101031_B08_10m.jp2"
- type "image/jp2"
- title "NIR 1 (band 8) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.454
- name "B08"
- eo:common_name "nir"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210811T101031_B08_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 133622645
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.322748443549
- file:checksum "1620bd8f800d5ce527818a4829ef2e3e1c1054db95f8143715a2ca5943607b295da6"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R10m/T32TPT_20210811T101031_B08_10m.jp2"
- view:incidence_angle 7.84101092130199
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B09_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R60m/T32TPT_20210811T101031_B09_60m.jp2"
- type "image/jp2"
- title "NIR 3 (band 9) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.945
- eo:full_width_half_max 0.479
- name "B09"
- eo:common_name "nir09"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210811T101031_B09_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3741823
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.182015145887
- file:checksum "16204345503b3765570bae67f63aae2539c104e65a848ebee8cf3a4184c5737bb693"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R60m/T32TPT_20210811T101031_B09_60m.jp2"
- view:incidence_angle 8.07400077610696
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B11_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R20m/T32TPT_20210811T101031_B11_20m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 20m"
bands[] 1 items
0
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210811T101031_B11_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33744947
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.318861624706
- file:checksum "1620d2c6c577e65e4514f55eafb11d4d2d831c1ff14040d4a761a80a43edb36495e2"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R20m/T32TPT_20210811T101031_B11_20m.jp2"
- view:incidence_angle 7.91663121731855
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B11_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R60m/T32TPT_20210811T101031_B11_60m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 60m"
bands[] 1 items
0
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210811T101031_B11_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3753604
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.318861624706
- file:checksum "1620ef4e3a1775a7a7950eb99dd49cd4498381407cc3007b59d349878ede2f4cd343"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R60m/T32TPT_20210811T101031_B11_60m.jp2"
- view:incidence_angle 7.91663121731855
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B12_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R20m/T32TPT_20210811T101031_B12_20m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 20m"
bands[] 1 items
0
- eo:center_wavelength 2.202
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210811T101031_B12_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33597755
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.257848952739
- file:checksum "1620395a41a041139fca2bb8911034a7e95fad9a294876aa7e298b75a83d52a8d332"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R20m/T32TPT_20210811T101031_B12_20m.jp2"
- view:incidence_angle 7.99056252628106
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B12_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R60m/T32TPT_20210811T101031_B12_60m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 60m"
bands[] 1 items
0
- eo:center_wavelength 2.202
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210811T101031_B12_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3749989
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.257848952739
- file:checksum "16206d6c1f9279a3fcaada9db2f97f4656ba25c39856dd8c56c95414fe5023df97e1"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R60m/T32TPT_20210811T101031_B12_60m.jp2"
- view:incidence_angle 7.99056252628106
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B8A_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R20m/T32TPT_20210811T101031_B8A_20m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210811T101031_B8A_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33854666
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.15410100965
- file:checksum "162070589683bbb4bbeb57166bd3ee3e0700d7ec022d5995a81e28dcc1ea1b580f70"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R20m/T32TPT_20210811T101031_B8A_20m.jp2"
- view:incidence_angle 8.0002509000433
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B8A_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R60m/T32TPT_20210811T101031_B8A_60m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210811T101031_B8A_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3770976
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.15410100965
- file:checksum "1620a141c954c79750eb09d94ba103accb20aff5348b01590922aca5d1590ffaf9c6"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R60m/T32TPT_20210811T101031_B8A_60m.jp2"
- view:incidence_angle 8.0002509000433
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
Product
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/$value"
- type "application/zip"
- title "Zipped product"
auth:refs[] 1 items
- 0 "oidc"
- file:size 1158628039
- storage:refs "𒍟※"
- file:checksum "d50110dd213a288d071b0d03d398ff7d10e989"
- alternate:name "HTTPS"
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE.zip"
roles[] 3 items
- 0 "data"
- 1 "metadata"
- 2 "archive"
SCL_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R20m/T32TPT_20210811T101031_SCL_20m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210811T101031_SCL_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3174389
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620628ad244eebcaa79683b5d48b38050caf164e59123490988a9485581098cec17"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R20m/T32TPT_20210811T101031_SCL_20m.jp2"
classification:classes[] 12 items
0
- percentage 8.94069
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
- percentage 0.0
2
- percentage 2.882293
- name "dark_area_pixels"
- value 2
3
- percentage 4.503478
- name "cloud_shadows"
- value 3
4
- percentage 51.834636999999994
- name "vegetation"
- value 4
5
- percentage 5.280935
- name "not_vegetated"
- value 5
6
- percentage 0.829878
- name "water"
- value 6
7
- percentage 1.837465
- name "unclassified"
- value 7
8
- percentage 11.997671
- name "cloud_medium_probability"
- value 8
9
- percentage 20.594274
- name "cloud_high_probability"
- value 9
10
- percentage 0.12103
- name "thin_cirrus"
- value 10
11
- percentage 0.118337
- name "snow"
- value 11
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "data"
- 1 "sampling:original"
- 2 "gsd:20m"
SCL_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R60m/T32TPT_20210811T101031_SCL_60m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210811T101031_SCL_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 748098
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162026ac89ea56e6b703d1ec7c8210b67de36eddb56c7a63e434a001f70a687114e4"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R60m/T32TPT_20210811T101031_SCL_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
classification:classes[] 12 items
0
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
2
- name "dark_area_pixels"
- value 2
3
- name "cloud_shadows"
- value 3
4
- name "vegetation"
- value 4
5
- name "not_vegetated"
- value 5
6
- name "water"
- value 6
7
- name "unclassified"
- value 7
8
- name "cloud_medium_probability"
- value 8
9
- name "cloud_high_probability"
- value 9
10
- name "thin_cirrus"
- value 10
11
- name "snow"
- value 11
roles[] 3 items
- 0 "data"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
TCI_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R10m/T32TPT_20210811T101031_TCI_10m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210811T101031_TCI_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 133026055
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16201ae318ff57c7b7637c902ed370bffce61efa803fbce21979b20245e6ae1420ef"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R10m/T32TPT_20210811T101031_TCI_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 10980
- 1 10980
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:original"
- 2 "gsd:10m"
TCI_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R20m/T32TPT_20210811T101031_TCI_20m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210811T101031_TCI_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33779555
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620d7b52a928b9fda311b7933c0c311552fbf3c5b0f39fe16096825e9ab57244119"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R20m/T32TPT_20210811T101031_TCI_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:20m"
TCI_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R60m/T32TPT_20210811T101031_TCI_60m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210811T101031_TCI_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3741696
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16204bb2b51d134df4cc7d7c3486a739958096350d14d3943b28ed994dd90262d825"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R60m/T32TPT_20210811T101031_TCI_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
WVP_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R10m/T32TPT_20210811T101031_WVP_10m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210811T101031_WVP_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 66924874
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16207f7c786082d4d8fd66ad5ee8824f931f2994e54fab4c091e469e6a1314425812"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R10m/T32TPT_20210811T101031_WVP_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
WVP_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R20m/T32TPT_20210811T101031_WVP_20m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210811T101031_WVP_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 21768174
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162012ba2667b33cf28231389c838d8a0f42c7ab92dad8d9b45dbbd030ec7071775f"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R20m/T32TPT_20210811T101031_WVP_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
WVP_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R60m/T32TPT_20210811T101031_WVP_60m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210811T101031_WVP_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3362625
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16203b91e73e9223a0a9ebf1b5c5e4ced24d7c1ccf55956560289fd10e6c0c1ef4d1"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/IMG_DATA/R60m/T32TPT_20210811T101031_WVP_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
thumbnail
- href "https://datahub.creodias.eu/odata/v1/Assets(075a120a-eb88-40a8-84f8-4c92139c9f83)/$value"
- type "image/jpeg"
- title "Quicklook"
alternate
s3
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253-ql.jpg"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
auth:refs[] 1 items
- 0 "oidc"
- file:size 47481
- file:checksum "d50110b29edc837c957435898605c8219e9645"
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253-ql.jpg"
- data_type "uint8"
- proj:code None
proj:shape[] 2 items
- 0 343
- 1 343
- alternate:name "HTTPS"
roles[] 2 items
- 0 "thumbnail"
- 1 "overview"
safe_manifest
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/manifest.safe"
- type "application/xml"
- title "manifest.safe"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(manifest.safe)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 69172
- file:checksum "d50110f593954ebb41d6795954b1b9e01eb377"
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/manifest.safe"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
granule_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/MTD_TL.xml"
- type "application/xml"
- title "MTD_TL.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes()/Nodes(GRANULE)/Nodes(L2A_T32TPT_A032051_20210811T101411)/Nodes(MTD_TL.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 463426
- file:checksum "d50120d58b465c0b4fb185150bf6c1076d97e19e97c3674ce817eaafd8f1de50a1107d"
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/GRANULE/L2A_T32TPT_A032051_20210811T101411/MTD_TL.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
inspire_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/INSPIRE.xml"
- type "application/xml"
- title "INSPIRE.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(INSPIRE.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 18909
- file:checksum "d50120dab66f652e19b13cd66eb871e800fc0488a0a0a40d7597f3e2eb13b72fa1eec9"
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/INSPIRE.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
product_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/MTD_MSIL2A.xml"
- type "application/xml"
- title "MTD_MSIL2A.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes(MTD_MSIL2A.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 55325
- file:checksum "d50120a2f7f4cc5067f67f088cf80d8768b16a0ab474a14b6e919fe2f959dfd61d744a"
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/MTD_MSIL2A.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
datastrip_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/11/S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/DATASTRIP/DS_S2RP_20230212T045253_S20210811T101411/MTD_DS.xml"
- type "application/xml"
- title "MTD_DS.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(69d89924-10f9-4dbf-b16c-ffdb7dc0fd15)/Nodes(S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE)/Nodes()/Nodes(DATASTRIP)/Nodes(DS_S2RP_20230212T045253_S20210811T101411)/Nodes(MTD_DS.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 24319497
- file:checksum "d501207049c0a88a6e33780f5d00281a0825341df96c0e2229f6f0ac93bcf77080098b"
- file:local_path "S2A_MSIL2A_20210811T101031_N0500_R022_T32TPT_20230212T045253.SAFE/DATASTRIP/DS_S2RP_20230212T045253_S20210811T101411/MTD_DS.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
- collection "sentinel-2-l2a"
3
- type "Feature"
- stac_version "1.1.0"
stac_extensions[] 15 items
- 0 "https://stac-extensions.github.io/eo/v2.0.0/schema.json"
- 1 "https://stac-extensions.github.io/raster/v2.0.0/schema.json"
- 2 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 3 "https://stac-extensions.github.io/projection/v2.0.0/schema.json"
- 4 "https://stac-extensions.github.io/grid/v1.1.0/schema.json"
- 5 "https://stac-extensions.github.io/view/v1.0.0/schema.json"
- 6 "https://stac-extensions.github.io/file/v2.1.0/schema.json"
- 7 "https://stac-extensions.github.io/processing/v1.2.0/schema.json"
- 8 "https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json"
- 9 "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json"
- 10 "https://stac-extensions.github.io/authentication/v1.1.0/schema.json"
- 11 "https://stac-extensions.github.io/classification/v2.0.0/schema.json"
- 12 "https://stac-extensions.github.io/product/v0.1.0/schema.json"
- 13 "https://cs-si.github.io/eopf-stac-extension/v1.2.0/schema.json"
- 14 "https://stac-extensions.github.io/storage/v2.0.0/schema.json"
- id "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 6 items
0[] 2 items
- 0 11.752119350944087
- 1 46.85234843759308
1[] 2 items
- 0 11.743719464704945
- 1 46.832759097840984
2[] 2 items
- 0 10.31188688551243
- 1 46.85818197246455
3[] 2 items
- 0 10.33660021997006
- 1 47.84592105208886
4[] 2 items
- 0 11.802846682924509
- 1 47.81947440295927
5[] 2 items
- 0 11.752119350944087
- 1 46.85234843759308
bbox[] 4 items
- 0 10.311887
- 1 46.832759
- 2 11.802847
- 3 47.845921
properties
- gsd 10
- created "2023-03-19T09:31:35.419000Z"
- updated "2024-04-25T10:58:42.305083Z"
- datetime "2021-08-09T10:15:59.024000Z"
- platform "sentinel-2b"
- grid:code "MGRS-32TPT"
- published "2023-03-19T11:31:40.196261Z"
statistics
- water 0.479668
- nodata 0.010703
- dark_area 3.974321
- vegetation 51.13798400000001
- thin_cirrus 11.051239
- cloud_shadow 1.4114139999999997
- unclassified 1.271814
- not_vegetated 8.63854
- high_proba_clouds 10.402296
- medium_proba_clouds 10.486924
- saturated_defective 0.0
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 "2021-08-09T10:15:59.024Z"
- product:type "S2MSI2A"
- view:azimuth 285.74770639701376
- constellation "sentinel-2"
- eo:snow_cover 1.15
- eo:cloud_cover 31.94
- start_datetime "2021-08-09T10:15:59.024Z"
- sat:orbit_state "descending"
storage:schemes
cdse-s3
- 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. A Global Service Load Balancer (GSLB) directs the request to either CloudFerro Cloud or OpenTelekom Cloud (OTC) S3 endpoint based on the location of the DNS resolver."
- requester_pays False
creodias-s3
- 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 "GS2B_20210809T101559_023114_N05.00"
- processing:level "L2"
- view:sun_azimuth 156.185582540693
- eopf:datastrip_id "S2B_OPER_MSI_L2A_DS_S2RP_20230212T135436_S20210809T102637_N05.00"
- processing:version "05.00"
- product:timeliness "PT24H"
- sat:absolute_orbit 23114
- sat:relative_orbit 65
- view:sun_elevation 56.4894513893576
- processing:datetime "2023-02-12T13:54:36.000000Z"
- processing:facility "ESA"
- eopf:instrument_mode "INS-NOBS"
- eopf:origin_datetime "2023-03-19T09:31:35.419000Z"
- view:incidence_angle 6.648390101329573
- product:timeliness_category "NRT"
- sat:platform_international_designator "2017-013A"
links[] 5 items
0
- rel "collection"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
1
- rel "parent"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
2
- rel "root"
- href "https://stac.dataspace.copernicus.eu/v1/"
- type "application/json"
- title "cdse-stac"
3
- rel "self"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436"
- type "application/geo+json"
4
- rel "version-history"
- href "https://trace.dataspace.copernicus.eu/api/v1/traces/name/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE.zip"
- type "application/json"
- title "Product history record from the CDSE traceability service"
assets
AOT_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R10m/T32TPT_20210809T101559_AOT_10m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210809T101559_AOT_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 4568060
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16203944ff49bd1a42d47bb5df5828aac3b303decb4a75810729ccd2bbddb66ed8f9"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R10m/T32TPT_20210809T101559_AOT_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
AOT_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R20m/T32TPT_20210809T101559_AOT_20m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210809T101559_AOT_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3454828
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620a21f29ea75423b9d8ed9590d589c6adc6f17a8d4480c7992b397798d6cf0543c"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R20m/T32TPT_20210809T101559_AOT_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
AOT_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R60m/T32TPT_20210809T101559_AOT_60m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210809T101559_AOT_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 894664
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16202495e64ed2cb46623f3a186c294fd1d767bb316e63946783021b9fd60d2d0edd"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R60m/T32TPT_20210809T101559_AOT_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
B01_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R20m/T32TPT_20210809T101559_B01_20m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.442
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210809T101559_B01_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 23058331
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.357468209011
- file:checksum "1620018505bdb0b7806ed383b91b812d21b2c8dda17c8bb8afe9d057518242d5da38"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R20m/T32TPT_20210809T101559_B01_20m.jp2"
- view:incidence_angle 6.76777777147024
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:upsampled"
- 3 "gsd:20m"
B01_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R60m/T32TPT_20210809T101559_B01_60m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.442
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210809T101559_B01_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3749507
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.357468209011
- file:checksum "16209c3457899cb6d68e8157e2f8074bed533983bc77c858444a3fc76d202df9bccb"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R60m/T32TPT_20210809T101559_B01_60m.jp2"
- view:incidence_angle 6.76777777147024
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B02_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R10m/T32TPT_20210809T101559_B02_10m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210809T101559_B02_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 120315753
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 284.824952651261
- file:checksum "1620d7992c1e6460348260b6f7961d37c578f03369dd4442bfd05d84594eaf81ec46"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R10m/T32TPT_20210809T101559_B02_10m.jp2"
- view:incidence_angle 6.51503417789216
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B02_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R20m/T32TPT_20210809T101559_B02_20m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210809T101559_B02_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33810607
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 284.824952651261
- file:checksum "1620b7df1a1e0817fc96f4dead64769aa4f92d6827bd95a6fcdf2aee8849e0fc75fb"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R20m/T32TPT_20210809T101559_B02_20m.jp2"
- view:incidence_angle 6.51503417789216
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B02_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R60m/T32TPT_20210809T101559_B02_60m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210809T101559_B02_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3746419
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 284.824952651261
- file:checksum "1620a9f86c0eff98131266e94ca4368efe4d149f4f0c0f917b466cc81b533dd44488"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R60m/T32TPT_20210809T101559_B02_60m.jp2"
- view:incidence_angle 6.51503417789216
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B03_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R10m/T32TPT_20210809T101559_B03_10m.jp2"
- type "image/jp2"
- title "Green (band 3) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210809T101559_B03_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 123153441
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.192199853598
- file:checksum "1620401d4d1dc1dfc5ab1ca6ac22ac9d0f30999f6eacd80fa7344cf59fdb0de60d08"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R10m/T32TPT_20210809T101559_B03_10m.jp2"
- view:incidence_angle 6.54606691599577
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B03_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R20m/T32TPT_20210809T101559_B03_20m.jp2"
- type "image/jp2"
- title "Green (band 3) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210809T101559_B03_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33916471
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.192199853598
- file:checksum "1620ce8dfcdc829d0c371fc4a063a0ddd4d89d0dda1dc215d993e6052c8623376d15"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R20m/T32TPT_20210809T101559_B03_20m.jp2"
- view:incidence_angle 6.54606691599577
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B03_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R60m/T32TPT_20210809T101559_B03_60m.jp2"
- type "image/jp2"
- title "Green (band 3) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210809T101559_B03_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3762755
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.192199853598
- file:checksum "16203ed98bef89f220bffec680358eb457ebb1d6944ec76d02f2725502ec556022e0"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R60m/T32TPT_20210809T101559_B03_60m.jp2"
- view:incidence_angle 6.54606691599577
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B04_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R10m/T32TPT_20210809T101559_B04_10m.jp2"
- type "image/jp2"
- title "Red (band 4) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210809T101559_B04_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 119337956
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.535289681905
- file:checksum "1620252c159fcb886baa63e648d35d2a88adcad8d44cef779d562c76e7aff2eb808f"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R10m/T32TPT_20210809T101559_B04_10m.jp2"
- view:incidence_angle 6.59168533391959
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B04_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R20m/T32TPT_20210809T101559_B04_20m.jp2"
- type "image/jp2"
- title "Red (band 4) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210809T101559_B04_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33839047
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.535289681905
- file:checksum "1620270ec0eeb44df755a33c1800a6877b4c5d7dd61b0c02a239d36b5e96beeb313d"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R20m/T32TPT_20210809T101559_B04_20m.jp2"
- view:incidence_angle 6.59168533391959
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B04_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R60m/T32TPT_20210809T101559_B04_60m.jp2"
- type "image/jp2"
- title "Red (band 4) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210809T101559_B04_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3771800
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.535289681905
- file:checksum "1620e880b63e42f39e9ab5a00ec91ffae1bdd279f30e8712aa29f37972040a3f3af5"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R60m/T32TPT_20210809T101559_B04_60m.jp2"
- view:incidence_angle 6.59168533391959
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B05_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R20m/T32TPT_20210809T101559_B05_20m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210809T101559_B05_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33858054
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.710079714692
- file:checksum "1620ab376456078c6f30ab5799e4947ee206a7ac3cd8810a946230abf1e10e721649"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R20m/T32TPT_20210809T101559_B05_20m.jp2"
- view:incidence_angle 6.62137800721015
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B05_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R60m/T32TPT_20210809T101559_B05_60m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210809T101559_B05_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3753139
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.710079714692
- file:checksum "1620e4765c28a237419b032058774a5d63104067f33e5b7a69d55dd3f493745a8df2"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R60m/T32TPT_20210809T101559_B05_60m.jp2"
- view:incidence_angle 6.62137800721015
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B06_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R20m/T32TPT_20210809T101559_B06_20m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 20m"
- description "S3 storage provided by CloudFerro Cloud and OpenTelekom Cloud (OTC). Use endpoint URL `https://eodata.dataspace.copernicus.eu`."
bands[] 1 items
0
- eo:center_wavelength 0.739
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210809T101559_B06_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33886355
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.903872951732
- file:checksum "16205dded21a225a40e616a33aa41107337f199c0c02664140492e64a29a728008c3"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R20m/T32TPT_20210809T101559_B06_20m.jp2"
- view:incidence_angle 6.65446145782107
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B06_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R60m/T32TPT_20210809T101559_B06_60m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.739
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210809T101559_B06_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3757470
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.903872951732
- file:checksum "16203a8b9c5825f71eea9a1830bb3ad2e663eece0998a0356095d65a65186933727b"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R60m/T32TPT_20210809T101559_B06_60m.jp2"
- view:incidence_angle 6.65446145782107
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B07_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R20m/T32TPT_20210809T101559_B07_20m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.78
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210809T101559_B07_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33898376
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.078108725841
- file:checksum "1620a3521452563ca813f26822d18e4be7d4359d2d85c214813fd534cd8c5ab86fea"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R20m/T32TPT_20210809T101559_B07_20m.jp2"
- view:incidence_angle 6.69083276672339
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B07_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R60m/T32TPT_20210809T101559_B07_60m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.78
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210809T101559_B07_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3743203
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.078108725841
- file:checksum "1620047ee8a3cf140aee8826c7fcd7935be5e55f88433430773ddecebdee0367d32c"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R60m/T32TPT_20210809T101559_B07_60m.jp2"
- view:incidence_angle 6.69083276672339
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B08_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R10m/T32TPT_20210809T101559_B08_10m.jp2"
- type "image/jp2"
- title "NIR 1 (band 8) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.454
- name "B08"
- eo:common_name "nir"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210809T101559_B08_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135071150
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.006610706774
- file:checksum "16205de3037ed3aa5e1e611d6405d7dfb5cf3836dcdc5066efd138091d1c5220dd13"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R10m/T32TPT_20210809T101559_B08_10m.jp2"
- view:incidence_angle 6.53221001403591
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B09_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R60m/T32TPT_20210809T101559_B09_60m.jp2"
- type "image/jp2"
- title "NIR 3 (band 9) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.943
- eo:full_width_half_max 0.479
- name "B09"
- eo:common_name "nir09"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210809T101559_B09_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3734935
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.532442604913
- file:checksum "162086effb0c7986f5ada5b654342906a7c60f21fdf2f3b5b66ed9e32f1490259015"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R60m/T32TPT_20210809T101559_B09_60m.jp2"
- view:incidence_angle 6.81453606227738
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B11_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R20m/T32TPT_20210809T101559_B11_20m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 20m"
bands[] 1 items
0
- eo:center_wavelength 1.61
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210809T101559_B11_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33852093
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.81414882564
- file:checksum "16208e962824c9302b3ef4540183a66b64b32e008c96fa503885c273669703b3d7ab"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R20m/T32TPT_20210809T101559_B11_20m.jp2"
- view:incidence_angle 6.65398508888301
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B11_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R60m/T32TPT_20210809T101559_B11_60m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 60m"
bands[] 1 items
0
- eo:center_wavelength 1.61
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210809T101559_B11_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3772217
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.81414882564
- file:checksum "162082794827eb8a34e014539aa99b515fc816e9ecb0d746aa6efefb12a6bce32fe6"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R60m/T32TPT_20210809T101559_B11_60m.jp2"
- view:incidence_angle 6.65398508888301
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B12_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R20m/T32TPT_20210809T101559_B12_20m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 20m"
bands[] 1 items
0
- eo:center_wavelength 2.186
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210809T101559_B12_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33868119
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.186083972762
- file:checksum "162091388639e14224747dbd602c3995952501e627adf58070e8af72a3810df1a57d"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R20m/T32TPT_20210809T101559_B12_20m.jp2"
- view:incidence_angle 6.73423455775614
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B12_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R60m/T32TPT_20210809T101559_B12_60m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 60m"
bands[] 1 items
0
- eo:center_wavelength 2.186
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210809T101559_B12_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3755508
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.186083972762
- file:checksum "16208e210cd4a07d12139dcff38ec38a45b8900323d25825c1dcda84014ab94dc074"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R60m/T32TPT_20210809T101559_B12_60m.jp2"
- view:incidence_angle 6.73423455775614
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B8A_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R20m/T32TPT_20210809T101559_B8A_20m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.864
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210809T101559_B8A_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33889761
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.244820635428
- file:checksum "1620d1b210941c5cf0ff1aa4f96ab4cb2b3ec785c80d6992e10d2c054f49a75c274e"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R20m/T32TPT_20210809T101559_B8A_20m.jp2"
- view:incidence_angle 6.72473675765024
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B8A_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R60m/T32TPT_20210809T101559_B8A_60m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.864
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210809T101559_B8A_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3748479
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.244820635428
- file:checksum "16202e9c3a236cffb5a400ede6c300bd367bfeb8d877d09b9afa28ca7c198cab7116"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R60m/T32TPT_20210809T101559_B8A_60m.jp2"
- view:incidence_angle 6.72473675765024
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
Product
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/$value"
- type "application/zip"
- title "Zipped product"
auth:refs[] 1 items
- 0 "oidc"
- file:size 1189425463
- storage:refs "𒍟※"
- file:checksum "d50110795b66439a73cd5a2d924b1eb7a8c45a"
- alternate:name "HTTPS"
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE.zip"
roles[] 3 items
- 0 "data"
- 1 "metadata"
- 2 "archive"
SCL_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R20m/T32TPT_20210809T101559_SCL_20m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210809T101559_SCL_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3199746
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620c5edd18af68db06571a41c501ca33f6aa7a0b340386600276423e8b8b2ccab25"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R20m/T32TPT_20210809T101559_SCL_20m.jp2"
classification:classes[] 12 items
0
- percentage 0.010703
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
- percentage 0.0
2
- percentage 3.974321
- name "dark_area_pixels"
- value 2
3
- percentage 1.4114139999999997
- name "cloud_shadows"
- value 3
4
- percentage 51.13798400000001
- name "vegetation"
- value 4
5
- percentage 8.63854
- name "not_vegetated"
- value 5
6
- percentage 0.479668
- name "water"
- value 6
7
- percentage 1.271814
- name "unclassified"
- value 7
8
- percentage 10.486924
- name "cloud_medium_probability"
- value 8
9
- percentage 10.402296
- name "cloud_high_probability"
- value 9
10
- percentage 11.051239
- name "thin_cirrus"
- value 10
11
- percentage 1.145802
- name "snow"
- value 11
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "data"
- 1 "sampling:original"
- 2 "gsd:20m"
SCL_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R60m/T32TPT_20210809T101559_SCL_60m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210809T101559_SCL_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 773917
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16204c8b4c1773fdc90ec2dc79d0f0e485714f188f67d065621ab4471c947b9d914b"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R60m/T32TPT_20210809T101559_SCL_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
classification:classes[] 12 items
0
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
2
- name "dark_area_pixels"
- value 2
3
- name "cloud_shadows"
- value 3
4
- name "vegetation"
- value 4
5
- name "not_vegetated"
- value 5
6
- name "water"
- value 6
7
- name "unclassified"
- value 7
8
- name "cloud_medium_probability"
- value 8
9
- name "cloud_high_probability"
- value 9
10
- name "thin_cirrus"
- value 10
11
- name "snow"
- value 11
roles[] 3 items
- 0 "data"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
TCI_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R10m/T32TPT_20210809T101559_TCI_10m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210809T101559_TCI_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135461007
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162030b3101cd4aee7a292a38baef0a58eb3c757d41f4b6d5257cfcf4244bacade50"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R10m/T32TPT_20210809T101559_TCI_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 10980
- 1 10980
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:original"
- 2 "gsd:10m"
TCI_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R20m/T32TPT_20210809T101559_TCI_20m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210809T101559_TCI_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33807626
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620f994e85a4bf10ac5b97231bf0d9f415a3ed36bb9f6e2c163d7b5f78aa0070021"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R20m/T32TPT_20210809T101559_TCI_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:20m"
TCI_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R60m/T32TPT_20210809T101559_TCI_60m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210809T101559_TCI_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3746744
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16202a29aaaf27382a389092c03aff076ae57da282b9bbf649fe1d619069eca599bb"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R60m/T32TPT_20210809T101559_TCI_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
WVP_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R10m/T32TPT_20210809T101559_WVP_10m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210809T101559_WVP_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 75310646
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620d7ad00cd56a9645023deb8d5074ce26e4e04bc7471eedb1ebbccdc1fb3f94dbd"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R10m/T32TPT_20210809T101559_WVP_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
WVP_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R20m/T32TPT_20210809T101559_WVP_20m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210809T101559_WVP_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 24092254
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16209c134de330d048c11e3ac1be1eebd1edef409354f0338312a4a5653b609335be"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R20m/T32TPT_20210809T101559_WVP_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
WVP_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R60m/T32TPT_20210809T101559_WVP_60m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210809T101559_WVP_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3553685
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16205443b6c508957c8307714553976e4d21cfba7bbbf9fbb335dd5f26164558c49f"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/IMG_DATA/R60m/T32TPT_20210809T101559_WVP_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
thumbnail
- href "https://datahub.creodias.eu/odata/v1/Assets(c02e8598-98c5-4673-86bb-2f291f6be8bf)/$value"
- type "image/jpeg"
- title "Quicklook"
alternate
s3
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436-ql.jpg"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
auth:refs[] 1 items
- 0 "oidc"
- file:size 44731
- file:checksum "d50110f170fdeea2b672767340d4e9382449ca"
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436-ql.jpg"
- data_type "uint8"
- proj:code None
proj:shape[] 2 items
- 0 343
- 1 343
- alternate:name "HTTPS"
roles[] 2 items
- 0 "thumbnail"
- 1 "overview"
safe_manifest
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/manifest.safe"
- type "application/xml"
- title "manifest.safe"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(manifest.safe)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 68948
- file:checksum "d50110fc7a92b99bfe9917df27f6527b0d2401"
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/manifest.safe"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
granule_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/MTD_TL.xml"
- type "application/xml"
- title "MTD_TL.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes()/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023114_20210809T102637)/Nodes(MTD_TL.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 547703
- file:checksum "d50120336f24e62877460ec0d5e2649f8abc53a4f795dc9230fc74957d3f99e183b4c4"
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/GRANULE/L2A_T32TPT_A023114_20210809T102637/MTD_TL.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
inspire_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/INSPIRE.xml"
- type "application/xml"
- title "INSPIRE.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(INSPIRE.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 18684
- file:checksum "d50120de5fdaa927fa875682b8dab759caf08f2376f81aac15687bc7dfa172bb733d06"
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/INSPIRE.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
product_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/MTD_MSIL2A.xml"
- type "application/xml"
- title "MTD_MSIL2A.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes(MTD_MSIL2A.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 54983
- file:checksum "d501203fb7ad64ad781fac4f3883faffba4af9a4a7c6d618480cce61de13d15e2dc758"
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/MTD_MSIL2A.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
datastrip_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/09/S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/DATASTRIP/DS_S2RP_20230212T135436_S20210809T102637/MTD_DS.xml"
- type "application/xml"
- title "MTD_DS.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(bac0b86a-a6ca-45e6-845c-5d5a32dd5b3c)/Nodes(S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE)/Nodes()/Nodes(DATASTRIP)/Nodes(DS_S2RP_20230212T135436_S20210809T102637)/Nodes(MTD_DS.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 24236221
- file:checksum "d50120ea204d3c943565a609f68ef09f30a07ac1d56662d9bae1c3b0fa4429c57cc9b5"
- file:local_path "S2B_MSIL2A_20210809T101559_N0500_R065_T32TPT_20230212T135436.SAFE/DATASTRIP/DS_S2RP_20230212T135436_S20210809T102637/MTD_DS.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
- collection "sentinel-2-l2a"
4
- type "Feature"
- stac_version "1.1.0"
stac_extensions[] 15 items
- 0 "https://stac-extensions.github.io/eo/v2.0.0/schema.json"
- 1 "https://stac-extensions.github.io/raster/v2.0.0/schema.json"
- 2 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 3 "https://stac-extensions.github.io/projection/v2.0.0/schema.json"
- 4 "https://stac-extensions.github.io/grid/v1.1.0/schema.json"
- 5 "https://stac-extensions.github.io/view/v1.0.0/schema.json"
- 6 "https://stac-extensions.github.io/file/v2.1.0/schema.json"
- 7 "https://stac-extensions.github.io/processing/v1.2.0/schema.json"
- 8 "https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json"
- 9 "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json"
- 10 "https://stac-extensions.github.io/authentication/v1.1.0/schema.json"
- 11 "https://stac-extensions.github.io/classification/v2.0.0/schema.json"
- 12 "https://stac-extensions.github.io/product/v0.1.0/schema.json"
- 13 "https://cs-si.github.io/eopf-stac-extension/v1.2.0/schema.json"
- 14 "https://stac-extensions.github.io/storage/v2.0.0/schema.json"
- id "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 12 items
0[] 2 items
- 0 10.314999732966632
- 1 46.9825958221899
1[] 2 items
- 0 10.344858165779751
- 1 47.06905925816864
2[] 2 items
- 0 10.397488448602289
- 1 47.215468215068206
3[] 2 items
- 0 10.448600116658016
- 1 47.362328318672965
4[] 2 items
- 0 10.50128724486562
- 1 47.50881695274072
5[] 2 items
- 0 10.553855901492742
- 1 47.65539097040493
6[] 2 items
- 0 10.607083151224105
- 1 47.801795895844606
7[] 2 items
- 0 10.621372955692502
- 1 47.84078461369763
8[] 2 items
- 0 11.802846682924509
- 1 47.81947440295927
9[] 2 items
- 0 11.751084998620154
- 1 46.83262831925138
10[] 2 items
- 0 10.31188688551243
- 1 46.85818197246455
11[] 2 items
- 0 10.314999732966632
- 1 46.9825958221899
bbox[] 4 items
- 0 10.311887
- 1 46.832628
- 2 11.802847
- 3 47.840785
properties
- gsd 10
- created "2023-03-29T15:12:55.292000Z"
- updated "2024-04-26T17:18:15.328925Z"
- datetime "2021-08-06T10:05:59.024000Z"
- platform "sentinel-2b"
- grid:code "MGRS-32TPT"
- published "2023-03-29T15:25:42.298884Z"
statistics
- water 0.598958
- nodata 8.887579
- dark_area 2.704664
- vegetation 46.302617
- thin_cirrus 0.146023
- cloud_shadow 3.591269
- unclassified 2.093467
- not_vegetated 6.223727
- high_proba_clouds 23.638979
- medium_proba_clouds 13.540156
- saturated_defective 0.0
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 "2021-08-06T10:05:59.024Z"
- product:type "S2MSI2A"
- view:azimuth 105.12031046869477
- constellation "sentinel-2"
- eo:snow_cover 1.16
- eo:cloud_cover 37.33
- start_datetime "2021-08-06T10:05:59.024Z"
- sat:orbit_state "descending"
storage:schemes
cdse-s3
- 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. A Global Service Load Balancer (GSLB) directs the request to either CloudFerro Cloud or OpenTelekom Cloud (OTC) S3 endpoint based on the location of the DNS resolver."
- requester_pays False
creodias-s3
- 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 "GS2B_20210806T100559_023071_N05.00"
- processing:level "L2"
- view:sun_azimuth 151.423914185317
- eopf:datastrip_id "S2B_OPER_MSI_L2A_DS_S2RP_20230211T085202_S20210806T101207_N05.00"
- processing:version "05.00"
- product:timeliness "PT24H"
- sat:absolute_orbit 23071
- sat:relative_orbit 22
- view:sun_elevation 56.5264701940109
- processing:datetime "2023-02-11T08:52:02.000000Z"
- processing:facility "ESA"
- eopf:instrument_mode "INS-NOBS"
- eopf:origin_datetime "2023-03-29T15:12:55.292000Z"
- view:incidence_angle 7.91867634468437
- product:timeliness_category "NRT"
- sat:platform_international_designator "2017-013A"
links[] 5 items
0
- rel "collection"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
1
- rel "parent"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
2
- rel "root"
- href "https://stac.dataspace.copernicus.eu/v1/"
- type "application/json"
- title "cdse-stac"
3
- rel "self"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202"
- type "application/geo+json"
4
- rel "version-history"
- href "https://trace.dataspace.copernicus.eu/api/v1/traces/name/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE.zip"
- type "application/json"
- title "Product history record from the CDSE traceability service"
assets
AOT_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R10m/T32TPT_20210806T100559_AOT_10m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210806T100559_AOT_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3868976
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620372c7e79dcbf7d325fe5cce8b6677b12055e269c14026ad43d26553d5492614d"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R10m/T32TPT_20210806T100559_AOT_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
AOT_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R20m/T32TPT_20210806T100559_AOT_20m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210806T100559_AOT_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 2965941
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620a9a88adc5edf6307c65eac3d3235681b2ca52474b4ad6a4bba67cb15a8d1e0c0"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R20m/T32TPT_20210806T100559_AOT_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
AOT_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R60m/T32TPT_20210806T100559_AOT_60m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210806T100559_AOT_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 814513
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16207e7a001d8daeffb38437aced17d9ac9c12cb8ca272de0d23f3e833d015b6ab2c"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R60m/T32TPT_20210806T100559_AOT_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
B01_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R20m/T32TPT_20210806T100559_B01_20m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.442
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210806T100559_B01_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 23704909
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.046226178558
- file:checksum "1620335f8b724e659157848236ec495c2703d20802aaea42c0e719142b3a8b2efdb8"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R20m/T32TPT_20210806T100559_B01_20m.jp2"
- view:incidence_angle 8.01414314362252
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:upsampled"
- 3 "gsd:20m"
B01_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R60m/T32TPT_20210806T100559_B01_60m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.442
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210806T100559_B01_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3762434
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.046226178558
- file:checksum "1620bc03d62f4347d5a31305f2acedd3679ef4de4369fbafd0d56215f9f5adbc8c21"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R60m/T32TPT_20210806T100559_B01_60m.jp2"
- view:incidence_angle 8.01414314362252
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B02_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R10m/T32TPT_20210806T100559_B02_10m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210806T100559_B02_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 116823887
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.246037935995
- file:checksum "16204984045ed033ba6776fc1c9a86ba0a0bbda1fad306767672f3426b392a3f4bf7"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R10m/T32TPT_20210806T100559_B02_10m.jp2"
- view:incidence_angle 7.81374789250826
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B02_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R20m/T32TPT_20210806T100559_B02_20m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210806T100559_B02_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33814383
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.246037935995
- file:checksum "16201c546e02e27be94ca5e15b92e2f7892ef3034cb64b9f18a7bb7d839e8c3b0ff7"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R20m/T32TPT_20210806T100559_B02_20m.jp2"
- view:incidence_angle 7.81374789250826
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B02_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R60m/T32TPT_20210806T100559_B02_60m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210806T100559_B02_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3751680
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.246037935995
- file:checksum "1620ddd20f3543b762b1eb6006eba2d20c3ecaf7e89ef28d2445599fbafb41cbcaad"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R60m/T32TPT_20210806T100559_B02_60m.jp2"
- view:incidence_angle 7.81374789250826
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B03_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R10m/T32TPT_20210806T100559_B03_10m.jp2"
- type "image/jp2"
- title "Green (band 3) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210806T100559_B03_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 118792980
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.200679863545
- file:checksum "1620fdffacf81f77eed9b5e8d72cc8dceab0225f148a6c8639b5bfe2288924b31ce5"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R10m/T32TPT_20210806T100559_B03_10m.jp2"
- view:incidence_angle 7.84029447624189
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B03_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R20m/T32TPT_20210806T100559_B03_20m.jp2"
- type "image/jp2"
- title "Green (band 3) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210806T100559_B03_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33824476
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.200679863545
- file:checksum "1620c5cad3476c696527e0d01b06188e69c5cb70e31ec6e4bdf68c5b6fd304863253"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R20m/T32TPT_20210806T100559_B03_20m.jp2"
- view:incidence_angle 7.84029447624189
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B03_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R60m/T32TPT_20210806T100559_B03_60m.jp2"
- type "image/jp2"
- title "Green (band 3) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210806T100559_B03_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3750289
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.200679863545
- file:checksum "1620e2ae9967ff9c4c2eb375a2b233f7ac40f38e6f1b7eca049a2b2c2c545fbe1d93"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R60m/T32TPT_20210806T100559_B03_60m.jp2"
- view:incidence_angle 7.84029447624189
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B04_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R10m/T32TPT_20210806T100559_B04_10m.jp2"
- type "image/jp2"
- title "Red (band 4) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210806T100559_B04_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 116003980
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.148198660111
- file:checksum "1620c13d2d2442b717a9dae445c52f1fdc53701cff25e0d6bb89d42e6c9b689a2c26"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R10m/T32TPT_20210806T100559_B04_10m.jp2"
- view:incidence_angle 7.87451216009662
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B04_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R20m/T32TPT_20210806T100559_B04_20m.jp2"
- type "image/jp2"
- title "Red (band 4) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210806T100559_B04_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33819183
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.148198660111
- file:checksum "1620300cdc5c2bcff851b1d0cc2dae5c9a3e7f26a097e3a4db5514eaa9a647f4889a"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R20m/T32TPT_20210806T100559_B04_20m.jp2"
- view:incidence_angle 7.87451216009662
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B04_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R60m/T32TPT_20210806T100559_B04_60m.jp2"
- type "image/jp2"
- title "Red (band 4) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210806T100559_B04_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3751991
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.148198660111
- file:checksum "162015ad388095b111e8f1bd4c6a589a113172618161ad14427f62a3e84fbd720bc5"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R60m/T32TPT_20210806T100559_B04_60m.jp2"
- view:incidence_angle 7.87451216009662
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B05_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R20m/T32TPT_20210806T100559_B05_20m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210806T100559_B05_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33727128
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.127419564352
- file:checksum "1620e3cf8c6d2e50498c5d3180cc1fde65a7064ccfa77ac3ca2f5edf83e69d905ddb"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R20m/T32TPT_20210806T100559_B05_20m.jp2"
- view:incidence_angle 7.89703130880248
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B05_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R60m/T32TPT_20210806T100559_B05_60m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210806T100559_B05_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3758301
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.127419564352
- file:checksum "16204ea621f6ad0707de01abcaadffa0250516547f8b10d17512ec435d2655cdf59c"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R60m/T32TPT_20210806T100559_B05_60m.jp2"
- view:incidence_angle 7.89703130880248
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B06_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R20m/T32TPT_20210806T100559_B06_20m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 20m"
- description "S3 storage provided by CloudFerro Cloud and OpenTelekom Cloud (OTC). Use endpoint URL `https://eodata.dataspace.copernicus.eu`."
bands[] 1 items
0
- eo:center_wavelength 0.739
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210806T100559_B06_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33722695
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.090120609625
- file:checksum "1620b0113bedab3a663a82e84ff6d92b08bab816e332a9ecb0934741266ee7cae0ed"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R20m/T32TPT_20210806T100559_B06_20m.jp2"
- view:incidence_angle 7.92224208878502
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B06_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R60m/T32TPT_20210806T100559_B06_60m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.739
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210806T100559_B06_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3739238
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.090120609625
- file:checksum "1620f591076813d3425e8da10fe7c5dbfe0020c9b0f00a0ca3fa0b653b28e3f9ae5e"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R60m/T32TPT_20210806T100559_B06_60m.jp2"
- view:incidence_angle 7.92224208878502
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B07_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R20m/T32TPT_20210806T100559_B07_20m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.78
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210806T100559_B07_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33892542
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.042879717633
- file:checksum "16204a714eb57e2526d22fb4f90c952f9504ce58569295c9b39c55bbfc13ecd3a74d"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R20m/T32TPT_20210806T100559_B07_20m.jp2"
- view:incidence_angle 7.94997562195353
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B07_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R60m/T32TPT_20210806T100559_B07_60m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.78
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210806T100559_B07_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3737219
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.042879717633
- file:checksum "162052a3a82d2d56f908b8235a960a42cb6dec45ee02ae707756c33d7296fade61a8"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R60m/T32TPT_20210806T100559_B07_60m.jp2"
- view:incidence_angle 7.94997562195353
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B08_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R10m/T32TPT_20210806T100559_B08_10m.jp2"
- type "image/jp2"
- title "NIR 1 (band 8) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.454
- name "B08"
- eo:common_name "nir"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210806T100559_B08_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 132347387
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.22472282077
- file:checksum "16200a1c28f33a11b3b139c23c9384d558dbe5e6769ca3ea57cace22bc26406631aa"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R10m/T32TPT_20210806T100559_B08_10m.jp2"
- view:incidence_angle 7.82561538469494
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B09_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R60m/T32TPT_20210806T100559_B09_60m.jp2"
- type "image/jp2"
- title "NIR 3 (band 9) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.943
- eo:full_width_half_max 0.479
- name "B09"
- eo:common_name "nir09"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210806T100559_B09_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3741921
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.985913473422
- file:checksum "16200d2527a3032e0a1138f4f059ad6102bf71e33bf95f78178e4b9805195ab80580"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R60m/T32TPT_20210806T100559_B09_60m.jp2"
- view:incidence_angle 8.05483472902577
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B11_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R20m/T32TPT_20210806T100559_B11_20m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 20m"
bands[] 1 items
0
- eo:center_wavelength 1.61
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210806T100559_B11_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33883105
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.144168664446
- file:checksum "16201e355ff655cd0a162bb1f1a52b515868d5d77088dacc4d88f94de0d2bb604552"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R20m/T32TPT_20210806T100559_B11_20m.jp2"
- view:incidence_angle 7.91827913552598
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B11_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R60m/T32TPT_20210806T100559_B11_60m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 60m"
bands[] 1 items
0
- eo:center_wavelength 1.61
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210806T100559_B11_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3758201
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.144168664446
- file:checksum "1620e11e5beb7216e85fb357a38ffc5184ddb97e856006c90cfa23660dd9b7967aa0"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R60m/T32TPT_20210806T100559_B11_60m.jp2"
- view:incidence_angle 7.91827913552598
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B12_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R20m/T32TPT_20210806T100559_B12_20m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 20m"
bands[] 1 items
0
- eo:center_wavelength 2.186
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210806T100559_B12_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33450230
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.064739715639
- file:checksum "162010b863248e16d1ba31094e5581b3defd22335e88268465f6e447e52a83d14556"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R20m/T32TPT_20210806T100559_B12_20m.jp2"
- view:incidence_angle 7.98803208492637
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B12_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R60m/T32TPT_20210806T100559_B12_60m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 60m"
bands[] 1 items
0
- eo:center_wavelength 2.186
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210806T100559_B12_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3747888
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.064739715639
- file:checksum "1620405fd561a36abaf132f82f5400f18ae283b5e51a4713475c5ae439d58ca5ae87"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R60m/T32TPT_20210806T100559_B12_60m.jp2"
- view:incidence_angle 7.98803208492637
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B8A_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R20m/T32TPT_20210806T100559_B8A_20m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.864
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210806T100559_B8A_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33889811
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.004351145366
- file:checksum "16205f619c0886f0e83b529391f734fa9bd3c1d6675d5b550bac33e526eadeb79531"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R20m/T32TPT_20210806T100559_B8A_20m.jp2"
- view:incidence_angle 7.98043655411039
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B8A_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R60m/T32TPT_20210806T100559_B8A_60m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.864
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210806T100559_B8A_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3773527
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.004351145366
- file:checksum "162062fbdb02b4725a0d0318f0ff1aa4dcd1f6f7ca5aa06a2cfada846f541f172847"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R60m/T32TPT_20210806T100559_B8A_60m.jp2"
- view:incidence_angle 7.98043655411039
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
Product
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/$value"
- type "application/zip"
- title "Zipped product"
auth:refs[] 1 items
- 0 "oidc"
- file:size 1160722100
- storage:refs "𒍟※"
- file:checksum "d501106061267c4a59c74159c5c22da6aeb8bb"
- alternate:name "HTTPS"
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE.zip"
roles[] 3 items
- 0 "data"
- 1 "metadata"
- 2 "archive"
SCL_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R20m/T32TPT_20210806T100559_SCL_20m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210806T100559_SCL_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3404418
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16202c5fe63c0d20811130baa2d0db1eb2fcd48ffb6d58c70611836cf93253bf0abf"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R20m/T32TPT_20210806T100559_SCL_20m.jp2"
classification:classes[] 12 items
0
- percentage 8.887579
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
- percentage 0.0
2
- percentage 2.704664
- name "dark_area_pixels"
- value 2
3
- percentage 3.591269
- name "cloud_shadows"
- value 3
4
- percentage 46.302617
- name "vegetation"
- value 4
5
- percentage 6.223727
- name "not_vegetated"
- value 5
6
- percentage 0.598958
- name "water"
- value 6
7
- percentage 2.093467
- name "unclassified"
- value 7
8
- percentage 13.540156
- name "cloud_medium_probability"
- value 8
9
- percentage 23.638979
- name "cloud_high_probability"
- value 9
10
- percentage 0.146023
- name "thin_cirrus"
- value 10
11
- percentage 1.160135
- name "snow"
- value 11
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "data"
- 1 "sampling:original"
- 2 "gsd:20m"
SCL_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R60m/T32TPT_20210806T100559_SCL_60m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210806T100559_SCL_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 813890
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16201660dc07142868f6ffe2686c46c73dbb8c82e84ca6342a227986b9575971c27c"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R60m/T32TPT_20210806T100559_SCL_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
classification:classes[] 12 items
0
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
2
- name "dark_area_pixels"
- value 2
3
- name "cloud_shadows"
- value 3
4
- name "vegetation"
- value 4
5
- name "not_vegetated"
- value 5
6
- name "water"
- value 6
7
- name "unclassified"
- value 7
8
- name "cloud_medium_probability"
- value 8
9
- name "cloud_high_probability"
- value 9
10
- name "thin_cirrus"
- value 10
11
- name "snow"
- value 11
roles[] 3 items
- 0 "data"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
TCI_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R10m/T32TPT_20210806T100559_TCI_10m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210806T100559_TCI_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135495840
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16203ca8ec5a6ea8445767fde7837b32f4a99f1dd20f6fe47055a6c0eb43c175d255"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R10m/T32TPT_20210806T100559_TCI_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 10980
- 1 10980
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:original"
- 2 "gsd:10m"
TCI_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R20m/T32TPT_20210806T100559_TCI_20m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210806T100559_TCI_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33851658
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16201ce4767300f707c83edbf8bad26fc6c7b2c877ca9211582fc058a0c55e781514"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R20m/T32TPT_20210806T100559_TCI_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:20m"
TCI_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R60m/T32TPT_20210806T100559_TCI_60m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210806T100559_TCI_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3713256
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162004894ac670528e48dec7c7e3c5775c442951c66faf8eae4232fe42c353122656"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R60m/T32TPT_20210806T100559_TCI_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
WVP_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R10m/T32TPT_20210806T100559_WVP_10m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210806T100559_WVP_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 63037266
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620e86812e76b200290831d49b924ac66d63f898c289fc9c783c4f154f1bfb1a054"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R10m/T32TPT_20210806T100559_WVP_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
WVP_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R20m/T32TPT_20210806T100559_WVP_20m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210806T100559_WVP_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 20648279
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620868d3e3492f8d43cdf8852fafe2a8f217563aba9f6dda6628125b10b68525c71"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R20m/T32TPT_20210806T100559_WVP_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
WVP_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R60m/T32TPT_20210806T100559_WVP_60m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210806T100559_WVP_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3237491
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620ab3e35ed2ef0ea353568eb39ef436fa3b4db3e1787388ddf8c57e58b95dc816c"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/IMG_DATA/R60m/T32TPT_20210806T100559_WVP_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
thumbnail
- href "https://datahub.creodias.eu/odata/v1/Assets(144f3028-faf6-41c1-a280-431bb7cb76b0)/$value"
- type "image/jpeg"
- title "Quicklook"
alternate
s3
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202-ql.jpg"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
auth:refs[] 1 items
- 0 "oidc"
- file:size 50149
- file:checksum "d50110c79703077eee058936f3ec9cc7d3e5ee"
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202-ql.jpg"
- data_type "uint8"
- proj:code None
proj:shape[] 2 items
- 0 343
- 1 343
- alternate:name "HTTPS"
roles[] 2 items
- 0 "thumbnail"
- 1 "overview"
safe_manifest
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/manifest.safe"
- type "application/xml"
- title "manifest.safe"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(manifest.safe)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 69170
- file:checksum "d5011007b12c868cdd023b3bd7d434bd78339b"
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/manifest.safe"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
granule_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/MTD_TL.xml"
- type "application/xml"
- title "MTD_TL.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes()/Nodes(GRANULE)/Nodes(L2A_T32TPT_A023071_20210806T101207)/Nodes(MTD_TL.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 463411
- file:checksum "d50120508cff7c3f078883d6da9f3cc4d0009bcc1d2a2c42cf45d79d6b55d0517e9e7a"
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/GRANULE/L2A_T32TPT_A023071_20210806T101207/MTD_TL.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
inspire_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/INSPIRE.xml"
- type "application/xml"
- title "INSPIRE.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(INSPIRE.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 18905
- file:checksum "d5012057db1d4d8c5811c91f0c0f56621261756ca209ada0c7a3d58b7760346bcfb80e"
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/INSPIRE.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
product_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/MTD_MSIL2A.xml"
- type "application/xml"
- title "MTD_MSIL2A.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes(MTD_MSIL2A.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 55176
- file:checksum "d50120c98867d4bd31a760b40d2cc2987d358764a57ce7ace16ce712ef0c86a466d3b2"
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/MTD_MSIL2A.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
datastrip_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/08/06/S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/DATASTRIP/DS_S2RP_20230211T085202_S20210806T101207/MTD_DS.xml"
- type "application/xml"
- title "MTD_DS.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(91db6470-7851-40d5-88e2-d92f04251f1e)/Nodes(S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE)/Nodes()/Nodes(DATASTRIP)/Nodes(DS_S2RP_20230211T085202_S20210806T101207)/Nodes(MTD_DS.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 24310538
- file:checksum "d50120dd95e5717b7d015c0a72302ff5a9b1238a8f1f55e5238c7dec493ba0dfdb0157"
- file:local_path "S2B_MSIL2A_20210806T100559_N0500_R022_T32TPT_20230211T085202.SAFE/DATASTRIP/DS_S2RP_20230211T085202_S20210806T101207/MTD_DS.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
- collection "sentinel-2-l2a"
5
- type "Feature"
- stac_version "1.1.0"
stac_extensions[] 15 items
- 0 "https://stac-extensions.github.io/eo/v2.0.0/schema.json"
- 1 "https://stac-extensions.github.io/raster/v2.0.0/schema.json"
- 2 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 3 "https://stac-extensions.github.io/projection/v2.0.0/schema.json"
- 4 "https://stac-extensions.github.io/grid/v1.1.0/schema.json"
- 5 "https://stac-extensions.github.io/view/v1.0.0/schema.json"
- 6 "https://stac-extensions.github.io/file/v2.1.0/schema.json"
- 7 "https://stac-extensions.github.io/processing/v1.2.0/schema.json"
- 8 "https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json"
- 9 "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json"
- 10 "https://stac-extensions.github.io/authentication/v1.1.0/schema.json"
- 11 "https://stac-extensions.github.io/classification/v2.0.0/schema.json"
- 12 "https://stac-extensions.github.io/product/v0.1.0/schema.json"
- 13 "https://cs-si.github.io/eopf-stac-extension/v1.2.0/schema.json"
- 14 "https://stac-extensions.github.io/storage/v2.0.0/schema.json"
- id "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 12 items
0[] 2 items
- 0 10.314714943162402
- 1 46.971213383304594
1[] 2 items
- 0 10.353806073407718
- 1 47.081440730128406
2[] 2 items
- 0 10.406499001758323
- 1 47.22805700570089
3[] 2 items
- 0 10.459079413596497
- 1 47.3747730230254
4[] 2 items
- 0 10.512363717466954
- 1 47.5212595484952
5[] 2 items
- 0 10.563693015851332
- 1 47.668245466585255
6[] 2 items
- 0 10.617086600172284
- 1 47.814652643038194
7[] 2 items
- 0 10.626644117534351
- 1 47.84068953788926
8[] 2 items
- 0 11.802846682924509
- 1 47.81947440295927
9[] 2 items
- 0 11.751084998620154
- 1 46.83262831925138
10[] 2 items
- 0 10.31188688551243
- 1 46.85818197246455
11[] 2 items
- 0 10.314714943162402
- 1 46.971213383304594
bbox[] 4 items
- 0 10.311887
- 1 46.832628
- 2 11.802847
- 3 47.84069
properties
- gsd 10
- created "2023-02-17T08:34:06.496000Z"
- updated "2024-04-25T09:14:10.920720Z"
- datetime "2021-07-22T10:10:31.024000Z"
- platform "sentinel-2a"
- grid:code "MGRS-32TPT"
- published "2023-02-21T00:37:33.219219Z"
statistics
- water 0.941514
- nodata 8.87375
- dark_area 2.859361
- vegetation 61.262745
- thin_cirrus 0.042515
- cloud_shadow 1.425848
- unclassified 1.656909
- not_vegetated 6.918538
- high_proba_clouds 14.713122000000002
- medium_proba_clouds 9.373727
- saturated_defective 0.0
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 "2021-07-22T10:10:31.024Z"
- product:type "S2MSI2A"
- view:azimuth 104.24693523666555
- constellation "sentinel-2"
- eo:snow_cover 0.81
- eo:cloud_cover 24.13
- start_datetime "2021-07-22T10:10:31.024Z"
- sat:orbit_state "descending"
storage:schemes
cdse-s3
- 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. A Global Service Load Balancer (GSLB) directs the request to either CloudFerro Cloud or OpenTelekom Cloud (OTC) S3 endpoint based on the location of the DNS resolver."
- requester_pays False
creodias-s3
- 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 "GS2A_20210722T101031_031765_N05.00"
- processing:level "L2"
- view:sun_azimuth 148.744395985122
- eopf:datastrip_id "S2A_OPER_MSI_L2A_DS_S2RP_20230123T074238_S20210722T101419_N05.00"
- processing:version "05.00"
- product:timeliness "PT24H"
- sat:absolute_orbit 31765
- sat:relative_orbit 22
- view:sun_elevation 59.8516070832125
- processing:datetime "2023-01-23T07:42:38.000000Z"
- processing:facility "ESA"
- eopf:instrument_mode "INS-NOBS"
- eopf:origin_datetime "2023-02-17T08:34:06.496000Z"
- view:incidence_angle 7.929517094306553
- product:timeliness_category "NRT"
- sat:platform_international_designator "2015-028A"
links[] 5 items
0
- rel "collection"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
1
- rel "parent"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
2
- rel "root"
- href "https://stac.dataspace.copernicus.eu/v1/"
- type "application/json"
- title "cdse-stac"
3
- rel "self"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238"
- type "application/geo+json"
4
- rel "version-history"
- href "https://trace.dataspace.copernicus.eu/api/v1/traces/name/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE.zip"
- type "application/json"
- title "Product history record from the CDSE traceability service"
assets
AOT_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R10m/T32TPT_20210722T101031_AOT_10m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210722T101031_AOT_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 6379997
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16202b192c03d57c4de2e123b1f6088a99a096fcb3e4db0b439a7e0ebbf38d4d2b76"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R10m/T32TPT_20210722T101031_AOT_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
AOT_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R20m/T32TPT_20210722T101031_AOT_20m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210722T101031_AOT_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 4372898
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620c8faf6556b5e3ba2e98430185f65fa97e17036aaf52334a2aa3efd9b3060a862"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R20m/T32TPT_20210722T101031_AOT_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
AOT_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R60m/T32TPT_20210722T101031_AOT_60m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210722T101031_AOT_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 930641
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620ba8158cd31bc353f09fe10f8ad7f3ad31b5379b8b2e0b928efdc4c3214dd3eed"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R60m/T32TPT_20210722T101031_AOT_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
B01_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R20m/T32TPT_20210722T101031_B01_20m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.443
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210722T101031_B01_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 22982478
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.173687891482
- file:checksum "16200ab2ad4ef30ac5e38d2aee1ff80e09bfc9b9489f72e81df7bc547c071cb044b2"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R20m/T32TPT_20210722T101031_B01_20m.jp2"
- view:incidence_angle 8.03599151159336
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:upsampled"
- 3 "gsd:20m"
B01_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R60m/T32TPT_20210722T101031_B01_60m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.443
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210722T101031_B01_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3739503
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.173687891482
- file:checksum "16200946e4fe95957db43e84c0d9cd888633250b0518bc1ff340eeecba1e79cef882"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R60m/T32TPT_20210722T101031_B01_60m.jp2"
- view:incidence_angle 8.03599151159336
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B02_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R10m/T32TPT_20210722T101031_B02_10m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210722T101031_B02_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 115308385
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.326761818468
- file:checksum "16209ca7d954bef0b67ee41634c017a9776787c15df7f873c8ec3c659c58e7d731b5"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R10m/T32TPT_20210722T101031_B02_10m.jp2"
- view:incidence_angle 7.82781172826209
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B02_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R20m/T32TPT_20210722T101031_B02_20m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210722T101031_B02_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33430094
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.326761818468
- file:checksum "1620ae09de1adc41ee7dfe9b5a0d1723e91f1ae6a974cfdf891e8da752cbddbd4f4d"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R20m/T32TPT_20210722T101031_B02_20m.jp2"
- view:incidence_angle 7.82781172826209
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B02_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R60m/T32TPT_20210722T101031_B02_60m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210722T101031_B02_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3756530
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.326761818468
- file:checksum "16206443c636e40c11307c941fbb551371bc5b66b02c6a922b0de3a1f04a6e28cc4f"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R60m/T32TPT_20210722T101031_B02_60m.jp2"
- view:incidence_angle 7.82781172826209
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B03_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R10m/T32TPT_20210722T101031_B03_10m.jp2"
- type "image/jp2"
- title "Green (band 3) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210722T101031_B03_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 118127875
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.311477545859
- file:checksum "1620b65f6077ccb2ffa1e22d1973aa8f50ab20c4bf36c80d7f4609cfcd6576b8e728"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R10m/T32TPT_20210722T101031_B03_10m.jp2"
- view:incidence_angle 7.85432137266396
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B03_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R20m/T32TPT_20210722T101031_B03_20m.jp2"
- type "image/jp2"
- title "Green (band 3) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210722T101031_B03_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33899236
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.311477545859
- file:checksum "1620b3136099faafd0d3e964fc10e1c815c9cfe20bcb77375321785ab9eee61e0997"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R20m/T32TPT_20210722T101031_B03_20m.jp2"
- view:incidence_angle 7.85432137266396
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B03_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R60m/T32TPT_20210722T101031_B03_60m.jp2"
- type "image/jp2"
- title "Green (band 3) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210722T101031_B03_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3751624
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.311477545859
- file:checksum "162089ef7f45c7a88e693fd867f85eb4c9e73dfa282511dc5602b1f3a56f2776d81f"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R60m/T32TPT_20210722T101031_B03_60m.jp2"
- view:incidence_angle 7.85432137266396
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B04_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R10m/T32TPT_20210722T101031_B04_10m.jp2"
- type "image/jp2"
- title "Red (band 4) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210722T101031_B04_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 115751172
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.253064875405
- file:checksum "16200cdaef222a32076203670175fa66ba30dc9297957a8a87347c1fc2379772b575"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R10m/T32TPT_20210722T101031_B04_10m.jp2"
- view:incidence_angle 7.88491606920543
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B04_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R20m/T32TPT_20210722T101031_B04_20m.jp2"
- type "image/jp2"
- title "Red (band 4) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210722T101031_B04_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33891803
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.253064875405
- file:checksum "162068681ce9d5dc06b212e4755aaded0b4c4acb6e4aa784ac362268be443aea9e34"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R20m/T32TPT_20210722T101031_B04_20m.jp2"
- view:incidence_angle 7.88491606920543
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B04_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R60m/T32TPT_20210722T101031_B04_60m.jp2"
- type "image/jp2"
- title "Red (band 4) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210722T101031_B04_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3754058
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.253064875405
- file:checksum "1620fd789eadd5d15ef7800f389d06af265f84185dd3f1901c92e2704eb3ba068c57"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R60m/T32TPT_20210722T101031_B04_60m.jp2"
- view:incidence_angle 7.88491606920543
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B05_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R20m/T32TPT_20210722T101031_B05_20m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210722T101031_B05_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33745244
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.221848071482
- file:checksum "162020186dc038b8f1a579f139e671c4ee2a093347200a6a14c6c418bec555693461"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R20m/T32TPT_20210722T101031_B05_20m.jp2"
- view:incidence_angle 7.90732005625911
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B05_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R60m/T32TPT_20210722T101031_B05_60m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210722T101031_B05_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3747310
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.221848071482
- file:checksum "162046fbc046c62accec0fca290f3b7073d9dc803b7361f96b59c32ea40b29f65fda"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R60m/T32TPT_20210722T101031_B05_60m.jp2"
- view:incidence_angle 7.90732005625911
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B06_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R20m/T32TPT_20210722T101031_B06_20m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 20m"
- description "S3 storage provided by CloudFerro Cloud and OpenTelekom Cloud (OTC). Use endpoint URL `https://eodata.dataspace.copernicus.eu`."
bands[] 1 items
0
- eo:center_wavelength 0.741
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210722T101031_B06_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33749950
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.18966925088
- file:checksum "16208aa64c5bb2054e4911b3a5bf24bff0c0d679718d5bafaccd35d02ad05c19d70d"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R20m/T32TPT_20210722T101031_B06_20m.jp2"
- view:incidence_angle 7.93259650823892
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B06_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R60m/T32TPT_20210722T101031_B06_60m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.741
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210722T101031_B06_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3739815
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.18966925088
- file:checksum "1620350c8a6ffe85adf2ab4ff6b0734979261d2fa3b4e38dce4d0547f221df6e8566"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R60m/T32TPT_20210722T101031_B06_60m.jp2"
- view:incidence_angle 7.93259650823892
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B07_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R20m/T32TPT_20210722T101031_B07_20m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210722T101031_B07_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33852714
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.169565411671
- file:checksum "1620aba3ff3857c9ccfa0788f503da693de874da6483710e42bccafd93948f4888c9"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R20m/T32TPT_20210722T101031_B07_20m.jp2"
- view:incidence_angle 7.96052432727165
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B07_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R60m/T32TPT_20210722T101031_B07_60m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210722T101031_B07_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3773201
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.169565411671
- file:checksum "16200c7c3bbf84d8c85a35d96b314c25b13438f42ca69fab06f48fb12c875fabc9af"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R60m/T32TPT_20210722T101031_B07_60m.jp2"
- view:incidence_angle 7.96052432727165
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B08_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R10m/T32TPT_20210722T101031_B08_10m.jp2"
- type "image/jp2"
- title "NIR 1 (band 8) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.454
- name "B08"
- eo:common_name "nir"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210722T101031_B08_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135165579
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.312853977815
- file:checksum "16202dedf37554c4fdbb6d7e6ea8a86d044431c369e628c19a7158871323d1d0ba56"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R10m/T32TPT_20210722T101031_B08_10m.jp2"
- view:incidence_angle 7.84356192986811
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B09_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R60m/T32TPT_20210722T101031_B09_60m.jp2"
- type "image/jp2"
- title "NIR 3 (band 9) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.945
- eo:full_width_half_max 0.479
- name "B09"
- eo:common_name "nir09"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210722T101031_B09_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3741535
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.172999472976
- file:checksum "1620e1025e6d013dcc849f0ec152f578c61090bf0b34ecb8d9e2e8a26601b5972774"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R60m/T32TPT_20210722T101031_B09_60m.jp2"
- view:incidence_angle 8.07250671152268
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B11_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R20m/T32TPT_20210722T101031_B11_20m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 20m"
bands[] 1 items
0
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210722T101031_B11_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33712278
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.296754850603
- file:checksum "16208ca2e4f43dc4b20a0d08b7d64c4b0cdea76db20be2684b270910e78afc15d9ae"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R20m/T32TPT_20210722T101031_B11_20m.jp2"
- view:incidence_angle 7.91920569724665
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B11_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R60m/T32TPT_20210722T101031_B11_60m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 60m"
bands[] 1 items
0
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210722T101031_B11_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3751933
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.296754850603
- file:checksum "162035178b74c58c2191e544f0da43fbd48be3ebc14a79bc85420457373fc575b1cd"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R60m/T32TPT_20210722T101031_B11_60m.jp2"
- view:incidence_angle 7.91920569724665
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B12_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R20m/T32TPT_20210722T101031_B12_20m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 20m"
bands[] 1 items
0
- eo:center_wavelength 2.202
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210722T101031_B12_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33758187
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.229780622597
- file:checksum "16200d1e00855687fcb20bef7b41227dda5daf317f85466601def035f47821abfeee"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R20m/T32TPT_20210722T101031_B12_20m.jp2"
- view:incidence_angle 7.99317543713138
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B12_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R60m/T32TPT_20210722T101031_B12_60m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 60m"
bands[] 1 items
0
- eo:center_wavelength 2.202
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210722T101031_B12_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3748054
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.229780622597
- file:checksum "1620c3d7ce22b024636e0c98b6bb2bdeba4b02eb449c722eba7d7360b6ceaa4d80bc"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R60m/T32TPT_20210722T101031_B12_60m.jp2"
- view:incidence_angle 7.99317543713138
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B8A_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R20m/T32TPT_20210722T101031_B8A_20m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210722T101031_B8A_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33887327
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.138358634723
- file:checksum "1620e797bf4552d15ebc2ca27bf4612dada4a37605462a14295c680d8075bc59338f"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R20m/T32TPT_20210722T101031_B8A_20m.jp2"
- view:incidence_angle 7.99103154274091
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B8A_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R60m/T32TPT_20210722T101031_B8A_60m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210722T101031_B8A_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3766386
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.138358634723
- file:checksum "162028ca2b9e20cfea920ff1de2a6b381ebeae6587ec27b6a70a97da6ffb063e46b9"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R60m/T32TPT_20210722T101031_B8A_60m.jp2"
- view:incidence_angle 7.99103154274091
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
Product
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/$value"
- type "application/zip"
- title "Zipped product"
auth:refs[] 1 items
- 0 "oidc"
- file:size 1166160874
- storage:refs "𒍟※"
- file:checksum "d50110bd09c198753c4a3229a76257c38d62e2"
- alternate:name "HTTPS"
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE.zip"
roles[] 3 items
- 0 "data"
- 1 "metadata"
- 2 "archive"
SCL_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R20m/T32TPT_20210722T101031_SCL_20m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210722T101031_SCL_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 2800915
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16201374e89a5b212a794cff61aa873ba530d400f4693bcb06e0f2184dbf4953efe9"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R20m/T32TPT_20210722T101031_SCL_20m.jp2"
classification:classes[] 12 items
0
- percentage 8.87375
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
- percentage 0.0
2
- percentage 2.859361
- name "dark_area_pixels"
- value 2
3
- percentage 1.425848
- name "cloud_shadows"
- value 3
4
- percentage 61.262745
- name "vegetation"
- value 4
5
- percentage 6.918538
- name "not_vegetated"
- value 5
6
- percentage 0.941514
- name "water"
- value 6
7
- percentage 1.656909
- name "unclassified"
- value 7
8
- percentage 9.373727
- name "cloud_medium_probability"
- value 8
9
- percentage 14.713122000000002
- name "cloud_high_probability"
- value 9
10
- percentage 0.042515
- name "thin_cirrus"
- value 10
11
- percentage 0.805719
- name "snow"
- value 11
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "data"
- 1 "sampling:original"
- 2 "gsd:20m"
SCL_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R60m/T32TPT_20210722T101031_SCL_60m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210722T101031_SCL_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 650909
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620cf7a6471d9fe9c5d8845306e6bb7bfe4d13f5f48a943887e75c154fad6ad0a60"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R60m/T32TPT_20210722T101031_SCL_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
classification:classes[] 12 items
0
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
2
- name "dark_area_pixels"
- value 2
3
- name "cloud_shadows"
- value 3
4
- name "vegetation"
- value 4
5
- name "not_vegetated"
- value 5
6
- name "water"
- value 6
7
- name "unclassified"
- value 7
8
- name "cloud_medium_probability"
- value 8
9
- name "cloud_high_probability"
- value 9
10
- name "thin_cirrus"
- value 10
11
- name "snow"
- value 11
roles[] 3 items
- 0 "data"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
TCI_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R10m/T32TPT_20210722T101031_TCI_10m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210722T101031_TCI_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135247737
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620eab3448748b6bcfc57e0adde427979a73a6f3a1909566b0af4d53f8d2845cecb"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R10m/T32TPT_20210722T101031_TCI_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 10980
- 1 10980
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:original"
- 2 "gsd:10m"
TCI_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R20m/T32TPT_20210722T101031_TCI_20m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210722T101031_TCI_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33800818
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162081237e9e923f911250aa9fd5b8a6fd28bb293e5609d416fad777e04a0ada5452"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R20m/T32TPT_20210722T101031_TCI_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:20m"
TCI_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R60m/T32TPT_20210722T101031_TCI_60m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210722T101031_TCI_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3747625
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620e7f8986ad2a7b64300a6345c57deebef4f103472edb6170da293318c73ea0418"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R60m/T32TPT_20210722T101031_TCI_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
WVP_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R10m/T32TPT_20210722T101031_WVP_10m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210722T101031_WVP_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 75451306
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620f882ea280365666fe91dd119e378e766cf1e5bb932ae14153d01b96a05f153b3"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R10m/T32TPT_20210722T101031_WVP_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
WVP_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R20m/T32TPT_20210722T101031_WVP_20m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210722T101031_WVP_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 24083956
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620f98d7425218fb1deb6fd184fb6147129565ab7f17792f416e825380b1a2453c0"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R20m/T32TPT_20210722T101031_WVP_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
WVP_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R60m/T32TPT_20210722T101031_WVP_60m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210722T101031_WVP_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3558913
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16200f371e7ec6cc95d5b1f0336544c889a93a910d2fc9bff75873a2aa3cfd696451"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/IMG_DATA/R60m/T32TPT_20210722T101031_WVP_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
thumbnail
- href "https://datahub.creodias.eu/odata/v1/Assets(3d97a474-e721-45f2-af39-2609a8612f91)/$value"
- type "image/jpeg"
- title "Quicklook"
alternate
s3
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238-ql.jpg"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
auth:refs[] 1 items
- 0 "oidc"
- file:size 45160
- file:checksum "d50110f5adbbf3fd3453e49912409feca56b78"
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238-ql.jpg"
- data_type "uint8"
- proj:code None
proj:shape[] 2 items
- 0 343
- 1 343
- alternate:name "HTTPS"
roles[] 2 items
- 0 "thumbnail"
- 1 "overview"
safe_manifest
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/manifest.safe"
- type "application/xml"
- title "manifest.safe"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(manifest.safe)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 69173
- file:checksum "d501105fa8fd2264d033f06429b2c0a54cb654"
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/manifest.safe"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
granule_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/MTD_TL.xml"
- type "application/xml"
- title "MTD_TL.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes()/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031765_20210722T101419)/Nodes(MTD_TL.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 463436
- file:checksum "d50120a592d0445f7055437c17a1416bdcc3843796aa406811bab477fcb6777e7b3d81"
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/GRANULE/L2A_T32TPT_A031765_20210722T101419/MTD_TL.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
inspire_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/INSPIRE.xml"
- type "application/xml"
- title "INSPIRE.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(INSPIRE.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 18908
- file:checksum "d501200edae014271f9a35aa6af70bfcb11232704a7c31a9da63765f25a29053a6a16c"
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/INSPIRE.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
product_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/MTD_MSIL2A.xml"
- type "application/xml"
- title "MTD_MSIL2A.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes(MTD_MSIL2A.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 55132
- file:checksum "d50120bf05814dc6ceede22537d323d55eae6bf173b031f579aba767363d9cfef452d5"
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/MTD_MSIL2A.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
datastrip_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/22/S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/DATASTRIP/DS_S2RP_20230123T074238_S20210722T101419/MTD_DS.xml"
- type "application/xml"
- title "MTD_DS.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(d0238470-a0a2-4dfa-b414-88b5728ec0fc)/Nodes(S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE)/Nodes()/Nodes(DATASTRIP)/Nodes(DS_S2RP_20230123T074238_S20210722T101419)/Nodes(MTD_DS.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 13688693
- file:checksum "d50120970dd8a3f2208e5bacbf02b4aa37960f3c530f8c58178889ebb2c1abe674b467"
- file:local_path "S2A_MSIL2A_20210722T101031_N0500_R022_T32TPT_20230123T074238.SAFE/DATASTRIP/DS_S2RP_20230123T074238_S20210722T101419/MTD_DS.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
- collection "sentinel-2-l2a"
6
- type "Feature"
- stac_version "1.1.0"
stac_extensions[] 15 items
- 0 "https://stac-extensions.github.io/eo/v2.0.0/schema.json"
- 1 "https://stac-extensions.github.io/raster/v2.0.0/schema.json"
- 2 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 3 "https://stac-extensions.github.io/projection/v2.0.0/schema.json"
- 4 "https://stac-extensions.github.io/grid/v1.1.0/schema.json"
- 5 "https://stac-extensions.github.io/view/v1.0.0/schema.json"
- 6 "https://stac-extensions.github.io/file/v2.1.0/schema.json"
- 7 "https://stac-extensions.github.io/processing/v1.2.0/schema.json"
- 8 "https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json"
- 9 "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json"
- 10 "https://stac-extensions.github.io/authentication/v1.1.0/schema.json"
- 11 "https://stac-extensions.github.io/classification/v2.0.0/schema.json"
- 12 "https://stac-extensions.github.io/product/v0.1.0/schema.json"
- 13 "https://cs-si.github.io/eopf-stac-extension/v1.2.0/schema.json"
- 14 "https://stac-extensions.github.io/storage/v2.0.0/schema.json"
- id "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 7 items
0[] 2 items
- 0 11.75279021903383
- 1 46.8651386617897
1[] 2 items
- 0 11.749950210104409
- 1 46.858084397582566
2[] 2 items
- 0 11.739752678889468
- 1 46.83282953002692
3[] 2 items
- 0 10.31188688551243
- 1 46.85818197246455
4[] 2 items
- 0 10.33660021997006
- 1 47.84592105208886
5[] 2 items
- 0 11.802846682924509
- 1 47.81947440295927
6[] 2 items
- 0 11.75279021903383
- 1 46.8651386617897
bbox[] 4 items
- 0 10.311887
- 1 46.83283
- 2 11.802847
- 3 47.845921
properties
- gsd 10
- created "2023-03-20T08:09:50.919000Z"
- updated "2024-04-30T11:29:38.517218Z"
- datetime "2021-07-20T10:15:59.024000Z"
- platform "sentinel-2b"
- grid:code "MGRS-32TPT"
- published "2023-03-20T08:19:19.448845Z"
statistics
- water 0.655219
- nodata 0.019064
- dark_area 4.377078
- vegetation 47.615534000000004
- thin_cirrus 0.071536
- cloud_shadow 1.439586
- unclassified 3.04424
- not_vegetated 7.956514000000001
- high_proba_clouds 18.807176
- medium_proba_clouds 14.191955
- saturated_defective 0.0
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 "2021-07-20T10:15:59.024Z"
- product:type "S2MSI2A"
- view:azimuth 285.7405367972596
- constellation "sentinel-2"
- eo:snow_cover 1.84
- eo:cloud_cover 33.07
- start_datetime "2021-07-20T10:15:59.024Z"
- sat:orbit_state "ascending"
storage:schemes
cdse-s3
- 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. A Global Service Load Balancer (GSLB) directs the request to either CloudFerro Cloud or OpenTelekom Cloud (OTC) S3 endpoint based on the location of the DNS resolver."
- requester_pays False
creodias-s3
- 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 "GS2B_20210720T101559_022828_N05.00"
- processing:level "L2"
- view:sun_azimuth 152.927250266687
- eopf:datastrip_id "S2B_OPER_MSI_L2A_DS_S2RP_20230214T123833_S20210720T101617_N05.00"
- processing:version "05.00"
- product:timeliness "PT24H"
- sat:absolute_orbit 22828
- sat:relative_orbit 65
- view:sun_elevation 61.044824234317204
- processing:datetime "2023-02-14T12:38:33.000000Z"
- processing:facility "ESA"
- eopf:instrument_mode "INS-NOBS"
- eopf:origin_datetime "2023-03-20T08:09:50.919000Z"
- view:incidence_angle 6.667977723637066
- product:timeliness_category "NRT"
- sat:platform_international_designator "2017-013A"
links[] 5 items
0
- rel "collection"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
1
- rel "parent"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
2
- rel "root"
- href "https://stac.dataspace.copernicus.eu/v1/"
- type "application/json"
- title "cdse-stac"
3
- rel "self"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833"
- type "application/geo+json"
4
- rel "version-history"
- href "https://trace.dataspace.copernicus.eu/api/v1/traces/name/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE.zip"
- type "application/json"
- title "Product history record from the CDSE traceability service"
assets
AOT_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R10m/T32TPT_20210720T101559_AOT_10m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210720T101559_AOT_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 6888407
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16205683ddc59b53e9963e37c84fc6b9a248369deea1883b9af9a53bc5994d92838c"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R10m/T32TPT_20210720T101559_AOT_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
AOT_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R20m/T32TPT_20210720T101559_AOT_20m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210720T101559_AOT_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 4712539
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620eaac160b3d9e314034c7551c8a1b9ee963456fcb63fd067da4f8766aff45c890"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R20m/T32TPT_20210720T101559_AOT_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
AOT_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R60m/T32TPT_20210720T101559_AOT_60m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210720T101559_AOT_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 997551
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162066b65194c79b17ea4785031e907b03497f41b8dec1874414467caf201db63a4d"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R60m/T32TPT_20210720T101559_AOT_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
B01_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R20m/T32TPT_20210720T101559_B01_20m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.442
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210720T101559_B01_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 26621679
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.344944168219
- file:checksum "162007b943209e014e2a414ad803e7d386d1972ef0dad363b84586d23b62826bc79e"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R20m/T32TPT_20210720T101559_B01_20m.jp2"
- view:incidence_angle 6.780143436783
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:upsampled"
- 3 "gsd:20m"
B01_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R60m/T32TPT_20210720T101559_B01_60m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.442
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210720T101559_B01_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3744463
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.344944168219
- file:checksum "16208dd35880b8da84add594fbceaba3df47693ca80b1573e010789f800e16267022"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R60m/T32TPT_20210720T101559_B01_60m.jp2"
- view:incidence_angle 6.780143436783
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B02_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R10m/T32TPT_20210720T101559_B02_10m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210720T101559_B02_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 128948389
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 284.869970056782
- file:checksum "1620470147947962b6ec9e777825383d3759ddb0de67e66868f029253940022a6175"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R10m/T32TPT_20210720T101559_B02_10m.jp2"
- view:incidence_angle 6.54524475777975
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B02_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R20m/T32TPT_20210720T101559_B02_20m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210720T101559_B02_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33787391
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 284.869970056782
- file:checksum "16205fac0dd0133f3089d9cb6fc3daf4994f574cfc8c69bb17701a7a051dd853bb2b"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R20m/T32TPT_20210720T101559_B02_20m.jp2"
- view:incidence_angle 6.54524475777975
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B02_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R60m/T32TPT_20210720T101559_B02_60m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210720T101559_B02_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3761494
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 284.869970056782
- file:checksum "1620d6c00aff3b7c335c7d11fc758550f408a8fab587cf7a83f7169f004d2b7079af"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R60m/T32TPT_20210720T101559_B02_60m.jp2"
- view:incidence_angle 6.54524475777975
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B03_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R10m/T32TPT_20210720T101559_B03_10m.jp2"
- type "image/jp2"
- title "Green (band 3) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210720T101559_B03_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 130768678
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.19463471447
- file:checksum "162074e7da1f7db7869afe2f8d80fefe986d67963d96e228482cbe52fc77539807b3"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R10m/T32TPT_20210720T101559_B03_10m.jp2"
- view:incidence_angle 6.57604888283767
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B03_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R20m/T32TPT_20210720T101559_B03_20m.jp2"
- type "image/jp2"
- title "Green (band 3) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210720T101559_B03_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33861096
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.19463471447
- file:checksum "162066b52b2126dee6e0f675a086c5f21f5d0e30e13bef62a4d513ac29a11619c57f"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R20m/T32TPT_20210720T101559_B03_20m.jp2"
- view:incidence_angle 6.57604888283767
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B03_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R60m/T32TPT_20210720T101559_B03_60m.jp2"
- type "image/jp2"
- title "Green (band 3) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210720T101559_B03_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3734618
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.19463471447
- file:checksum "1620194aca804243b5ec9cc2b1f2aae981072c51ce373f2756c3b0b048980f50e874"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R60m/T32TPT_20210720T101559_B03_60m.jp2"
- view:incidence_angle 6.57604888283767
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B04_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R10m/T32TPT_20210720T101559_B04_10m.jp2"
- type "image/jp2"
- title "Red (band 4) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210720T101559_B04_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 128446166
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.537478033132
- file:checksum "1620ac9e2e0338efc267f359fc02108be4fecbc5bf4c4aea9d191229cbd69929a652"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R10m/T32TPT_20210720T101559_B04_10m.jp2"
- view:incidence_angle 6.61572683073114
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B04_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R20m/T32TPT_20210720T101559_B04_20m.jp2"
- type "image/jp2"
- title "Red (band 4) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210720T101559_B04_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33881400
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.537478033132
- file:checksum "1620be671ad30acd11d89c01e7a2befa52cf050079203fdfb8bd82e95421f897f7aa"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R20m/T32TPT_20210720T101559_B04_20m.jp2"
- view:incidence_angle 6.61572683073114
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B04_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R60m/T32TPT_20210720T101559_B04_60m.jp2"
- type "image/jp2"
- title "Red (band 4) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210720T101559_B04_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3734664
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.537478033132
- file:checksum "162044670158c9129b9ca71c74e19d4ac5f8f5ec623f16a2590e51d829b959666e7a"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R60m/T32TPT_20210720T101559_B04_60m.jp2"
- view:incidence_angle 6.61572683073114
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B05_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R20m/T32TPT_20210720T101559_B05_20m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210720T101559_B05_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33889613
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.69494354465
- file:checksum "16202981d77482d0673df6c27df8713263118922f51cc376caf7bf8fba0affca450c"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R20m/T32TPT_20210720T101559_B05_20m.jp2"
- view:incidence_angle 6.63977140262818
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B05_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R60m/T32TPT_20210720T101559_B05_60m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210720T101559_B05_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3771026
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.69494354465
- file:checksum "162045e627beb6bb2f8c94d39477c08c0ab5728f934b724624fd2bc9cacdf4a633a3"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R60m/T32TPT_20210720T101559_B05_60m.jp2"
- view:incidence_angle 6.63977140262818
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B06_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R20m/T32TPT_20210720T101559_B06_20m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 20m"
- description "S3 storage provided by CloudFerro Cloud and OpenTelekom Cloud (OTC). Use endpoint URL `https://eodata.dataspace.copernicus.eu`."
bands[] 1 items
0
- eo:center_wavelength 0.739
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210720T101559_B06_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33855971
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.868780736228
- file:checksum "1620d282419de928fe4d99bbb2325f3d5e93d23d942c72dcc550e69bb218597a63a0"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R20m/T32TPT_20210720T101559_B06_20m.jp2"
- view:incidence_angle 6.66722240830073
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B06_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R60m/T32TPT_20210720T101559_B06_60m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.739
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210720T101559_B06_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3744701
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.868780736228
- file:checksum "16204f69e8765c30555fc3b31075a721a724d04cff158f6d3c7b7a728cfce5cf7180"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R60m/T32TPT_20210720T101559_B06_60m.jp2"
- view:incidence_angle 6.66722240830073
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B07_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R20m/T32TPT_20210720T101559_B07_20m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.78
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210720T101559_B07_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33712739
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.037592610372
- file:checksum "16204199b77898cfb3262df88e7d8ef9a76c3f3024261a5947b37548ca85a7bb8ac5"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R20m/T32TPT_20210720T101559_B07_20m.jp2"
- view:incidence_angle 6.70352279566993
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B07_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R60m/T32TPT_20210720T101559_B07_60m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.78
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210720T101559_B07_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3742992
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.037592610372
- file:checksum "162062f76349202dfc9974028c35a768ce8f510f005d449958f1884d2cb8e1b00e6c"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R60m/T32TPT_20210720T101559_B07_60m.jp2"
- view:incidence_angle 6.70352279566993
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B08_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R10m/T32TPT_20210720T101559_B08_10m.jp2"
- type "image/jp2"
- title "NIR 1 (band 8) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.454
- name "B08"
- eo:common_name "nir"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210720T101559_B08_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135215387
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.019328865574
- file:checksum "1620f8b3c3021f323c555ad12abff7eaa1d738f1f9db69a62d76a97389a2fa29ee94"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R10m/T32TPT_20210720T101559_B08_10m.jp2"
- view:incidence_angle 6.55642746482028
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B09_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R60m/T32TPT_20210720T101559_B09_60m.jp2"
- type "image/jp2"
- title "NIR 3 (band 9) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.943
- eo:full_width_half_max 0.479
- name "B09"
- eo:common_name "nir09"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210720T101559_B09_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3746047
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.51806867031
- file:checksum "1620673cf6fd90fb88febb439e33558ab6f0ea15af4a36b6d087e7c5b77260f01d49"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R60m/T32TPT_20210720T101559_B09_60m.jp2"
- view:incidence_angle 6.82681496329165
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B11_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R20m/T32TPT_20210720T101559_B11_20m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 20m"
bands[] 1 items
0
- eo:center_wavelength 1.61
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210720T101559_B11_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33786317
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.779951604837
- file:checksum "1620f93dbdadfb4c5e221b496a297a6539e8dac80c53343826dfb35be07522826721"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R20m/T32TPT_20210720T101559_B11_20m.jp2"
- view:incidence_angle 6.6667914263845
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B11_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R60m/T32TPT_20210720T101559_B11_60m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 60m"
bands[] 1 items
0
- eo:center_wavelength 1.61
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210720T101559_B11_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3749660
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.779951604837
- file:checksum "16202eeea5f3b62fadb2f1b6542e79888092291aeea2dc1e623d9d4661ed5a0352cb"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R60m/T32TPT_20210720T101559_B11_60m.jp2"
- view:incidence_angle 6.6667914263845
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B12_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R20m/T32TPT_20210720T101559_B12_20m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 20m"
bands[] 1 items
0
- eo:center_wavelength 2.186
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210720T101559_B12_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33796661
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.205921723414
- file:checksum "1620293640bd5939d219690dea4bd1360347b75b2152d99f6e2d6223cbab000ba47a"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R20m/T32TPT_20210720T101559_B12_20m.jp2"
- view:incidence_angle 6.75687899425808
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B12_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R60m/T32TPT_20210720T101559_B12_60m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 60m"
bands[] 1 items
0
- eo:center_wavelength 2.186
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210720T101559_B12_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3733778
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.205921723414
- file:checksum "162063d47f4f88ed5da5d1f36251a77b359d4616d393995c314e7401d97403455bfd"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R60m/T32TPT_20210720T101559_B12_60m.jp2"
- view:incidence_angle 6.75687899425808
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B8A_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R20m/T32TPT_20210720T101559_B8A_20m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.864
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210720T101559_B8A_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33886184
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.216846880666
- file:checksum "162092467e6d348ed824c70da8969c875ba922e902c65583d68840dd55327c3376c1"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R20m/T32TPT_20210720T101559_B8A_20m.jp2"
- view:incidence_angle 6.74285941889029
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B8A_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R60m/T32TPT_20210720T101559_B8A_60m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.864
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210720T101559_B8A_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3741964
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.216846880666
- file:checksum "1620504954a4c02f7d829e64c26ea8085dd516546cc42e3b2801d7eec19c21158c9d"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R60m/T32TPT_20210720T101559_B8A_60m.jp2"
- view:incidence_angle 6.74285941889029
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
Product
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/$value"
- type "application/zip"
- title "Zipped product"
auth:refs[] 1 items
- 0 "oidc"
- file:size 1224771243
- storage:refs "𒍟※"
- file:checksum "d501102a77542e90930dc3f1b2b90e42ae5422"
- alternate:name "HTTPS"
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE.zip"
roles[] 3 items
- 0 "data"
- 1 "metadata"
- 2 "archive"
SCL_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R20m/T32TPT_20210720T101559_SCL_20m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210720T101559_SCL_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 4312092
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620e7239a8d89e89b8280534df7f1383cdb25712d813bd57813c9ea44e4efa92e8f"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R20m/T32TPT_20210720T101559_SCL_20m.jp2"
classification:classes[] 12 items
0
- percentage 0.019064
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
- percentage 0.0
2
- percentage 4.377078
- name "dark_area_pixels"
- value 2
3
- percentage 1.439586
- name "cloud_shadows"
- value 3
4
- percentage 47.615534000000004
- name "vegetation"
- value 4
5
- percentage 7.956514000000001
- name "not_vegetated"
- value 5
6
- percentage 0.655219
- name "water"
- value 6
7
- percentage 3.04424
- name "unclassified"
- value 7
8
- percentage 14.191955
- name "cloud_medium_probability"
- value 8
9
- percentage 18.807176
- name "cloud_high_probability"
- value 9
10
- percentage 0.071536
- name "thin_cirrus"
- value 10
11
- percentage 1.8411610000000003
- name "snow"
- value 11
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "data"
- 1 "sampling:original"
- 2 "gsd:20m"
SCL_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R60m/T32TPT_20210720T101559_SCL_60m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210720T101559_SCL_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 1015030
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620cc72a92c01019324aafb17b8e44fdbb6488d206c31471bda4388e9f0f1f871cd"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R60m/T32TPT_20210720T101559_SCL_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
classification:classes[] 12 items
0
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
2
- name "dark_area_pixels"
- value 2
3
- name "cloud_shadows"
- value 3
4
- name "vegetation"
- value 4
5
- name "not_vegetated"
- value 5
6
- name "water"
- value 6
7
- name "unclassified"
- value 7
8
- name "cloud_medium_probability"
- value 8
9
- name "cloud_high_probability"
- value 9
10
- name "thin_cirrus"
- value 10
11
- name "snow"
- value 11
roles[] 3 items
- 0 "data"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
TCI_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R10m/T32TPT_20210720T101559_TCI_10m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210720T101559_TCI_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135528592
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16206685502610d7655f3a42fde10a06b92e6cc4f7776ceb4e14254b73346076e9d3"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R10m/T32TPT_20210720T101559_TCI_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 10980
- 1 10980
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:original"
- 2 "gsd:10m"
TCI_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R20m/T32TPT_20210720T101559_TCI_20m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210720T101559_TCI_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33888097
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16200bb654a3cd4f1bde91477b82aef0e06a66a16a421867081eab85501429d9e8d8"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R20m/T32TPT_20210720T101559_TCI_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:20m"
TCI_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R60m/T32TPT_20210720T101559_TCI_60m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210720T101559_TCI_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3770594
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620365e341a423166fc55218af035ac31552e729edeba9572072b2334635821435b"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R60m/T32TPT_20210720T101559_TCI_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
WVP_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R10m/T32TPT_20210720T101559_WVP_10m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210720T101559_WVP_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 72796880
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620c9dd4f0a6f54262086940c9f2c54c4c768c714e99dac3ceb690083c946747739"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R10m/T32TPT_20210720T101559_WVP_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
WVP_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R20m/T32TPT_20210720T101559_WVP_20m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210720T101559_WVP_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 23903128
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16204ae0fa8c854140ca7eca7fa460220fecaa099035a3e915448da495d083f278c6"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R20m/T32TPT_20210720T101559_WVP_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
WVP_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R60m/T32TPT_20210720T101559_WVP_60m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210720T101559_WVP_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3740631
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16200fb6e68e1ff48308c5f2d6af0ac7c2969a4a170ed8de5e60507a26fe1ca47c9a"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/IMG_DATA/R60m/T32TPT_20210720T101559_WVP_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
thumbnail
- href "https://datahub.creodias.eu/odata/v1/Assets(4eda4684-57b5-4a50-9e20-368901930e13)/$value"
- type "image/jpeg"
- title "Quicklook"
alternate
s3
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833-ql.jpg"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
auth:refs[] 1 items
- 0 "oidc"
- file:size 55139
- file:checksum "d50110732409cb46decbf04da84e04c991562b"
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833-ql.jpg"
- data_type "uint8"
- proj:code None
proj:shape[] 2 items
- 0 343
- 1 343
- alternate:name "HTTPS"
roles[] 2 items
- 0 "thumbnail"
- 1 "overview"
safe_manifest
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/manifest.safe"
- type "application/xml"
- title "manifest.safe"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(manifest.safe)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 68982
- file:checksum "d50110f1d6d2c99b5cee4a49523a6a42611322"
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/manifest.safe"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
granule_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/MTD_TL.xml"
- type "application/xml"
- title "MTD_TL.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes()/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022828_20210720T101617)/Nodes(MTD_TL.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 547708
- file:checksum "d5012084560bad7defa7da1e6c4d88d794c228c9187a09c4f9fc60a08ab41f65d968e8"
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/GRANULE/L2A_T32TPT_A022828_20210720T101617/MTD_TL.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
inspire_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/INSPIRE.xml"
- type "application/xml"
- title "INSPIRE.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(INSPIRE.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 18716
- file:checksum "d5012073aa8a8da940e25578e0e45759d7bb43775f71232d213ca853590e56ffc66e3d"
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/INSPIRE.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
product_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/MTD_MSIL2A.xml"
- type "application/xml"
- title "MTD_MSIL2A.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes(MTD_MSIL2A.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 54815
- file:checksum "d50120c70cbb71fb3e09991d0cbb847c0e86bbe94d8de9ae076deebbb75e6739e21196"
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/MTD_MSIL2A.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
datastrip_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/20/S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/DATASTRIP/DS_S2RP_20230214T123833_S20210720T101617/MTD_DS.xml"
- type "application/xml"
- title "MTD_DS.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(5c88cf84-9fb3-4466-91b7-3f4eaa19810e)/Nodes(S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE)/Nodes()/Nodes(DATASTRIP)/Nodes(DS_S2RP_20230214T123833_S20210720T101617)/Nodes(MTD_DS.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 23621785
- file:checksum "d501207987e7c3da5be0da17d4d5174a1b4a72b6a9de2d75be1c99437d3b19e625a504"
- file:local_path "S2B_MSIL2A_20210720T101559_N0500_R065_T32TPT_20230214T123833.SAFE/DATASTRIP/DS_S2RP_20230214T123833_S20210720T101617/MTD_DS.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
- collection "sentinel-2-l2a"
7
- type "Feature"
- stac_version "1.1.0"
stac_extensions[] 15 items
- 0 "https://stac-extensions.github.io/eo/v2.0.0/schema.json"
- 1 "https://stac-extensions.github.io/raster/v2.0.0/schema.json"
- 2 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 3 "https://stac-extensions.github.io/projection/v2.0.0/schema.json"
- 4 "https://stac-extensions.github.io/grid/v1.1.0/schema.json"
- 5 "https://stac-extensions.github.io/view/v1.0.0/schema.json"
- 6 "https://stac-extensions.github.io/file/v2.1.0/schema.json"
- 7 "https://stac-extensions.github.io/processing/v1.2.0/schema.json"
- 8 "https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json"
- 9 "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json"
- 10 "https://stac-extensions.github.io/authentication/v1.1.0/schema.json"
- 11 "https://stac-extensions.github.io/classification/v2.0.0/schema.json"
- 12 "https://stac-extensions.github.io/product/v0.1.0/schema.json"
- 13 "https://cs-si.github.io/eopf-stac-extension/v1.2.0/schema.json"
- 14 "https://stac-extensions.github.io/storage/v2.0.0/schema.json"
- id "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 12 items
0[] 2 items
- 0 10.314683349556136
- 1 46.969950654487874
1[] 2 items
- 0 10.324039808982656
- 1 46.99634300136923
2[] 2 items
- 0 10.374843781510826
- 1 47.143406123653655
3[] 2 items
- 0 10.426735912847017
- 1 47.29024404225541
4[] 2 items
- 0 10.481711808788445
- 1 47.4362764447358
5[] 2 items
- 0 10.533119215302053
- 1 47.58322059784887
6[] 2 items
- 0 10.586045242947556
- 1 47.72977586935693
7[] 2 items
- 0 10.626512691807953
- 1 47.84069190841165
8[] 2 items
- 0 11.802846682924509
- 1 47.81947440295927
9[] 2 items
- 0 11.751084998620154
- 1 46.83262831925138
10[] 2 items
- 0 10.31188688551243
- 1 46.85818197246455
11[] 2 items
- 0 10.314683349556136
- 1 46.969950654487874
bbox[] 4 items
- 0 10.311887
- 1 46.832628
- 2 11.802847
- 3 47.840692
properties
- gsd 10
- created "2023-03-18T20:33:27.063000Z"
- updated "2024-04-30T04:56:10.739756Z"
- datetime "2021-07-12T10:10:31.024000Z"
- platform "sentinel-2a"
- grid:code "MGRS-32TPT"
- published "2023-03-19T01:19:50.936597Z"
statistics
- water 0.761813
- nodata 8.881672
- dark_area 0.975234
- vegetation 69.761562
- thin_cirrus 5.44046
- cloud_shadow 0.006361
- unclassified 1.6202069999999997
- not_vegetated 11.405131
- high_proba_clouds 1.5410789999999999
- medium_proba_clouds 4.082979
- saturated_defective 0.0
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 "2021-07-12T10:10:31.024Z"
- product:type "S2MSI2A"
- view:azimuth 104.26218104693083
- constellation "sentinel-2"
- eo:snow_cover 4.41
- eo:cloud_cover 11.06
- start_datetime "2021-07-12T10:10:31.024Z"
- sat:orbit_state "descending"
storage:schemes
cdse-s3
- 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. A Global Service Load Balancer (GSLB) directs the request to either CloudFerro Cloud or OpenTelekom Cloud (OTC) S3 endpoint based on the location of the DNS resolver."
- requester_pays False
creodias-s3
- 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 "GS2A_20210712T101031_031622_N05.00"
- processing:level "L2"
- view:sun_azimuth 147.752070657772
- eopf:datastrip_id "S2A_OPER_MSI_L2A_DS_S2RP_20230206T131341_S20210712T101027_N05.00"
- processing:version "05.00"
- product:timeliness "PT24H"
- sat:absolute_orbit 31622
- sat:relative_orbit 22
- view:sun_elevation 61.5132720555077
- processing:datetime "2023-02-06T13:13:41.000000Z"
- processing:facility "ESA"
- eopf:instrument_mode "INS-NOBS"
- eopf:origin_datetime "2023-03-18T20:33:27.063000Z"
- view:incidence_angle 7.932111732184337
- product:timeliness_category "NRT"
- sat:platform_international_designator "2015-028A"
links[] 5 items
0
- rel "collection"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
1
- rel "parent"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
2
- rel "root"
- href "https://stac.dataspace.copernicus.eu/v1/"
- type "application/json"
- title "cdse-stac"
3
- rel "self"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341"
- type "application/geo+json"
4
- rel "version-history"
- href "https://trace.dataspace.copernicus.eu/api/v1/traces/name/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE.zip"
- type "application/json"
- title "Product history record from the CDSE traceability service"
assets
AOT_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R10m/T32TPT_20210712T101031_AOT_10m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210712T101031_AOT_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 6433296
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620b1c6db6712e1c3227f2700adbbd34477ad9d8417c17780e024945ba0fbaee43b"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R10m/T32TPT_20210712T101031_AOT_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
AOT_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R20m/T32TPT_20210712T101031_AOT_20m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210712T101031_AOT_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 4402450
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16206b3bd91f3131963692783b8bed5aa367c78382769edbfe3a5503bfda86122199"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R20m/T32TPT_20210712T101031_AOT_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
AOT_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R60m/T32TPT_20210712T101031_AOT_60m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210712T101031_AOT_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 931733
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162042c26255254dfe3654cbf74dd44858100153dad51b2f5d5d934761562742f623"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R60m/T32TPT_20210712T101031_AOT_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
B01_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R20m/T32TPT_20210712T101031_B01_20m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.443
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210712T101031_B01_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 21075933
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.18021502008
- file:checksum "1620e57ff7015cbdf76fdda189946df16af2eb6919162cb2eac8b233d75f179a16f4"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R20m/T32TPT_20210712T101031_B01_20m.jp2"
- view:incidence_angle 8.03757660843293
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:upsampled"
- 3 "gsd:20m"
B01_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R60m/T32TPT_20210712T101031_B01_60m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.443
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210712T101031_B01_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3764049
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.18021502008
- file:checksum "162085ecc97386b8d05df59c2e64503403ef7e152d8231b98d63ab7ff7e4ccba9a94"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R60m/T32TPT_20210712T101031_B01_60m.jp2"
- view:incidence_angle 8.03757660843293
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B02_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R10m/T32TPT_20210712T101031_B02_10m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210712T101031_B02_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 113599775
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.346755024603
- file:checksum "162089912ac50659b55a90aa7b3e3152aa267eafd77fb2f8e289cbcf03402bedc4d4"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R10m/T32TPT_20210712T101031_B02_10m.jp2"
- view:incidence_angle 7.83345290693407
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B02_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R20m/T32TPT_20210712T101031_B02_20m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210712T101031_B02_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 32446539
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.346755024603
- file:checksum "1620efc1af59306150f2b5d70f22fa92f5c14cce1d9a95abb7de9b166acc3fda8bed"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R20m/T32TPT_20210712T101031_B02_20m.jp2"
- view:incidence_angle 7.83345290693407
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B02_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R60m/T32TPT_20210712T101031_B02_60m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210712T101031_B02_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3724614
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.346755024603
- file:checksum "1620409dd28c916467f69496a2df58ff288599cbfafe5dbad8b30b9bdd9314e41b0e"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R60m/T32TPT_20210712T101031_B02_60m.jp2"
- view:incidence_angle 7.83345290693407
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B03_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R10m/T32TPT_20210712T101031_B03_10m.jp2"
- type "image/jp2"
- title "Green (band 3) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210712T101031_B03_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 116778643
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.31603225271
- file:checksum "1620399d5df27bc11767aa0caec2b532e1e9297411ff9cc7cd5d7e643b26ae2b17d1"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R10m/T32TPT_20210712T101031_B03_10m.jp2"
- view:incidence_angle 7.85240980385053
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B03_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R20m/T32TPT_20210712T101031_B03_20m.jp2"
- type "image/jp2"
- title "Green (band 3) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210712T101031_B03_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33501068
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.31603225271
- file:checksum "1620c8fbe066ef6aedabce160b2a47d243af186678621d40a4584f23d6c4b6f6f491"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R20m/T32TPT_20210712T101031_B03_20m.jp2"
- view:incidence_angle 7.85240980385053
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B03_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R60m/T32TPT_20210712T101031_B03_60m.jp2"
- type "image/jp2"
- title "Green (band 3) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210712T101031_B03_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3743842
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.31603225271
- file:checksum "16206084c345a19bf6ff0fc7e8f60977abf7642586a90e447162a1fdbced99c457b9"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R60m/T32TPT_20210712T101031_B03_60m.jp2"
- view:incidence_angle 7.85240980385053
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B04_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R10m/T32TPT_20210712T101031_B04_10m.jp2"
- type "image/jp2"
- title "Red (band 4) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210712T101031_B04_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 113612521
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.275691085726
- file:checksum "16206fbf70ce528793f22eaa02484fc8a88ec09950a6a6b20b4dab2a769af8705c5d"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R10m/T32TPT_20210712T101031_B04_10m.jp2"
- view:incidence_angle 7.88669820572538
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B04_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R20m/T32TPT_20210712T101031_B04_20m.jp2"
- type "image/jp2"
- title "Red (band 4) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210712T101031_B04_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33147035
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.275691085726
- file:checksum "1620a09e74fdcf62a4d969cd7c8995cd8c18e6b1dc05832397b3327ae7ae4bed795e"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R20m/T32TPT_20210712T101031_B04_20m.jp2"
- view:incidence_angle 7.88669820572538
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B04_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R60m/T32TPT_20210712T101031_B04_60m.jp2"
- type "image/jp2"
- title "Red (band 4) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210712T101031_B04_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3745999
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.275691085726
- file:checksum "16204e7cf188dc14b62bae065eb3fa7c647621e8752d434e809a3f072cf6169ae260"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R60m/T32TPT_20210712T101031_B04_60m.jp2"
- view:incidence_angle 7.88669820572538
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B05_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R20m/T32TPT_20210712T101031_B05_20m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210712T101031_B05_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33632916
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.246400149166
- file:checksum "16206fe2e18f790c9b7bfed692d0ca5bcd30aa186210832181c8c42c11b5111a25d1"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R20m/T32TPT_20210712T101031_B05_20m.jp2"
- view:incidence_angle 7.90908754865286
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B05_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R60m/T32TPT_20210712T101031_B05_60m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210712T101031_B05_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3738215
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.246400149166
- file:checksum "16205f0d968280f810fa3de43407cdc8d6eae1a9e9fd1b63197e168c32d430410ca0"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R60m/T32TPT_20210712T101031_B05_60m.jp2"
- view:incidence_angle 7.90908754865286
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B06_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R20m/T32TPT_20210712T101031_B06_20m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 20m"
- description "S3 storage provided by CloudFerro Cloud and OpenTelekom Cloud (OTC). Use endpoint URL `https://eodata.dataspace.copernicus.eu`."
bands[] 1 items
0
- eo:center_wavelength 0.741
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210712T101031_B06_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33740535
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.216225428352
- file:checksum "16205411e32147a2c8a0b761939aefde26bf6e0e8b6dc754d4adaf181a41aacb6674"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R20m/T32TPT_20210712T101031_B06_20m.jp2"
- view:incidence_angle 7.9343518337412
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B06_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R60m/T32TPT_20210712T101031_B06_60m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.741
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210712T101031_B06_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3754064
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.216225428352
- file:checksum "162073ac20fd23fa64f4c57b5dea27dd27cd071d161bda569d8b6462932d9983e23e"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R60m/T32TPT_20210712T101031_B06_60m.jp2"
- view:incidence_angle 7.9343518337412
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B07_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R20m/T32TPT_20210712T101031_B07_20m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210712T101031_B07_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33748711
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.198087189257
- file:checksum "1620cfbc511c3966eb699fa0a989df55b50422ee6718145ad3043c53930918b03151"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R20m/T32TPT_20210712T101031_B07_20m.jp2"
- view:incidence_angle 7.96226671003535
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B07_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R60m/T32TPT_20210712T101031_B07_60m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210712T101031_B07_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3742165
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.198087189257
- file:checksum "162073b163871b52d11490e2bcc7adaad319905a8ba192b25674bf03569c941004a3"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R60m/T32TPT_20210712T101031_B07_60m.jp2"
- view:incidence_angle 7.96226671003535
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B08_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R10m/T32TPT_20210712T101031_B08_10m.jp2"
- type "image/jp2"
- title "NIR 1 (band 8) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.454
- name "B08"
- eo:common_name "nir"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210712T101031_B08_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135361808
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.318072526971
- file:checksum "1620ff335d4682c9b9ea58216f350a31f75b874c39704a8242662f6ef23f0fa27709"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R10m/T32TPT_20210712T101031_B08_10m.jp2"
- view:incidence_angle 7.84163003486496
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B09_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R60m/T32TPT_20210712T101031_B09_60m.jp2"
- type "image/jp2"
- title "NIR 3 (band 9) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.945
- eo:full_width_half_max 0.479
- name "B09"
- eo:common_name "nir09"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210712T101031_B09_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3760778
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.151394209136
- file:checksum "16206d0354aa0da6f77262b3f5e29d64344e2e3c8ca909dae8d236e7e79608255d10"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R60m/T32TPT_20210712T101031_B09_60m.jp2"
- view:incidence_angle 8.07401142704319
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B11_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R20m/T32TPT_20210712T101031_B11_20m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 20m"
bands[] 1 items
0
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210712T101031_B11_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33248375
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.3314971154
- file:checksum "1620b326463c889918d3faf10c197186e2663a1d1f9a85f9296fdbc5ea3b2616f0cf"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R20m/T32TPT_20210712T101031_B11_20m.jp2"
- view:incidence_angle 7.92469098484844
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B11_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R60m/T32TPT_20210712T101031_B11_60m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 60m"
bands[] 1 items
0
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210712T101031_B11_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3754662
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.3314971154
- file:checksum "16204ccc4412f4bd33c282f6d47fdf596fff04122ec372f8436b86e6bfacee85e287"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R60m/T32TPT_20210712T101031_B11_60m.jp2"
- view:incidence_angle 7.92469098484844
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B12_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R20m/T32TPT_20210712T101031_B12_20m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 20m"
bands[] 1 items
0
- eo:center_wavelength 2.202
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210712T101031_B12_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 31971121
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.271343888164
- file:checksum "1620e4e97a3fd6da963e74973c74930f9a4b32c289ece65af76c147dbd8593942c38"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R20m/T32TPT_20210712T101031_B12_20m.jp2"
- view:incidence_angle 7.99858270200443
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B12_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R60m/T32TPT_20210712T101031_B12_60m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 60m"
bands[] 1 items
0
- eo:center_wavelength 2.202
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210712T101031_B12_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3745602
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.271343888164
- file:checksum "1620e27b799bb284b41a248b24ff517da45671c521483ba8088cdcbc7f81528fe508"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R60m/T32TPT_20210712T101031_B12_60m.jp2"
- view:incidence_angle 7.99858270200443
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B8A_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R20m/T32TPT_20210712T101031_B8A_20m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210712T101031_B8A_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33748579
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.168820667533
- file:checksum "16206ea63a28d3dad6fb7c997fad9676085ef5cdca4134c666b40e8cc59b23c5df32"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R20m/T32TPT_20210712T101031_B8A_20m.jp2"
- view:incidence_angle 7.99275969342121
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B8A_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R60m/T32TPT_20210712T101031_B8A_60m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210712T101031_B8A_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3740777
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.168820667533
- file:checksum "1620a863f7c2e80e0b48ac4a8addb36a4542701b25407e306ef7b706a983f553093a"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R60m/T32TPT_20210712T101031_B8A_60m.jp2"
- view:incidence_angle 7.99275969342121
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
Product
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/$value"
- type "application/zip"
- title "Zipped product"
auth:refs[] 1 items
- 0 "oidc"
- file:size 1176088269
- storage:refs "𒍟※"
- file:checksum "d501108d28951341d0c7c02159895304fe03c4"
- alternate:name "HTTPS"
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE.zip"
roles[] 3 items
- 0 "data"
- 1 "metadata"
- 2 "archive"
SCL_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R20m/T32TPT_20210712T101031_SCL_20m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210712T101031_SCL_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 2371856
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620c92ad79a251692c6455e1dc7ae9a24abb1001239e130b39146f5a2a964696c27"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R20m/T32TPT_20210712T101031_SCL_20m.jp2"
classification:classes[] 12 items
0
- percentage 8.881672
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
- percentage 0.0
2
- percentage 0.975234
- name "dark_area_pixels"
- value 2
3
- percentage 0.006361
- name "cloud_shadows"
- value 3
4
- percentage 69.761562
- name "vegetation"
- value 4
5
- percentage 11.405131
- name "not_vegetated"
- value 5
6
- percentage 0.761813
- name "water"
- value 6
7
- percentage 1.6202069999999997
- name "unclassified"
- value 7
8
- percentage 4.082979
- name "cloud_medium_probability"
- value 8
9
- percentage 1.5410789999999999
- name "cloud_high_probability"
- value 9
10
- percentage 5.44046
- name "thin_cirrus"
- value 10
11
- percentage 4.405171
- name "snow"
- value 11
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "data"
- 1 "sampling:original"
- 2 "gsd:20m"
SCL_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R60m/T32TPT_20210712T101031_SCL_60m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210712T101031_SCL_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 556204
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620f7e1784c5f11c972b6c4ac21c09110cc0d60e4491138f5eb9b753c7970d7809d"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R60m/T32TPT_20210712T101031_SCL_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
classification:classes[] 12 items
0
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
2
- name "dark_area_pixels"
- value 2
3
- name "cloud_shadows"
- value 3
4
- name "vegetation"
- value 4
5
- name "not_vegetated"
- value 5
6
- name "water"
- value 6
7
- name "unclassified"
- value 7
8
- name "cloud_medium_probability"
- value 8
9
- name "cloud_high_probability"
- value 9
10
- name "thin_cirrus"
- value 10
11
- name "snow"
- value 11
roles[] 3 items
- 0 "data"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
TCI_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R10m/T32TPT_20210712T101031_TCI_10m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210712T101031_TCI_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135013745
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620e6ead1bd6a035c202bd6c83167be15e664e6a11e5ae260715d08cd6511c545b1"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R10m/T32TPT_20210712T101031_TCI_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 10980
- 1 10980
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:original"
- 2 "gsd:10m"
TCI_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R20m/T32TPT_20210712T101031_TCI_20m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210712T101031_TCI_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33898866
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620b10654bffa3ebc70f0b2bcfe30b6160d93d3efa97082641107064e2871da9a94"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R20m/T32TPT_20210712T101031_TCI_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:20m"
TCI_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R60m/T32TPT_20210712T101031_TCI_60m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210712T101031_TCI_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3733098
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162027bd3651de600f16c75f6f3e7aef732ec21c1313d062b86a7e73b64d31f6eacc"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R60m/T32TPT_20210712T101031_TCI_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
WVP_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R10m/T32TPT_20210712T101031_WVP_10m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210712T101031_WVP_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 89078741
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162034d36db229cb2dbcc85e906ac991a9ef9b625735d06018e53e55785306c15f25"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R10m/T32TPT_20210712T101031_WVP_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
WVP_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R20m/T32TPT_20210712T101031_WVP_20m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210712T101031_WVP_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 27860048
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16203cf7869ece411e86f5c55583e1797f152aa0dd1fbb8e694537523891c0eff069"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R20m/T32TPT_20210712T101031_WVP_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
WVP_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R60m/T32TPT_20210712T101031_WVP_60m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210712T101031_WVP_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3773608
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16206395f669ca553315db18500a75a6685e9d4dee8b462ec923a5726942def1d11e"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/IMG_DATA/R60m/T32TPT_20210712T101031_WVP_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
thumbnail
- href "https://datahub.creodias.eu/odata/v1/Assets(d6a95030-6382-4b3f-8a6b-4d482eb6baa0)/$value"
- type "image/jpeg"
- title "Quicklook"
alternate
s3
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341-ql.jpg"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
auth:refs[] 1 items
- 0 "oidc"
- file:size 39554
- file:checksum "d501109199b1d929249bd857518e912a3674f9"
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341-ql.jpg"
- data_type "uint8"
- proj:code None
proj:shape[] 2 items
- 0 343
- 1 343
- alternate:name "HTTPS"
roles[] 2 items
- 0 "thumbnail"
- 1 "overview"
safe_manifest
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/manifest.safe"
- type "application/xml"
- title "manifest.safe"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(manifest.safe)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 69172
- file:checksum "d50110d875e9ea6ce41e3e35dd2d965f7e63e2"
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/manifest.safe"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
granule_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/MTD_TL.xml"
- type "application/xml"
- title "MTD_TL.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes()/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031622_20210712T101027)/Nodes(MTD_TL.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 463541
- file:checksum "d501207b24786e26088832ff29fc6dabce2bc5198feab8a71d3301bbef408c05a1ddb1"
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/GRANULE/L2A_T32TPT_A031622_20210712T101027/MTD_TL.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
inspire_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/INSPIRE.xml"
- type "application/xml"
- title "INSPIRE.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(INSPIRE.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 18907
- file:checksum "d5012035432cc55ee69cbee6f8711c52366f4772ecdc912a6b232724ba06a8517b4b0b"
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/INSPIRE.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
product_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/MTD_MSIL2A.xml"
- type "application/xml"
- title "MTD_MSIL2A.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes(MTD_MSIL2A.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 55241
- file:checksum "d50120dbda33a3ea7828625bbb7a621f8936050b14eddec1efb9cfb4234ca76cf00b62"
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/MTD_MSIL2A.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
datastrip_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/12/S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/DATASTRIP/DS_S2RP_20230206T131341_S20210712T101027/MTD_DS.xml"
- type "application/xml"
- title "MTD_DS.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(19011b31-91de-408b-9b24-c9e63ef4b9ec)/Nodes(S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE)/Nodes()/Nodes(DATASTRIP)/Nodes(DS_S2RP_20230206T131341_S20210712T101027)/Nodes(MTD_DS.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 20435466
- file:checksum "d501203fd7a50a8cae2a4e13bc4faa0c4447783d9128db1201015d32ec3d77aae70ea4"
- file:local_path "S2A_MSIL2A_20210712T101031_N0500_R022_T32TPT_20230206T131341.SAFE/DATASTRIP/DS_S2RP_20230206T131341_S20210712T101027/MTD_DS.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
- collection "sentinel-2-l2a"
8
- type "Feature"
- stac_version "1.1.0"
stac_extensions[] 15 items
- 0 "https://stac-extensions.github.io/eo/v2.0.0/schema.json"
- 1 "https://stac-extensions.github.io/raster/v2.0.0/schema.json"
- 2 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 3 "https://stac-extensions.github.io/projection/v2.0.0/schema.json"
- 4 "https://stac-extensions.github.io/grid/v1.1.0/schema.json"
- 5 "https://stac-extensions.github.io/view/v1.0.0/schema.json"
- 6 "https://stac-extensions.github.io/file/v2.1.0/schema.json"
- 7 "https://stac-extensions.github.io/processing/v1.2.0/schema.json"
- 8 "https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json"
- 9 "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json"
- 10 "https://stac-extensions.github.io/authentication/v1.1.0/schema.json"
- 11 "https://stac-extensions.github.io/classification/v2.0.0/schema.json"
- 12 "https://stac-extensions.github.io/product/v0.1.0/schema.json"
- 13 "https://cs-si.github.io/eopf-stac-extension/v1.2.0/schema.json"
- 14 "https://stac-extensions.github.io/storage/v2.0.0/schema.json"
- id "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 6 items
0[] 2 items
- 0 11.752591785157684
- 1 46.86135548324399
1[] 2 items
- 0 11.740330882174161
- 1 46.8328192637501
2[] 2 items
- 0 10.31188688551243
- 1 46.85818197246455
3[] 2 items
- 0 10.33660021997006
- 1 47.84592105208886
4[] 2 items
- 0 11.802846682924509
- 1 47.81947440295927
5[] 2 items
- 0 11.752591785157684
- 1 46.86135548324399
bbox[] 4 items
- 0 10.311887
- 1 46.832819
- 2 11.802847
- 3 47.845921
properties
- gsd 10
- created "2023-03-26T00:17:44.429000Z"
- updated "2024-04-30T13:11:22.727950Z"
- datetime "2021-07-10T10:15:59.024000Z"
- platform "sentinel-2b"
- grid:code "MGRS-32TPT"
- published "2023-03-26T00:45:03.660471Z"
statistics
- water 0.490549
- nodata 0.019655
- dark_area 2.299675
- vegetation 62.775427
- thin_cirrus 11.494451
- cloud_shadow 1.172576
- unclassified 0.419149
- not_vegetated 8.621965
- high_proba_clouds 5.011237
- medium_proba_clouds 4.329954
- saturated_defective 0.0
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 "2021-07-10T10:15:59.024Z"
- product:type "S2MSI2A"
- view:azimuth 285.73363314015853
- constellation "sentinel-2"
- eo:snow_cover 3.39
- eo:cloud_cover 20.84
- start_datetime "2021-07-10T10:15:59.024Z"
- sat:orbit_state "descending"
storage:schemes
cdse-s3
- 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. A Global Service Load Balancer (GSLB) directs the request to either CloudFerro Cloud or OpenTelekom Cloud (OTC) S3 endpoint based on the location of the DNS resolver."
- requester_pays False
creodias-s3
- 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 "GS2B_20210710T101559_022685_N05.00"
- processing:level "L2"
- view:sun_azimuth 152.244559127293
- eopf:datastrip_id "S2B_OPER_MSI_L2A_DS_S2RP_20230204T215947_S20210710T102312_N05.00"
- processing:version "05.00"
- product:timeliness "PT24H"
- sat:absolute_orbit 22685
- sat:relative_orbit 65
- view:sun_elevation 62.6299582390493
- processing:datetime "2023-02-04T21:59:47.000000Z"
- processing:facility "ESA"
- eopf:instrument_mode "INS-NOBS"
- eopf:origin_datetime "2023-03-26T00:17:44.429000Z"
- view:incidence_angle 6.662142479822391
- product:timeliness_category "NRT"
- sat:platform_international_designator "2017-013A"
links[] 5 items
0
- rel "collection"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
1
- rel "parent"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
2
- rel "root"
- href "https://stac.dataspace.copernicus.eu/v1/"
- type "application/json"
- title "cdse-stac"
3
- rel "self"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947"
- type "application/geo+json"
4
- rel "version-history"
- href "https://trace.dataspace.copernicus.eu/api/v1/traces/name/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE.zip"
- type "application/json"
- title "Product history record from the CDSE traceability service"
assets
AOT_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R10m/T32TPT_20210710T101559_AOT_10m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210710T101559_AOT_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 4669218
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16206ef3de3c6a4c80a7c58ffb2085129f11d96bc25f2feabae7e7c22d1a6d25e205"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R10m/T32TPT_20210710T101559_AOT_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
AOT_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R20m/T32TPT_20210710T101559_AOT_20m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210710T101559_AOT_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3514426
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620c9d858f9fed72f3d7288c2f3d6b3409c5e6b3f6ea147d51e8055610ad32dc6df"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R20m/T32TPT_20210710T101559_AOT_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
AOT_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R60m/T32TPT_20210710T101559_AOT_60m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210710T101559_AOT_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 899694
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16206ee9964a565289d50a402f4d5c18185a05f720928f807289fb12a0280aa68cfc"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R60m/T32TPT_20210710T101559_AOT_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
B01_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R20m/T32TPT_20210710T101559_B01_20m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.442
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210710T101559_B01_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 22543737
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.334187305765
- file:checksum "1620109e811279cdcda7b2bfae185483b6757242f487080c8382a761345eec12512e"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R20m/T32TPT_20210710T101559_B01_20m.jp2"
- view:incidence_angle 6.78280207410745
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:upsampled"
- 3 "gsd:20m"
B01_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R60m/T32TPT_20210710T101559_B01_60m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.442
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210710T101559_B01_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3739860
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.334187305765
- file:checksum "1620de649be1100aac67cdb3aa680655b6f0751b94dd2122e96153cca2ae46c285ea"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R60m/T32TPT_20210710T101559_B01_60m.jp2"
- view:incidence_angle 6.78280207410745
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B02_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R10m/T32TPT_20210710T101559_B02_10m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210710T101559_B02_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 123266196
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 284.852717955887
- file:checksum "1620c70a8f2b90d9886de44f2857e539687b8ca0af24c9a628507dd0fd7ff5c60b36"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R10m/T32TPT_20210710T101559_B02_10m.jp2"
- view:incidence_angle 6.53171308981973
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B02_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R20m/T32TPT_20210710T101559_B02_20m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210710T101559_B02_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33910804
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 284.852717955887
- file:checksum "1620062cbc64506fe8afeabb5cb622adda85d6bbc821bd7544b6bb81a3b6b20fe6bf"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R20m/T32TPT_20210710T101559_B02_20m.jp2"
- view:incidence_angle 6.53171308981973
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B02_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R60m/T32TPT_20210710T101559_B02_60m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210710T101559_B02_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3746260
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 284.852717955887
- file:checksum "1620b5285fff1c324bbd1bb13361fd198a0ef510747885b956c7d44abc98560311a5"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R60m/T32TPT_20210710T101559_B02_60m.jp2"
- view:incidence_angle 6.53171308981973
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B03_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R10m/T32TPT_20210710T101559_B03_10m.jp2"
- type "image/jp2"
- title "Green (band 3) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210710T101559_B03_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 127908759
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.193392445942
- file:checksum "1620f345c766e20911c3664f8a332403bbe55c0ad1adad02e24aab0d1007ceca14b5"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R10m/T32TPT_20210710T101559_B03_10m.jp2"
- view:incidence_angle 6.5673766883604
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B03_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R20m/T32TPT_20210710T101559_B03_20m.jp2"
- type "image/jp2"
- title "Green (band 3) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210710T101559_B03_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33742123
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.193392445942
- file:checksum "1620eb88038863dc93eaf0e4940dc813ec5239fe50de6a3bb3a9edb30a8eb5d0a125"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R20m/T32TPT_20210710T101559_B03_20m.jp2"
- view:incidence_angle 6.5673766883604
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B03_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R60m/T32TPT_20210710T101559_B03_60m.jp2"
- type "image/jp2"
- title "Green (band 3) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210710T101559_B03_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3756360
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.193392445942
- file:checksum "1620d2d36895913e40e0df0ad43d52dabbb8a3404f09400156e239af6877a4fd61b3"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R60m/T32TPT_20210710T101559_B03_60m.jp2"
- view:incidence_angle 6.5673766883604
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B04_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R10m/T32TPT_20210710T101559_B04_10m.jp2"
- type "image/jp2"
- title "Red (band 4) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210710T101559_B04_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 123651843
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.53398853358
- file:checksum "162021e0f6dd50f6618233901de0dc9d22c09e73b6de9dc268046d95d6cd9fc15900"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R10m/T32TPT_20210710T101559_B04_10m.jp2"
- view:incidence_angle 6.60709546644972
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B04_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R20m/T32TPT_20210710T101559_B04_20m.jp2"
- type "image/jp2"
- title "Red (band 4) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210710T101559_B04_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33743334
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.53398853358
- file:checksum "1620ae7a499297bd6a0da3a2c384494e07d79aaa6dec2876621b2b8a31418a0ed914"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R20m/T32TPT_20210710T101559_B04_20m.jp2"
- view:incidence_angle 6.60709546644972
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B04_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R60m/T32TPT_20210710T101559_B04_60m.jp2"
- type "image/jp2"
- title "Red (band 4) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210710T101559_B04_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3763715
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.53398853358
- file:checksum "16205f8f2236c6e5da7f3667dd3a68918f3786c277b8f2ab630fd7958ecb8bc03137"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R60m/T32TPT_20210710T101559_B04_60m.jp2"
- view:incidence_angle 6.60709546644972
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B05_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R20m/T32TPT_20210710T101559_B05_20m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210710T101559_B05_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33895301
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.689734823623
- file:checksum "1620cca351e2822302db89ed4416cddcf5df14e3f474d5a5dca6a61ee01bd40ec08a"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R20m/T32TPT_20210710T101559_B05_20m.jp2"
- view:incidence_angle 6.63115407877728
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B05_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R60m/T32TPT_20210710T101559_B05_60m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210710T101559_B05_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3744142
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.689734823623
- file:checksum "1620b2eee756ba8d9543c535fc76dddcc360d9e6a89c03cc921d6ed49505810ba9f6"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R60m/T32TPT_20210710T101559_B05_60m.jp2"
- view:incidence_angle 6.63115407877728
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B06_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R20m/T32TPT_20210710T101559_B06_20m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 20m"
- description "S3 storage provided by CloudFerro Cloud and OpenTelekom Cloud (OTC). Use endpoint URL `https://eodata.dataspace.copernicus.eu`."
bands[] 1 items
0
- eo:center_wavelength 0.739
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210710T101559_B06_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33896993
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.877742655706
- file:checksum "16201bf9d2331a0a361f2ac7c4d18e8417e3fb1239312c154b458b52345e81b2cba8"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R20m/T32TPT_20210710T101559_B06_20m.jp2"
- view:incidence_angle 6.66418548040673
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B06_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R60m/T32TPT_20210710T101559_B06_60m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.739
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210710T101559_B06_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3753228
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.877742655706
- file:checksum "162073ff35fc42b5b4b9749892a3862b5cefe8c6962d885672d5f90c46d9dacf0e7c"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R60m/T32TPT_20210710T101559_B06_60m.jp2"
- view:incidence_angle 6.66418548040673
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B07_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R20m/T32TPT_20210710T101559_B07_20m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.78
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210710T101559_B07_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33893252
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.046388233019
- file:checksum "1620f71104d75a7ab5774f7a9a779e05f05757363cee71029b44af76efc374b74a5d"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R20m/T32TPT_20210710T101559_B07_20m.jp2"
- view:incidence_angle 6.70050137532609
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B07_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R60m/T32TPT_20210710T101559_B07_60m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.78
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210710T101559_B07_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3745491
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.046388233019
- file:checksum "1620f921f56e3b016ba6e2b35767e97852a7c715f9cda68e7a6b222bb4607436dd40"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R60m/T32TPT_20210710T101559_B07_60m.jp2"
- view:incidence_angle 6.70050137532609
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B08_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R10m/T32TPT_20210710T101559_B08_10m.jp2"
- type "image/jp2"
- title "NIR 1 (band 8) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.454
- name "B08"
- eo:common_name "nir"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210710T101559_B08_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135485317
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.019264622643
- file:checksum "1620fd7a26fe800bb561812db52c6fbed05358c721c575cfbb881d7c8249a4f6ccc3"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R10m/T32TPT_20210710T101559_B08_10m.jp2"
- view:incidence_angle 6.54772714547751
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B09_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R60m/T32TPT_20210710T101559_B09_60m.jp2"
- type "image/jp2"
- title "NIR 3 (band 9) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.943
- eo:full_width_half_max 0.479
- name "B09"
- eo:common_name "nir09"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210710T101559_B09_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3769951
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.505259372849
- file:checksum "16205538cba4919300d0b97d503eca5ff154d60e37b87cee1afde9c75f22763864c5"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R60m/T32TPT_20210710T101559_B09_60m.jp2"
- view:incidence_angle 6.82945606907641
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B11_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R20m/T32TPT_20210710T101559_B11_20m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 20m"
bands[] 1 items
0
- eo:center_wavelength 1.61
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210710T101559_B11_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33749263
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.788918860357
- file:checksum "1620812c0010a8c56480d750dc63f5ab1e0e1ed3b895c6c9be18549457616104c2ef"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R20m/T32TPT_20210710T101559_B11_20m.jp2"
- view:incidence_angle 6.66375162373753
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B11_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R60m/T32TPT_20210710T101559_B11_60m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 60m"
bands[] 1 items
0
- eo:center_wavelength 1.61
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210710T101559_B11_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3736802
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.788918860357
- file:checksum "1620f3600aa29d2d09ee54769431787089dfeb6cabfc2b44dcabb918f2b0928e3280"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R60m/T32TPT_20210710T101559_B11_60m.jp2"
- view:incidence_angle 6.66375162373753
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B12_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R20m/T32TPT_20210710T101559_B12_20m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 20m"
bands[] 1 items
0
- eo:center_wavelength 2.186
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210710T101559_B12_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33865235
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.16596687498
- file:checksum "16207cdf53dd0634ac4b70a1a00107bc7afdc51dda2a39b71c37ae1004a6d913ff32"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R20m/T32TPT_20210710T101559_B12_20m.jp2"
- view:incidence_angle 6.7493354877389
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B12_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R60m/T32TPT_20210710T101559_B12_60m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 60m"
bands[] 1 items
0
- eo:center_wavelength 2.186
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210710T101559_B12_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3747730
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.16596687498
- file:checksum "1620110575432769c91fa2d7b56dce886f084c5044d232262d1e90efc1e25649012f"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R60m/T32TPT_20210710T101559_B12_60m.jp2"
- view:incidence_angle 6.7493354877389
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B8A_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R20m/T32TPT_20210710T101559_B8A_20m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.864
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210710T101559_B8A_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33884126
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.225440219041
- file:checksum "162080e577810fe956377db2e1c68b37cf6aee2b0e08ad8827cc60f99945f18aef5e"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R20m/T32TPT_20210710T101559_B8A_20m.jp2"
- view:incidence_angle 6.73985421233738
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B8A_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R60m/T32TPT_20210710T101559_B8A_60m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.864
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210710T101559_B8A_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3745104
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.225440219041
- file:checksum "1620ce1fba26794ce053808fe9f77c0fb5d2e6d98590c587292d819a1a6c945a15bb"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R60m/T32TPT_20210710T101559_B8A_60m.jp2"
- view:incidence_angle 6.73985421233738
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
Product
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/$value"
- type "application/zip"
- title "Zipped product"
auth:refs[] 1 items
- 0 "oidc"
- file:size 1218164510
- storage:refs "𒍟※"
- file:checksum "d50110b810af07f39a36d64e99c36eb87f0c17"
- alternate:name "HTTPS"
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE.zip"
roles[] 3 items
- 0 "data"
- 1 "metadata"
- 2 "archive"
SCL_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R20m/T32TPT_20210710T101559_SCL_20m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210710T101559_SCL_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 2861406
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162073ea4c373b311c18688b27c53fe18eab1bbcad71f15bc69f68eb413e1b70d161"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R20m/T32TPT_20210710T101559_SCL_20m.jp2"
classification:classes[] 12 items
0
- percentage 0.019655
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
- percentage 0.0
2
- percentage 2.299675
- name "dark_area_pixels"
- value 2
3
- percentage 1.172576
- name "cloud_shadows"
- value 3
4
- percentage 62.775427
- name "vegetation"
- value 4
5
- percentage 8.621965
- name "not_vegetated"
- value 5
6
- percentage 0.490549
- name "water"
- value 6
7
- percentage 0.419149
- name "unclassified"
- value 7
8
- percentage 4.329954
- name "cloud_medium_probability"
- value 8
9
- percentage 5.011237
- name "cloud_high_probability"
- value 9
10
- percentage 11.494451
- name "thin_cirrus"
- value 10
11
- percentage 3.385017
- name "snow"
- value 11
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "data"
- 1 "sampling:original"
- 2 "gsd:20m"
SCL_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R60m/T32TPT_20210710T101559_SCL_60m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210710T101559_SCL_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 669729
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620c807cadf2266e29ede78458a7a3acc582ac3af77dee034a9e61e8a394635b4b9"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R60m/T32TPT_20210710T101559_SCL_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
classification:classes[] 12 items
0
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
2
- name "dark_area_pixels"
- value 2
3
- name "cloud_shadows"
- value 3
4
- name "vegetation"
- value 4
5
- name "not_vegetated"
- value 5
6
- name "water"
- value 6
7
- name "unclassified"
- value 7
8
- name "cloud_medium_probability"
- value 8
9
- name "cloud_high_probability"
- value 9
10
- name "thin_cirrus"
- value 10
11
- name "snow"
- value 11
roles[] 3 items
- 0 "data"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
TCI_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R10m/T32TPT_20210710T101559_TCI_10m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210710T101559_TCI_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135387070
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162014c4d0e2a9cf0985177f64985bb52760a4add69ac2d8639a5469ed0801f9061e"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R10m/T32TPT_20210710T101559_TCI_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 10980
- 1 10980
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:original"
- 2 "gsd:10m"
TCI_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R20m/T32TPT_20210710T101559_TCI_20m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210710T101559_TCI_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33772848
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162020c44c6ab14d97fff30fc2f3197ab39550eaf1323644b224a73359ae266194a9"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R20m/T32TPT_20210710T101559_TCI_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:20m"
TCI_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R60m/T32TPT_20210710T101559_TCI_60m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210710T101559_TCI_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3753598
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620bfecf6ae0785063beb2e3ba3094baf6344b079bd675acd60c5320bfcae071aa5"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R60m/T32TPT_20210710T101559_TCI_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
WVP_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R10m/T32TPT_20210710T101559_WVP_10m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210710T101559_WVP_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 89635122
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620231fe4ac2b791e888da0b7d53d844843b5677b463148f797032c34f7c8ba0a10"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R10m/T32TPT_20210710T101559_WVP_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
WVP_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R20m/T32TPT_20210710T101559_WVP_20m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210710T101559_WVP_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 28151662
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162047820e0770a55013ffbfc11598f1dbfe6052fc22399d31ed52060e9e663ce8d2"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R20m/T32TPT_20210710T101559_WVP_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
WVP_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R60m/T32TPT_20210710T101559_WVP_60m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210710T101559_WVP_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3744713
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620c9b123b088dd4d65fd0e7e071ecec2a5325480ace6a9a4982c9f75db5088df62"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/IMG_DATA/R60m/T32TPT_20210710T101559_WVP_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
thumbnail
- href "https://datahub.creodias.eu/odata/v1/Assets(2d36a048-eedb-4cf3-b918-827aa386ab6e)/$value"
- type "image/jpeg"
- title "Quicklook"
alternate
s3
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947-ql.jpg"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
auth:refs[] 1 items
- 0 "oidc"
- file:size 44181
- file:checksum "d50110bc6b3f5f46936b3447253bfdeaa1e21e"
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947-ql.jpg"
- data_type "uint8"
- proj:code None
proj:shape[] 2 items
- 0 343
- 1 343
- alternate:name "HTTPS"
roles[] 2 items
- 0 "thumbnail"
- 1 "overview"
safe_manifest
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/manifest.safe"
- type "application/xml"
- title "manifest.safe"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(manifest.safe)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 68946
- file:checksum "d501108635b3b1e38ac18ff0f5c9a7b0c98b2c"
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/manifest.safe"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
granule_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/MTD_TL.xml"
- type "application/xml"
- title "MTD_TL.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes()/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022685_20210710T102312)/Nodes(MTD_TL.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 547764
- file:checksum "d50120db3e369db22ac5e4e94fc6cef44eacc71f066f0c9897cef2517b74015800f076"
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/GRANULE/L2A_T32TPT_A022685_20210710T102312/MTD_TL.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
inspire_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/INSPIRE.xml"
- type "application/xml"
- title "INSPIRE.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(INSPIRE.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 18680
- file:checksum "d50120e245bc755966bb24426b5a719917fd37863aef4dfe47ee3e9f4ae0cf2872d31f"
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/INSPIRE.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
product_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/MTD_MSIL2A.xml"
- type "application/xml"
- title "MTD_MSIL2A.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes(MTD_MSIL2A.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 55052
- file:checksum "d501207c72bd551b57057b6a00c0033a7af728d319675f3de8a4ea342de7736fec37a5"
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/MTD_MSIL2A.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
datastrip_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/10/S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/DATASTRIP/DS_S2RP_20230204T215947_S20210710T102312/MTD_DS.xml"
- type "application/xml"
- title "MTD_DS.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e8f713af-b089-46b7-be12-2e6f8d1196a2)/Nodes(S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE)/Nodes()/Nodes(DATASTRIP)/Nodes(DS_S2RP_20230204T215947_S20210710T102312)/Nodes(MTD_DS.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 24411246
- file:checksum "d50120e21e04988c7764cdee0d07273b563de5470a2ff4283a95a93a1536cccc97b054"
- file:local_path "S2B_MSIL2A_20210710T101559_N0500_R065_T32TPT_20230204T215947.SAFE/DATASTRIP/DS_S2RP_20230204T215947_S20210710T102312/MTD_DS.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
- collection "sentinel-2-l2a"
9
- type "Feature"
- stac_version "1.1.0"
stac_extensions[] 15 items
- 0 "https://stac-extensions.github.io/eo/v2.0.0/schema.json"
- 1 "https://stac-extensions.github.io/raster/v2.0.0/schema.json"
- 2 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 3 "https://stac-extensions.github.io/projection/v2.0.0/schema.json"
- 4 "https://stac-extensions.github.io/grid/v1.1.0/schema.json"
- 5 "https://stac-extensions.github.io/view/v1.0.0/schema.json"
- 6 "https://stac-extensions.github.io/file/v2.1.0/schema.json"
- 7 "https://stac-extensions.github.io/processing/v1.2.0/schema.json"
- 8 "https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json"
- 9 "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json"
- 10 "https://stac-extensions.github.io/authentication/v1.1.0/schema.json"
- 11 "https://stac-extensions.github.io/classification/v2.0.0/schema.json"
- 12 "https://stac-extensions.github.io/product/v0.1.0/schema.json"
- 13 "https://cs-si.github.io/eopf-stac-extension/v1.2.0/schema.json"
- 14 "https://stac-extensions.github.io/storage/v2.0.0/schema.json"
- id "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 12 items
0[] 2 items
- 0 10.314389604656029
- 1 46.958210299588664
1[] 2 items
- 0 10.360883504374014
- 1 47.09006236137037
2[] 2 items
- 0 10.411697716204948
- 1 47.23699283678588
3[] 2 items
- 0 10.465615917555375
- 1 47.383067078592326
4[] 2 items
- 0 10.517091733395326
- 1 47.52977362713175
5[] 2 items
- 0 10.568944347655467
- 1 47.67640777370048
6[] 2 items
- 0 10.622041684912526
- 1 47.82280875226492
7[] 2 items
- 0 10.62857890193464
- 1 47.8406546402336
8[] 2 items
- 0 11.802846682924509
- 1 47.81947440295927
9[] 2 items
- 0 11.751084998620154
- 1 46.83262831925138
10[] 2 items
- 0 10.31188688551243
- 1 46.85818197246455
11[] 2 items
- 0 10.314389604656029
- 1 46.958210299588664
bbox[] 4 items
- 0 10.311887
- 1 46.832628
- 2 11.802847
- 3 47.840655
properties
- gsd 10
- created "2023-03-11T06:26:32.953000Z"
- updated "2024-04-30T16:41:57.287363Z"
- datetime "2021-07-02T10:10:31.024000Z"
- platform "sentinel-2a"
- grid:code "MGRS-32TPT"
- published "2023-03-14T04:12:48.221678Z"
statistics
- water 0.394683
- nodata 9.049369
- dark_area 1.22749
- vegetation 38.577574
- thin_cirrus 5.06577
- cloud_shadow 3.576069
- unclassified 1.251701
- not_vegetated 5.873202
- high_proba_clouds 24.992649
- medium_proba_clouds 14.579227999999999
- saturated_defective 0.0
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 "2021-07-02T10:10:31.024Z"
- product:type "S2MSI2A"
- view:azimuth 104.28943925934861
- constellation "sentinel-2"
- eo:snow_cover 4.46
- eo:cloud_cover 44.64
- start_datetime "2021-07-02T10:10:31.024Z"
- sat:orbit_state "descending"
storage:schemes
cdse-s3
- 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. A Global Service Load Balancer (GSLB) directs the request to either CloudFerro Cloud or OpenTelekom Cloud (OTC) S3 endpoint based on the location of the DNS resolver."
- requester_pays False
creodias-s3
- 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 "GS2A_20210702T101031_031479_N05.00"
- processing:level "L2"
- view:sun_azimuth 147.545533552181
- eopf:datastrip_id "S2A_OPER_MSI_L2A_DS_S2RP_20230125T130514_S20210702T101157_N05.00"
- processing:version "05.00"
- product:timeliness "PT24H"
- sat:absolute_orbit 31479
- sat:relative_orbit 22
- view:sun_elevation 62.665203936953105
- processing:datetime "2023-01-25T13:05:14.000000Z"
- processing:facility "ESA"
- eopf:instrument_mode "INS-NOBS"
- eopf:origin_datetime "2023-03-11T06:26:32.953000Z"
- view:incidence_angle 7.9445624764332425
- product:timeliness_category "NRT"
- sat:platform_international_designator "2015-028A"
links[] 5 items
0
- rel "collection"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
1
- rel "parent"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
2
- rel "root"
- href "https://stac.dataspace.copernicus.eu/v1/"
- type "application/json"
- title "cdse-stac"
3
- rel "self"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514"
- type "application/geo+json"
4
- rel "version-history"
- href "https://trace.dataspace.copernicus.eu/api/v1/traces/name/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE.zip"
- type "application/json"
- title "Product history record from the CDSE traceability service"
assets
AOT_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R10m/T32TPT_20210702T101031_AOT_10m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210702T101031_AOT_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 4055303
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162085da9f3ea6d469d44bdf402ec9deea834eb94248c07dbe9f128594e9bf9de3f8"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R10m/T32TPT_20210702T101031_AOT_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
AOT_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R20m/T32TPT_20210702T101031_AOT_20m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210702T101031_AOT_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3074231
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162038a458503a5c0ee53fa0c73c068e53a4f94cf56d8563a1206fd9dc017647c486"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R20m/T32TPT_20210702T101031_AOT_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
AOT_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R60m/T32TPT_20210702T101031_AOT_60m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210702T101031_AOT_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 817126
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620f04c7cfa801a90fe1ff4c6daf296cf69528b5be283be07f2bd5bb8ab81ed4bdd"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R60m/T32TPT_20210702T101031_AOT_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
B01_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R20m/T32TPT_20210702T101031_B01_20m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.443
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210702T101031_B01_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 24301694
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.207842943952
- file:checksum "16200143a3734aa8d896ac412684345e6a540042387f0ae8f2f23d737d1e4b1bec46"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R20m/T32TPT_20210702T101031_B01_20m.jp2"
- view:incidence_angle 8.04844513366758
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:upsampled"
- 3 "gsd:20m"
B01_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R60m/T32TPT_20210702T101031_B01_60m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.443
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210702T101031_B01_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3750504
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.207842943952
- file:checksum "16200ad6d4d219bc18f16484148b7ee172d6699422181d738a8a72a09c39b3a7fb7b"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R60m/T32TPT_20210702T101031_B01_60m.jp2"
- view:incidence_angle 8.04844513366758
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B02_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R10m/T32TPT_20210702T101031_B02_10m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210702T101031_B02_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 118598087
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.360886171548
- file:checksum "1620a4aa51a169f2132c65de7283642921c931657a63f2f2234d456b6ad988ef83d3"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R10m/T32TPT_20210702T101031_B02_10m.jp2"
- view:incidence_angle 7.83950782455934
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B02_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R20m/T32TPT_20210702T101031_B02_20m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210702T101031_B02_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33767673
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.360886171548
- file:checksum "1620331ca450038575f0e6b0adca0a2cc375a0b2ebd37247c07ed88599a571569c35"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R20m/T32TPT_20210702T101031_B02_20m.jp2"
- view:incidence_angle 7.83950782455934
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B02_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R60m/T32TPT_20210702T101031_B02_60m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210702T101031_B02_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3752881
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.360886171548
- file:checksum "1620e5afafb43010ea0315efb5aaf60ead64df6ac209f873546b509391a23a2dcc75"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R60m/T32TPT_20210702T101031_B02_60m.jp2"
- view:incidence_angle 7.83950782455934
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B03_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R10m/T32TPT_20210702T101031_B03_10m.jp2"
- type "image/jp2"
- title "Green (band 3) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210702T101031_B03_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 119498590
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.349903880013
- file:checksum "1620467a9cf01ff9794b6361e382a5ff6aaa452d28a9925e9cb2d13b8027bbd2bbeb"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R10m/T32TPT_20210702T101031_B03_10m.jp2"
- view:incidence_angle 7.8662698916277
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B03_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R20m/T32TPT_20210702T101031_B03_20m.jp2"
- type "image/jp2"
- title "Green (band 3) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210702T101031_B03_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33908350
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.349903880013
- file:checksum "16201c16b8f17e786a0a3a30dfd71dd2a3e6224b5d45d7a02ff4b9d965d6d5e92c54"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R20m/T32TPT_20210702T101031_B03_20m.jp2"
- view:incidence_angle 7.8662698916277
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B03_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R60m/T32TPT_20210702T101031_B03_60m.jp2"
- type "image/jp2"
- title "Green (band 3) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210702T101031_B03_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3749965
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.349903880013
- file:checksum "1620c6e892b86ef4ce1512bdb388772efa573d58408272541ba373f7b3e757e510a2"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R60m/T32TPT_20210702T101031_B03_60m.jp2"
- view:incidence_angle 7.8662698916277
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B04_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R10m/T32TPT_20210702T101031_B04_10m.jp2"
- type "image/jp2"
- title "Red (band 4) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210702T101031_B04_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 117698271
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.32697889461
- file:checksum "16209eacd877d2538f8c0f50f5d02e7522eba6a9381743bb552ead1e24acbd69ee83"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R10m/T32TPT_20210702T101031_B04_10m.jp2"
- view:incidence_angle 7.90054235121323
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B04_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R20m/T32TPT_20210702T101031_B04_20m.jp2"
- type "image/jp2"
- title "Red (band 4) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210702T101031_B04_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33881662
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.32697889461
- file:checksum "16203e1ca5f9802c51f1a8fefe34f9cc28bc47d03837f18d231ce4268b1fe441879b"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R20m/T32TPT_20210702T101031_B04_20m.jp2"
- view:incidence_angle 7.90054235121323
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B04_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R60m/T32TPT_20210702T101031_B04_60m.jp2"
- type "image/jp2"
- title "Red (band 4) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210702T101031_B04_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3751293
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.32697889461
- file:checksum "16209e1f769fcdf92dc64e6d0904420241e8dac2deeebd8030eac702509d48b77db3"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R60m/T32TPT_20210702T101031_B04_60m.jp2"
- view:incidence_angle 7.90054235121323
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B05_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R20m/T32TPT_20210702T101031_B05_20m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210702T101031_B05_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33775596
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.324997972933
- file:checksum "1620298daff85bbdcb0abaa2d96dc8a6c02bdbe719e2428b927219d446e332ab9355"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R20m/T32TPT_20210702T101031_B05_20m.jp2"
- view:incidence_angle 7.92307830826692
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B05_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R60m/T32TPT_20210702T101031_B05_60m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210702T101031_B05_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3761119
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.324997972933
- file:checksum "16207391b8b0f568bc4b5e8a6f1236594468bd719037da47193009117752a0caab70"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R60m/T32TPT_20210702T101031_B05_60m.jp2"
- view:incidence_angle 7.92307830826692
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B06_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R20m/T32TPT_20210702T101031_B06_20m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 20m"
- description "S3 storage provided by CloudFerro Cloud and OpenTelekom Cloud (OTC). Use endpoint URL `https://eodata.dataspace.copernicus.eu`."
bands[] 1 items
0
- eo:center_wavelength 0.741
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210702T101031_B06_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33912041
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.271692644701
- file:checksum "1620ba7425aa66965a68dc7a2e581a9488b76d08e8980b18228fef8613cd6115b248"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R20m/T32TPT_20210702T101031_B06_20m.jp2"
- view:incidence_angle 7.956508024457
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B06_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R60m/T32TPT_20210702T101031_B06_60m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.741
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210702T101031_B06_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3739295
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.271692644701
- file:checksum "1620a6e03d0c5a81ab57305a07fb1a9f054ab65cf08e1ebb6a2d59bf1dfe8d96d603"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R60m/T32TPT_20210702T101031_B06_60m.jp2"
- view:incidence_angle 7.956508024457
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B07_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R20m/T32TPT_20210702T101031_B07_20m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210702T101031_B07_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33899597
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.261766933528
- file:checksum "16203720f0d462b5baae51d632526fc387eeb427730dcf4916e662dd3dbedd54215e"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R20m/T32TPT_20210702T101031_B07_20m.jp2"
- view:incidence_angle 7.98437691705355
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B07_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R60m/T32TPT_20210702T101031_B07_60m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210702T101031_B07_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3739070
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.261766933528
- file:checksum "1620e19c4d3ae2aa336740ed61bc852d9f0988b5223f3eafec44b4b6a69ced23e527"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R60m/T32TPT_20210702T101031_B07_60m.jp2"
- view:incidence_angle 7.98437691705355
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B08_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R10m/T32TPT_20210702T101031_B08_10m.jp2"
- type "image/jp2"
- title "NIR 1 (band 8) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.454
- name "B08"
- eo:common_name "nir"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210702T101031_B08_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 131356635
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.342578221178
- file:checksum "16205b10a806e8ef87a2bfd0404ffb809525fed8071cedadc14a3876e1ba79f982b3"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R10m/T32TPT_20210702T101031_B08_10m.jp2"
- view:incidence_angle 7.85555098528046
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B09_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R60m/T32TPT_20210702T101031_B09_60m.jp2"
- type "image/jp2"
- title "NIR 3 (band 9) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.945
- eo:full_width_half_max 0.479
- name "B09"
- eo:common_name "nir09"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210702T101031_B09_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3752297
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.183186417465
- file:checksum "16201badbd024f6c119d068c436b1ebc50ad7035b1d6b9725ef1ef2e3720b0a08342"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R60m/T32TPT_20210702T101031_B09_60m.jp2"
- view:incidence_angle 8.08486871522676
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B11_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R20m/T32TPT_20210702T101031_B11_20m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 20m"
bands[] 1 items
0
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210702T101031_B11_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33609876
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.286955391048
- file:checksum "16206c420fbe55c596eac0a12fad384432c9c72b785e54675207e84317c7e496209e"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R20m/T32TPT_20210702T101031_B11_20m.jp2"
- view:incidence_angle 7.93133640721065
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B11_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R60m/T32TPT_20210702T101031_B11_60m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 60m"
bands[] 1 items
0
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210702T101031_B11_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3757680
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.286955391048
- file:checksum "162005f23631bcb56d4a75820a80b2ed1bdf7a1148a0332936047d9b3e3ca21cf9a9"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R60m/T32TPT_20210702T101031_B11_60m.jp2"
- view:incidence_angle 7.93133640721065
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B12_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R20m/T32TPT_20210702T101031_B12_20m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 20m"
bands[] 1 items
0
- eo:center_wavelength 2.202
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210702T101031_B12_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 32907029
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.267027618788
- file:checksum "1620f6ae849bafac9ce09eb0d59083f53f51ffd687f517535f1b7a0696b7297d4111"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R20m/T32TPT_20210702T101031_B12_20m.jp2"
- view:incidence_angle 8.00118469172392
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B12_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R60m/T32TPT_20210702T101031_B12_60m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 60m"
bands[] 1 items
0
- eo:center_wavelength 2.202
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210702T101031_B12_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3748316
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.267027618788
- file:checksum "16204d12d3bfa7c63c2fd96c9f62bb414f8e2cd0cb18ee3370a448906ffbbca5b0ab"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R60m/T32TPT_20210702T101031_B12_60m.jp2"
- view:incidence_angle 8.00118469172392
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B8A_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R20m/T32TPT_20210702T101031_B8A_20m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210702T101031_B8A_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33811644
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.240688064014
- file:checksum "16201c3800c830daee4fc16e1a985b98baa2afbfe3c33ccd0d70bee8f1d4fcb15ae9"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R20m/T32TPT_20210702T101031_B8A_20m.jp2"
- view:incidence_angle 8.01481559997628
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B8A_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R60m/T32TPT_20210702T101031_B8A_60m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210702T101031_B8A_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3737838
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.240688064014
- file:checksum "16206688e107465783682d0673353ccd5d7ea6252d6e2b559270873b9aa8eb0936f3"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R60m/T32TPT_20210702T101031_B8A_60m.jp2"
- view:incidence_angle 8.01481559997628
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
Product
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/$value"
- type "application/zip"
- title "Zipped product"
auth:refs[] 1 items
- 0 "oidc"
- file:size 1145484459
- storage:refs "𒍟※"
- file:checksum "d501102ce78eccca62e8257fa276432239e697"
- alternate:name "HTTPS"
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE.zip"
roles[] 3 items
- 0 "data"
- 1 "metadata"
- 2 "archive"
SCL_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R20m/T32TPT_20210702T101031_SCL_20m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210702T101031_SCL_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3584231
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162029af6de3c7f1975dea4184a72fdde0bd3fe0cab348c39c202918fbaef36506a4"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R20m/T32TPT_20210702T101031_SCL_20m.jp2"
classification:classes[] 12 items
0
- percentage 9.049369
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
- percentage 0.0
2
- percentage 1.22749
- name "dark_area_pixels"
- value 2
3
- percentage 3.576069
- name "cloud_shadows"
- value 3
4
- percentage 38.577574
- name "vegetation"
- value 4
5
- percentage 5.873202
- name "not_vegetated"
- value 5
6
- percentage 0.394683
- name "water"
- value 6
7
- percentage 1.251701
- name "unclassified"
- value 7
8
- percentage 14.579227999999999
- name "cloud_medium_probability"
- value 8
9
- percentage 24.992649
- name "cloud_high_probability"
- value 9
10
- percentage 5.06577
- name "thin_cirrus"
- value 10
11
- percentage 4.461629
- name "snow"
- value 11
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "data"
- 1 "sampling:original"
- 2 "gsd:20m"
SCL_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R60m/T32TPT_20210702T101031_SCL_60m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210702T101031_SCL_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 878956
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620b5959e5be471d22b1ec911c8f7b0c1ad00bd6b65bbe8d1d8064f0430540a137d"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R60m/T32TPT_20210702T101031_SCL_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
classification:classes[] 12 items
0
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
2
- name "dark_area_pixels"
- value 2
3
- name "cloud_shadows"
- value 3
4
- name "vegetation"
- value 4
5
- name "not_vegetated"
- value 5
6
- name "water"
- value 6
7
- name "unclassified"
- value 7
8
- name "cloud_medium_probability"
- value 8
9
- name "cloud_high_probability"
- value 9
10
- name "thin_cirrus"
- value 10
11
- name "snow"
- value 11
roles[] 3 items
- 0 "data"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
TCI_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R10m/T32TPT_20210702T101031_TCI_10m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210702T101031_TCI_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135380312
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162091c3cfdb26832e08348048b6f92e4352e5dbfe0875ff5a16f1477c0c15dadb73"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R10m/T32TPT_20210702T101031_TCI_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 10980
- 1 10980
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:original"
- 2 "gsd:10m"
TCI_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R20m/T32TPT_20210702T101031_TCI_20m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210702T101031_TCI_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33881587
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620f86ba239559c62ed0ef82568fafc2e9eee456298c8b72b5ec91da8544506cc6d"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R20m/T32TPT_20210702T101031_TCI_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:20m"
TCI_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R60m/T32TPT_20210702T101031_TCI_60m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210702T101031_TCI_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3735899
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620b1ef6f9cc9d031205eefe5f46b0a4c3e04af91951b29a092b33633ebc16de2e5"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R60m/T32TPT_20210702T101031_TCI_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
WVP_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R10m/T32TPT_20210702T101031_WVP_10m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210702T101031_WVP_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 55485096
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162037acdf686b8d638acb80f9ad474b9788d6e53ecca6f1e5a49f40e3b229854f80"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R10m/T32TPT_20210702T101031_WVP_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
WVP_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R20m/T32TPT_20210702T101031_WVP_20m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210702T101031_WVP_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 18308676
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620d37ab631a9cc9446b8cfb45f8911f19889114241e0078fd011511534d92c37f2"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R20m/T32TPT_20210702T101031_WVP_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
WVP_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R60m/T32TPT_20210702T101031_WVP_60m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210702T101031_WVP_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 2924934
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16205b80cfc43c157eee362ec9c6953f1cbd40e9e3a8492611e9f1d9de8ffa49f841"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/IMG_DATA/R60m/T32TPT_20210702T101031_WVP_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
thumbnail
- href "https://datahub.creodias.eu/odata/v1/Assets(51591a9d-5c16-4fe7-8a15-6be0176c7695)/$value"
- type "image/jpeg"
- title "Quicklook"
alternate
s3
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514-ql.jpg"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
auth:refs[] 1 items
- 0 "oidc"
- file:size 50517
- file:checksum "d5011067702f11d12efce241f4529c8a6e9658"
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514-ql.jpg"
- data_type "uint8"
- proj:code None
proj:shape[] 2 items
- 0 343
- 1 343
- alternate:name "HTTPS"
roles[] 2 items
- 0 "thumbnail"
- 1 "overview"
safe_manifest
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/manifest.safe"
- type "application/xml"
- title "manifest.safe"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(manifest.safe)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 69173
- file:checksum "d501100716baa8c16aa0f77b4affd13914e008"
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/manifest.safe"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
granule_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/MTD_TL.xml"
- type "application/xml"
- title "MTD_TL.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes()/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031479_20210702T101157)/Nodes(MTD_TL.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 463433
- file:checksum "d50120b10b773d21b377b40db52cd2c8392450f2b6e3086c1dd248ffd57811af3c0594"
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/GRANULE/L2A_T32TPT_A031479_20210702T101157/MTD_TL.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
inspire_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/INSPIRE.xml"
- type "application/xml"
- title "INSPIRE.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(INSPIRE.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 18905
- file:checksum "d50120de217e96cc58f7838804b2700016b591a033c3c59b6661048dd9e8d1c6a69fe4"
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/INSPIRE.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
product_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/MTD_MSIL2A.xml"
- type "application/xml"
- title "MTD_MSIL2A.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes(MTD_MSIL2A.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 55131
- file:checksum "d50120f0b58da6c4f0987939f95aac507aa646c7599f3be5bb45f5e16258fcf858da6a"
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/MTD_MSIL2A.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
datastrip_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/07/02/S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/DATASTRIP/DS_S2RP_20230125T130514_S20210702T101157/MTD_DS.xml"
- type "application/xml"
- title "MTD_DS.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0f39d8f0-07e9-4ff3-9dae-98c470c2017b)/Nodes(S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE)/Nodes()/Nodes(DATASTRIP)/Nodes(DS_S2RP_20230125T130514_S20210702T101157)/Nodes(MTD_DS.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 13683547
- file:checksum "d501201df8cc779f338ef745adae6834f9e4537145b9c8377d4deacec4a6d4f9845acb"
- file:local_path "S2A_MSIL2A_20210702T101031_N0500_R022_T32TPT_20230125T130514.SAFE/DATASTRIP/DS_S2RP_20230125T130514_S20210702T101157/MTD_DS.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
- collection "sentinel-2-l2a"
10
- type "Feature"
- stac_version "1.1.0"
stac_extensions[] 15 items
- 0 "https://stac-extensions.github.io/eo/v2.0.0/schema.json"
- 1 "https://stac-extensions.github.io/raster/v2.0.0/schema.json"
- 2 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 3 "https://stac-extensions.github.io/projection/v2.0.0/schema.json"
- 4 "https://stac-extensions.github.io/grid/v1.1.0/schema.json"
- 5 "https://stac-extensions.github.io/view/v1.0.0/schema.json"
- 6 "https://stac-extensions.github.io/file/v2.1.0/schema.json"
- 7 "https://stac-extensions.github.io/processing/v1.2.0/schema.json"
- 8 "https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json"
- 9 "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json"
- 10 "https://stac-extensions.github.io/authentication/v1.1.0/schema.json"
- 11 "https://stac-extensions.github.io/classification/v2.0.0/schema.json"
- 12 "https://stac-extensions.github.io/product/v0.1.0/schema.json"
- 13 "https://cs-si.github.io/eopf-stac-extension/v1.2.0/schema.json"
- 14 "https://stac-extensions.github.io/storage/v2.0.0/schema.json"
- id "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 12 items
0[] 2 items
- 0 10.315056206328705
- 1 46.98485294159129
1[] 2 items
- 0 10.332206960560406
- 1 47.036812969392415
2[] 2 items
- 0 10.386899604607065
- 1 47.18260878449932
3[] 2 items
- 0 10.439728885745934
- 1 47.32897403683069
4[] 2 items
- 0 10.491242973150058
- 1 47.47578756582043
5[] 2 items
- 0 10.542642888965334
- 1 47.622743712552605
6[] 2 items
- 0 10.595822406365691
- 1 47.76928019481348
7[] 2 items
- 0 10.622055743042349
- 1 47.84077229828005
8[] 2 items
- 0 11.802846682924509
- 1 47.81947440295927
9[] 2 items
- 0 11.751084998620154
- 1 46.83262831925138
10[] 2 items
- 0 10.31188688551243
- 1 46.85818197246455
11[] 2 items
- 0 10.315056206328705
- 1 46.98485294159129
bbox[] 4 items
- 0 10.311887
- 1 46.832628
- 2 11.802847
- 3 47.840772
properties
- gsd 10
- created "2023-06-07T19:43:05.979000Z"
- updated "2024-05-06T10:03:21.342214Z"
- datetime "2021-06-27T10:05:59.024000Z"
- platform "sentinel-2b"
- grid:code "MGRS-32TPT"
- published "2023-06-08T10:53:48.395904Z"
statistics
- water 0.73024
- nodata 8.918451
- dark_area 1.417252
- vegetation 68.942064
- thin_cirrus 4.510039
- cloud_shadow 0.682236
- unclassified 0.372121
- not_vegetated 10.553885
- high_proba_clouds 2.72602
- medium_proba_clouds 2.953941
- saturated_defective 0.0
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 "2021-06-27T10:05:59.024Z"
- product:type "S2MSI2A"
- view:azimuth 105.12318544090661
- constellation "sentinel-2"
- eo:snow_cover 7.11
- eo:cloud_cover 10.19
- start_datetime "2021-06-27T10:05:59.024Z"
- sat:orbit_state "descending"
storage:schemes
cdse-s3
- 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. A Global Service Load Balancer (GSLB) directs the request to either CloudFerro Cloud or OpenTelekom Cloud (OTC) S3 endpoint based on the location of the DNS resolver."
- requester_pays False
creodias-s3
- 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 "GS2B_20210627T100559_022499_N05.00"
- processing:level "L2"
- view:sun_azimuth 147.730770701143
- eopf:datastrip_id "S2B_OPER_MSI_L2A_DS_S2RP_20230318T233859_S20210627T101702_N05.00"
- processing:version "05.00"
- product:timeliness "PT24H"
- sat:absolute_orbit 22499
- sat:relative_orbit 22
- view:sun_elevation 63.0283299217553
- processing:datetime "2023-03-18T23:38:59.000000Z"
- processing:facility "ESA"
- eopf:instrument_mode "INS-NOBS"
- eopf:origin_datetime "2023-06-07T19:43:05.979000Z"
- view:incidence_angle 7.925853314169686
- product:timeliness_category "NRT"
- sat:platform_international_designator "2017-013A"
links[] 5 items
0
- rel "collection"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
1
- rel "parent"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
2
- rel "root"
- href "https://stac.dataspace.copernicus.eu/v1/"
- type "application/json"
- title "cdse-stac"
3
- rel "self"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859"
- type "application/geo+json"
4
- rel "version-history"
- href "https://trace.dataspace.copernicus.eu/api/v1/traces/name/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE.zip"
- type "application/json"
- title "Product history record from the CDSE traceability service"
assets
AOT_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R10m/T32TPT_20210627T100559_AOT_10m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210627T100559_AOT_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 5413758
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16200cffba00da0d149d83138d496f78b462c1db9cb7123ac8a6f152b91160624bec"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R10m/T32TPT_20210627T100559_AOT_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
AOT_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R20m/T32TPT_20210627T100559_AOT_20m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210627T100559_AOT_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3903928
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16209b4b9fccc9fae6f31b3020437fa6a2789246a270e577a2d861e84d52457133f1"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R20m/T32TPT_20210627T100559_AOT_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
AOT_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R60m/T32TPT_20210627T100559_AOT_60m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210627T100559_AOT_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 885028
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620d2c5f67d6af0d99cdf896a75581d67ee756f9157d92b00602600818af7267c96"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R60m/T32TPT_20210627T100559_AOT_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
B01_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R20m/T32TPT_20210627T100559_B01_20m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.442
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210627T100559_B01_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 21613692
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.068073324069
- file:checksum "16209fd588db4a68696868b1ab3b3501849337ebf6fbd9491374684eb02584ca038c"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R20m/T32TPT_20210627T100559_B01_20m.jp2"
- view:incidence_angle 8.01862728010469
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:upsampled"
- 3 "gsd:20m"
B01_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R60m/T32TPT_20210627T100559_B01_60m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.442
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210627T100559_B01_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3738463
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.068073324069
- file:checksum "16202d8cdd3c431b302bfc009b041396d50ca5e955306f38202f1532cac49a0ed993"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R60m/T32TPT_20210627T100559_B01_60m.jp2"
- view:incidence_angle 8.01862728010469
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B02_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R10m/T32TPT_20210627T100559_B02_10m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210627T100559_B02_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 117503616
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.241691876528
- file:checksum "16209761385d8857318cb439d38ca2110d7d39e9c62b226420f0c63a3ace43725c33"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R10m/T32TPT_20210627T100559_B02_10m.jp2"
- view:incidence_angle 7.82639615747758
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B02_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R20m/T32TPT_20210627T100559_B02_20m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210627T100559_B02_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33650307
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.241691876528
- file:checksum "1620e4e9cadd53b3b9a247a10c7e746adfb32639f0882d1f0cc2c9a7b9e818842c41"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R20m/T32TPT_20210627T100559_B02_20m.jp2"
- view:incidence_angle 7.82639615747758
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B02_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R60m/T32TPT_20210627T100559_B02_60m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210627T100559_B02_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3749940
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.241691876528
- file:checksum "1620d6958914d86d84522a909f4c4262b4e26d51ad77465b2652069c2fef89294d43"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R60m/T32TPT_20210627T100559_B02_60m.jp2"
- view:incidence_angle 7.82639615747758
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B03_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R10m/T32TPT_20210627T100559_B03_10m.jp2"
- type "image/jp2"
- title "Green (band 3) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210627T100559_B03_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 121309413
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.199569638331
- file:checksum "16200826dc7611060f7f08115ea14fe562701891c9252c3cc86a7b465735349eeea7"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R10m/T32TPT_20210627T100559_B03_10m.jp2"
- view:incidence_angle 7.85288241671027
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B03_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R20m/T32TPT_20210627T100559_B03_20m.jp2"
- type "image/jp2"
- title "Green (band 3) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210627T100559_B03_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33757598
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.199569638331
- file:checksum "16207209ab5d4f51cf1c8a9ed00f674aecd69da2da95a8ca3aecead875f746622d1f"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R20m/T32TPT_20210627T100559_B03_20m.jp2"
- view:incidence_angle 7.85288241671027
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B03_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R60m/T32TPT_20210627T100559_B03_60m.jp2"
- type "image/jp2"
- title "Green (band 3) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210627T100559_B03_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3742655
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.199569638331
- file:checksum "162050d3fb8c330e2db44ddc7c8c500fdc36666f253cfbad1a61499bdb8f3a19a510"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R60m/T32TPT_20210627T100559_B03_60m.jp2"
- view:incidence_angle 7.85288241671027
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B04_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R10m/T32TPT_20210627T100559_B04_10m.jp2"
- type "image/jp2"
- title "Red (band 4) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210627T100559_B04_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 118589553
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.142852784305
- file:checksum "1620a9f6a9b5c7da600addd5163131e6b6563866b0406532a89c5f4e442efa6bfeb5"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R10m/T32TPT_20210627T100559_B04_10m.jp2"
- view:incidence_angle 7.87899781216136
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B04_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R20m/T32TPT_20210627T100559_B04_20m.jp2"
- type "image/jp2"
- title "Red (band 4) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210627T100559_B04_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33830633
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.142852784305
- file:checksum "1620744f743d5740c45bd8d3844adafa9bd888edc50ad6c601f377a0a3de0660b380"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R20m/T32TPT_20210627T100559_B04_20m.jp2"
- view:incidence_angle 7.87899781216136
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B04_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R60m/T32TPT_20210627T100559_B04_60m.jp2"
- type "image/jp2"
- title "Red (band 4) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210627T100559_B04_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3751935
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.142852784305
- file:checksum "16203a61291361aa4526148a178be427630abfbbdc626dcb6d4a16d5c6157ea6313f"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R60m/T32TPT_20210627T100559_B04_60m.jp2"
- view:incidence_angle 7.87899781216136
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B05_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R20m/T32TPT_20210627T100559_B05_20m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210627T100559_B05_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33713787
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.12228569439
- file:checksum "16204a28f5b035c56372792f36e78564050ec2fedbcb6196729fb68b33a298496473"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R20m/T32TPT_20210627T100559_B05_20m.jp2"
- view:incidence_angle 7.9014875493673
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B05_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R60m/T32TPT_20210627T100559_B05_60m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210627T100559_B05_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3747653
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.12228569439
- file:checksum "1620abedd1a6a6937221dfa93d810e013c3044f2b049bf85733758cba9115cde30a6"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R60m/T32TPT_20210627T100559_B05_60m.jp2"
- view:incidence_angle 7.9014875493673
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B06_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R20m/T32TPT_20210627T100559_B06_20m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 20m"
- description "S3 storage provided by CloudFerro Cloud and OpenTelekom Cloud (OTC). Use endpoint URL `https://eodata.dataspace.copernicus.eu`."
bands[] 1 items
0
- eo:center_wavelength 0.739
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210627T100559_B06_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33798789
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.08524915793
- file:checksum "162009ad4a3c74d54b84610402faad6915669bbaf0ac3aee5fb5a4bec9a5e581682a"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R20m/T32TPT_20210627T100559_B06_20m.jp2"
- view:incidence_angle 7.92666602575632
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B06_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R60m/T32TPT_20210627T100559_B06_60m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.739
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210627T100559_B06_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3742370
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.08524915793
- file:checksum "16207134f105ba09282504ec28690ee91d6a9e7fd205cdac51c6b31fd4f8bfbb40fd"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R60m/T32TPT_20210627T100559_B06_60m.jp2"
- view:incidence_angle 7.92666602575632
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B07_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R20m/T32TPT_20210627T100559_B07_20m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.78
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210627T100559_B07_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33801633
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.060173668162
- file:checksum "1620ca48d8c1796fc5bce9cbf269857d3efbe5cf4edca2a00765247753b6feb61f81"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R20m/T32TPT_20210627T100559_B07_20m.jp2"
- view:incidence_angle 7.9545390643824
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B07_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R60m/T32TPT_20210627T100559_B07_60m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.78
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210627T100559_B07_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3738953
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.060173668162
- file:checksum "16209de8102209334f2a08421b771cff0b1df7cecd88ef34485fb73de263fcf52e62"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R60m/T32TPT_20210627T100559_B07_60m.jp2"
- view:incidence_angle 7.9545390643824
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B08_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R10m/T32TPT_20210627T100559_B08_10m.jp2"
- type "image/jp2"
- title "NIR 1 (band 8) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.454
- name "B08"
- eo:common_name "nir"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210627T100559_B08_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135020243
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.221984705004
- file:checksum "1620d0c63d581115c1ec91d582e785fde86b77163228c363e11ab32dcb4d44efcaef"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R10m/T32TPT_20210627T100559_B08_10m.jp2"
- view:incidence_angle 7.83823629980497
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B09_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R60m/T32TPT_20210627T100559_B09_60m.jp2"
- type "image/jp2"
- title "NIR 3 (band 9) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.943
- eo:full_width_half_max 0.479
- name "B09"
- eo:common_name "nir09"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210627T100559_B09_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3750583
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.010069830467
- file:checksum "16200e396686c27ccca63ca5f5f5df11bf916a1ce79dab0d471855bbced91c43a2f6"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R60m/T32TPT_20210627T100559_B09_60m.jp2"
- view:incidence_angle 8.0592671258706
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B11_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R20m/T32TPT_20210627T100559_B11_20m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 20m"
bands[] 1 items
0
- eo:center_wavelength 1.61
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210627T100559_B11_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33725389
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.134154326749
- file:checksum "1620bb4487b1d2b060062f6822154ae3f1c3208fcb358d2d29fd7c611b7d05001f6b"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R20m/T32TPT_20210627T100559_B11_20m.jp2"
- view:incidence_angle 7.92634402663066
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B11_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R60m/T32TPT_20210627T100559_B11_60m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 60m"
bands[] 1 items
0
- eo:center_wavelength 1.61
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210627T100559_B11_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3752046
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.134154326749
- file:checksum "1620953b61d2ea8c58ca708a24fb2a842b6146fc3d3c3fe2d3f90cd1f1c0c3d52a40"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R60m/T32TPT_20210627T100559_B11_60m.jp2"
- view:incidence_angle 7.92634402663066
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B12_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R20m/T32TPT_20210627T100559_B12_20m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 20m"
bands[] 1 items
0
- eo:center_wavelength 2.186
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210627T100559_B12_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33420393
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.072886819922
- file:checksum "16209fb37095dc3e25b91aeb351448c127eef6ae528f3995e75c2c5256f9deb174bb"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R20m/T32TPT_20210627T100559_B12_20m.jp2"
- view:incidence_angle 7.99971688291219
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B12_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R60m/T32TPT_20210627T100559_B12_60m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 60m"
bands[] 1 items
0
- eo:center_wavelength 2.186
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210627T100559_B12_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3752622
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.072886819922
- file:checksum "16201f4a792d00ed2d2bcb38b7b8154a3623e5faee6dea98c104ad29cea3ddac3d78"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R60m/T32TPT_20210627T100559_B12_60m.jp2"
- view:incidence_angle 7.99971688291219
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B8A_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R20m/T32TPT_20210627T100559_B8A_20m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.864
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210627T100559_B8A_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33811815
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.023944670738
- file:checksum "1620d72aa15648b4106f0b5978f2baaf1c992cab26841a99b6d5c590bcf66a2320f6"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R20m/T32TPT_20210627T100559_B8A_20m.jp2"
- view:incidence_angle 7.98496073392013
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B8A_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R60m/T32TPT_20210627T100559_B8A_60m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.864
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210627T100559_B8A_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3738775
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.023944670738
- file:checksum "1620439241aeefa5b2fb9b6e933d38c5f991148ec9e0634803c8ff79c987cb915f3b"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R60m/T32TPT_20210627T100559_B8A_60m.jp2"
- view:incidence_angle 7.98496073392013
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
Product
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/$value"
- type "application/zip"
- title "Zipped product"
auth:refs[] 1 items
- 0 "oidc"
- file:size 1200589953
- storage:refs "𒍟※"
- file:checksum "d501103057e0a78edfdfab4a1f306a08b19b7d"
- alternate:name "HTTPS"
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE.zip"
roles[] 3 items
- 0 "data"
- 1 "metadata"
- 2 "archive"
SCL_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R20m/T32TPT_20210627T100559_SCL_20m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210627T100559_SCL_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 2813681
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620f201af0fc36b11f74f8767b4237ae295f6874f04348d9bd6d771775f459f4959"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R20m/T32TPT_20210627T100559_SCL_20m.jp2"
classification:classes[] 12 items
0
- percentage 8.918451
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
- percentage 0.0
2
- percentage 1.417252
- name "dark_area_pixels"
- value 2
3
- percentage 0.682236
- name "cloud_shadows"
- value 3
4
- percentage 68.942064
- name "vegetation"
- value 4
5
- percentage 10.553885
- name "not_vegetated"
- value 5
6
- percentage 0.73024
- name "water"
- value 6
7
- percentage 0.372121
- name "unclassified"
- value 7
8
- percentage 2.953941
- name "cloud_medium_probability"
- value 8
9
- percentage 2.72602
- name "cloud_high_probability"
- value 9
10
- percentage 4.510039
- name "thin_cirrus"
- value 10
11
- percentage 7.112195999999999
- name "snow"
- value 11
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "data"
- 1 "sampling:original"
- 2 "gsd:20m"
SCL_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R60m/T32TPT_20210627T100559_SCL_60m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210627T100559_SCL_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 661178
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620db00c1babdc8fff336dd7a691eb67244287f716e2d023da20df7aeb8a1695537"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R60m/T32TPT_20210627T100559_SCL_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
classification:classes[] 12 items
0
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
2
- name "dark_area_pixels"
- value 2
3
- name "cloud_shadows"
- value 3
4
- name "vegetation"
- value 4
5
- name "not_vegetated"
- value 5
6
- name "water"
- value 6
7
- name "unclassified"
- value 7
8
- name "cloud_medium_probability"
- value 8
9
- name "cloud_high_probability"
- value 9
10
- name "thin_cirrus"
- value 10
11
- name "snow"
- value 11
roles[] 3 items
- 0 "data"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
TCI_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R10m/T32TPT_20210627T100559_TCI_10m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210627T100559_TCI_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135622002
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16204120d423d02a4b99a9a8fd3e761993aba8d39ecbf97a98f3ed40238c6bc99975"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R10m/T32TPT_20210627T100559_TCI_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 10980
- 1 10980
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:original"
- 2 "gsd:10m"
TCI_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R20m/T32TPT_20210627T100559_TCI_20m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210627T100559_TCI_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33885292
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620aa07decd6ded1b2c729c963f582aad50741cefcf55fc42fd702b795fbb4f4137"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R20m/T32TPT_20210627T100559_TCI_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:20m"
TCI_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R60m/T32TPT_20210627T100559_TCI_60m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210627T100559_TCI_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3742277
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162022fdd571a878e352f5b018daa17dd9dc5532a1f64e028d1d79222e79520d9040"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R60m/T32TPT_20210627T100559_TCI_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
WVP_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R10m/T32TPT_20210627T100559_WVP_10m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210627T100559_WVP_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 91028153
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620028043acc11ad17e696725e93ba9a8f0fa8de9de9b91ec868e3283a7aa3f81d6"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R10m/T32TPT_20210627T100559_WVP_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
WVP_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R20m/T32TPT_20210627T100559_WVP_20m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210627T100559_WVP_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 28564503
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620d1b61bec3dc0b78333f45271441510a3b19b00e2dc1893472701f74dc9211ee7"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R20m/T32TPT_20210627T100559_WVP_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
WVP_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R60m/T32TPT_20210627T100559_WVP_60m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210627T100559_WVP_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3735058
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620b1f042861eb80cae28f999b24acc71e8b7d604ca0a1870921d658cb0f4b788b9"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/IMG_DATA/R60m/T32TPT_20210627T100559_WVP_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
thumbnail
- href "https://datahub.creodias.eu/odata/v1/Assets(ce2f9402-2b02-42ac-a2ef-f38b05a8b7dc)/$value"
- type "image/jpeg"
- title "Quicklook"
alternate
s3
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859-ql.jpg"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
auth:refs[] 1 items
- 0 "oidc"
- file:size 42539
- file:checksum "d50110b26d65d532a1457ea861afb0cc91772e"
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859-ql.jpg"
- data_type "uint8"
- proj:code None
proj:shape[] 2 items
- 0 343
- 1 343
- alternate:name "HTTPS"
roles[] 2 items
- 0 "thumbnail"
- 1 "overview"
safe_manifest
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/manifest.safe"
- type "application/xml"
- title "manifest.safe"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(manifest.safe)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 69172
- file:checksum "d50110d3248b43dafab7eb0499d58e667b9f1c"
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/manifest.safe"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
granule_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/MTD_TL.xml"
- type "application/xml"
- title "MTD_TL.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes()/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022499_20210627T101702)/Nodes(MTD_TL.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 463521
- file:checksum "d5012074b02de86c419c94d72baa5268f483d7b0d082b4d49fb97f875ccd6f30309384"
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/GRANULE/L2A_T32TPT_A022499_20210627T101702/MTD_TL.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
inspire_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/INSPIRE.xml"
- type "application/xml"
- title "INSPIRE.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(INSPIRE.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 18907
- file:checksum "d50120eb73ae4721ec7a8a38ddf526d70a6863e3cd822cc1e26c7fb04670be41128592"
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/INSPIRE.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
product_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/MTD_MSIL2A.xml"
- type "application/xml"
- title "MTD_MSIL2A.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes(MTD_MSIL2A.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 55083
- file:checksum "d50120c2e1e863e102ccf98d5018439a1eee38bc153ebae0bdc3150b0227fcf30195e1"
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/MTD_MSIL2A.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
datastrip_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/27/S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/DATASTRIP/DS_S2RP_20230318T233859_S20210627T101702/MTD_DS.xml"
- type "application/xml"
- title "MTD_DS.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(23ef7717-6a96-4c83-8716-d2507d2541b7)/Nodes(S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE)/Nodes()/Nodes(DATASTRIP)/Nodes(DS_S2RP_20230318T233859_S20210627T101702)/Nodes(MTD_DS.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 23629682
- file:checksum "d50120bfe0a15f091b29878895d14dc94c417f04710288b3b582e086349ef528b3a5c2"
- file:local_path "S2B_MSIL2A_20210627T100559_N0500_R022_T32TPT_20230318T233859.SAFE/DATASTRIP/DS_S2RP_20230318T233859_S20210627T101702/MTD_DS.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
- collection "sentinel-2-l2a"
11
- type "Feature"
- stac_version "1.1.0"
stac_extensions[] 15 items
- 0 "https://stac-extensions.github.io/eo/v2.0.0/schema.json"
- 1 "https://stac-extensions.github.io/raster/v2.0.0/schema.json"
- 2 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 3 "https://stac-extensions.github.io/projection/v2.0.0/schema.json"
- 4 "https://stac-extensions.github.io/grid/v1.1.0/schema.json"
- 5 "https://stac-extensions.github.io/view/v1.0.0/schema.json"
- 6 "https://stac-extensions.github.io/file/v2.1.0/schema.json"
- 7 "https://stac-extensions.github.io/processing/v1.2.0/schema.json"
- 8 "https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json"
- 9 "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json"
- 10 "https://stac-extensions.github.io/authentication/v1.1.0/schema.json"
- 11 "https://stac-extensions.github.io/classification/v2.0.0/schema.json"
- 12 "https://stac-extensions.github.io/product/v0.1.0/schema.json"
- 13 "https://cs-si.github.io/eopf-stac-extension/v1.2.0/schema.json"
- 14 "https://stac-extensions.github.io/storage/v2.0.0/schema.json"
- id "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 12 items
0[] 2 items
- 0 10.31412431147886
- 1 46.94760709915466
1[] 2 items
- 0 10.320151305012606
- 1 46.96428626115323
2[] 2 items
- 0 10.373402898937105
- 1 47.11061719219748
3[] 2 items
- 0 10.423746905138367
- 1 47.257715073527855
4[] 2 items
- 0 10.476701479907176
- 1 47.40414575123356
5[] 2 items
- 0 10.529122263614363
- 1 47.550694785993386
6[] 2 items
- 0 10.581233396600323
- 1 47.69731041721399
7[] 2 items
- 0 10.633485598289157
- 1 47.8405661382797
8[] 2 items
- 0 11.802846682924509
- 1 47.81947440295927
9[] 2 items
- 0 11.751084998620154
- 1 46.83262831925138
10[] 2 items
- 0 10.31188688551243
- 1 46.85818197246455
11[] 2 items
- 0 10.31412431147886
- 1 46.94760709915466
bbox[] 4 items
- 0 10.311887
- 1 46.832628
- 2 11.802847
- 3 47.840566
properties
- gsd 10
- created "2023-03-06T06:40:48.062000Z"
- updated "2024-04-30T05:44:00.798410Z"
- datetime "2021-06-22T10:10:31.024000Z"
- platform "sentinel-2a"
- grid:code "MGRS-32TPT"
- published "2023-03-10T06:45:24.326123Z"
statistics
- water 0.699068
- nodata 9.33119
- dark_area 1.516507
- vegetation 53.398359
- thin_cirrus 0.138691
- cloud_shadow 2.465164
- unclassified 0.9799659999999999
- not_vegetated 8.868597
- high_proba_clouds 15.023246
- medium_proba_clouds 10.38753
- saturated_defective 0.0
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 "2021-06-22T10:10:31.024Z"
- product:type "S2MSI2A"
- view:azimuth 104.250014317388
- constellation "sentinel-2"
- eo:snow_cover 6.52
- eo:cloud_cover 25.55
- start_datetime "2021-06-22T10:10:31.024Z"
- sat:orbit_state "descending"
storage:schemes
cdse-s3
- 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. A Global Service Load Balancer (GSLB) directs the request to either CloudFerro Cloud or OpenTelekom Cloud (OTC) S3 endpoint based on the location of the DNS resolver."
- requester_pays False
creodias-s3
- 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 "GS2A_20210622T101031_031336_N05.00"
- processing:level "L2"
- view:sun_azimuth 148.111114589289
- eopf:datastrip_id "S2A_OPER_MSI_L2A_DS_S2RP_20230129T153031_S20210622T101416_N05.00"
- processing:version "05.00"
- product:timeliness "PT24H"
- sat:absolute_orbit 31336
- sat:relative_orbit 22
- view:sun_elevation 63.2431518165464
- processing:datetime "2023-01-29T15:30:31.000000Z"
- processing:facility "ESA"
- eopf:instrument_mode "INS-NOBS"
- eopf:origin_datetime "2023-03-06T06:40:48.062000Z"
- view:incidence_angle 7.943762232616157
- product:timeliness_category "NRT"
- sat:platform_international_designator "2015-028A"
links[] 5 items
0
- rel "collection"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
1
- rel "parent"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
2
- rel "root"
- href "https://stac.dataspace.copernicus.eu/v1/"
- type "application/json"
- title "cdse-stac"
3
- rel "self"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031"
- type "application/geo+json"
4
- rel "version-history"
- href "https://trace.dataspace.copernicus.eu/api/v1/traces/name/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE.zip"
- type "application/json"
- title "Product history record from the CDSE traceability service"
assets
AOT_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R10m/T32TPT_20210622T101031_AOT_10m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210622T101031_AOT_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 4853810
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620cfa63e136df49260024bcca72b69180ef21c5087b421011f6f2d89acdaa1b81b"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R10m/T32TPT_20210622T101031_AOT_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
AOT_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R20m/T32TPT_20210622T101031_AOT_20m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210622T101031_AOT_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3566438
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620add69f8824c2e4adf319cd3897b13de32ee639d85bd7558a0b0bba674340ac01"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R20m/T32TPT_20210622T101031_AOT_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
AOT_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R60m/T32TPT_20210622T101031_AOT_60m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210622T101031_AOT_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 852574
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162017bcd1ca82a1af7270cd877b40c4ba15b1cd7585537766f4881776daf5c0cc91"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R60m/T32TPT_20210622T101031_AOT_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
B01_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R20m/T32TPT_20210622T101031_B01_20m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.443
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210622T101031_B01_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 24115488
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.190457997874
- file:checksum "1620cd603aa3f8106db744b04a09fafe8d55bf554736ac4269199824bb8d1c9f0960"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R20m/T32TPT_20210622T101031_B01_20m.jp2"
- view:incidence_angle 8.04365734853695
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:upsampled"
- 3 "gsd:20m"
B01_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R60m/T32TPT_20210622T101031_B01_60m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.443
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210622T101031_B01_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3751321
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.190457997874
- file:checksum "1620bde8ae3712c27cde1036f3d431ace449c2718534bc18190f144cf8096701dd70"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R60m/T32TPT_20210622T101031_B01_60m.jp2"
- view:incidence_angle 8.04365734853695
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B02_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R10m/T32TPT_20210622T101031_B02_10m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210622T101031_B02_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 121976889
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.326637390142
- file:checksum "1620fc4d6732b08c018954df5cdf686c4f233b97e93830e2788a1adbf1bd72100af9"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R10m/T32TPT_20210622T101031_B02_10m.jp2"
- view:incidence_angle 7.843580007133
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B02_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R20m/T32TPT_20210622T101031_B02_20m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210622T101031_B02_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33814135
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.326637390142
- file:checksum "16204302e580080cce0f0da2f7e20e82518ed9399e32387e875a08b91bafd195dea1"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R20m/T32TPT_20210622T101031_B02_20m.jp2"
- view:incidence_angle 7.843580007133
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B02_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R60m/T32TPT_20210622T101031_B02_60m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210622T101031_B02_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3754037
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.326637390142
- file:checksum "1620b294f2ce2e3d5707c3f1d27c6e9866b1ac83500e6e5d33d7f119e24f56b4b82e"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R60m/T32TPT_20210622T101031_B02_60m.jp2"
- view:incidence_angle 7.843580007133
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B03_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R10m/T32TPT_20210622T101031_B03_10m.jp2"
- type "image/jp2"
- title "Green (band 3) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210622T101031_B03_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 124027198
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.295913879557
- file:checksum "16201a94ea572f9856448cc8c3045f21278284b5c2815884289d9dcf0546d34be9a8"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R10m/T32TPT_20210622T101031_B03_10m.jp2"
- view:incidence_angle 7.86603931036755
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B03_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R20m/T32TPT_20210622T101031_B03_20m.jp2"
- type "image/jp2"
- title "Green (band 3) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210622T101031_B03_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33865432
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.295913879557
- file:checksum "162055df33170a3558db0a3bf97dfba18c2f4386bbcbd087ab35c36242685e84a002"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R20m/T32TPT_20210622T101031_B03_20m.jp2"
- view:incidence_angle 7.86603931036755
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B03_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R60m/T32TPT_20210622T101031_B03_60m.jp2"
- type "image/jp2"
- title "Green (band 3) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210622T101031_B03_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3752348
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.295913879557
- file:checksum "1620c4cc044a275d7b871650975ad9696f24ce46b72e165b7d6e606e9f1762300d7e"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R60m/T32TPT_20210622T101031_B03_60m.jp2"
- view:incidence_angle 7.86603931036755
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B04_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R10m/T32TPT_20210622T101031_B04_10m.jp2"
- type "image/jp2"
- title "Red (band 4) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210622T101031_B04_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 122207521
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.254875304527
- file:checksum "162049a42fd1de5f903a486bd39a85db91981dce55f9ef8af594cdc9936839c2ba0d"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R10m/T32TPT_20210622T101031_B04_10m.jp2"
- view:incidence_angle 7.90026252688868
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B04_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R20m/T32TPT_20210622T101031_B04_20m.jp2"
- type "image/jp2"
- title "Red (band 4) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210622T101031_B04_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33884298
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.254875304527
- file:checksum "1620b3752c5aa161fad9f853e1c7b7072a30f801f43f7cda698a1419f5ce22377b5c"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R20m/T32TPT_20210622T101031_B04_20m.jp2"
- view:incidence_angle 7.90026252688868
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B04_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R60m/T32TPT_20210622T101031_B04_60m.jp2"
- type "image/jp2"
- title "Red (band 4) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210622T101031_B04_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3757651
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.254875304527
- file:checksum "1620b7768ad0c095ad0d0e7457b0b7b3e90070323a4a725a104b56ed356fef5027cc"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R60m/T32TPT_20210622T101031_B04_60m.jp2"
- view:incidence_angle 7.90026252688868
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B05_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R20m/T32TPT_20210622T101031_B05_20m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210622T101031_B05_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33764299
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.243160870619
- file:checksum "16202857f825d32b5fd95a586ed1a68428fece8127a9cad76721560c4300265c8039"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R20m/T32TPT_20210622T101031_B05_20m.jp2"
- view:incidence_angle 7.92276642221617
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B05_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R60m/T32TPT_20210622T101031_B05_60m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210622T101031_B05_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3757579
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.243160870619
- file:checksum "162038cff956447459688506039f592087b63caa29697732966bcad9687a790ab8b3"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R60m/T32TPT_20210622T101031_B05_60m.jp2"
- view:incidence_angle 7.92276642221617
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B06_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R20m/T32TPT_20210622T101031_B06_20m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 20m"
- description "S3 storage provided by CloudFerro Cloud and OpenTelekom Cloud (OTC). Use endpoint URL `https://eodata.dataspace.copernicus.eu`."
bands[] 1 items
0
- eo:center_wavelength 0.741
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210622T101031_B06_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33898042
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.214856076445
- file:checksum "1620a33303963f23f06e4fc053b1fb260bf5672a30d9c3c1fc3070519fe0703b2ae5"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R20m/T32TPT_20210622T101031_B06_20m.jp2"
- view:incidence_angle 7.94797935282267
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B06_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R60m/T32TPT_20210622T101031_B06_60m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.741
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210622T101031_B06_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3737803
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.214856076445
- file:checksum "1620e6c8fec5f3337f8e290dfb6cb498ff5924a52aa62ac1274113f611e209ee2136"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R60m/T32TPT_20210622T101031_B06_60m.jp2"
- view:incidence_angle 7.94797935282267
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B07_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R20m/T32TPT_20210622T101031_B07_20m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210622T101031_B07_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33885059
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.198653983831
- file:checksum "1620e0740d28bc2c8e274d4a1234d3d631b4a4859b87591277808a603c50d97dc8df"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R20m/T32TPT_20210622T101031_B07_20m.jp2"
- view:incidence_angle 7.97583881532149
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B07_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R60m/T32TPT_20210622T101031_B07_60m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210622T101031_B07_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3769893
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.198653983831
- file:checksum "162026ddfffdf03bcca0454831200afe8cbf625822249751b0970a62623e85422698"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R60m/T32TPT_20210622T101031_B07_60m.jp2"
- view:incidence_angle 7.97583881532149
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B08_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R10m/T32TPT_20210622T101031_B08_10m.jp2"
- type "image/jp2"
- title "NIR 1 (band 8) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.454
- name "B08"
- eo:common_name "nir"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210622T101031_B08_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135369086
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.313595465914
- file:checksum "1620a27fc78847cfa7110a6caec84bae1754a8d5826f3c1cb5fcfbfaca97b7fe5d31"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R10m/T32TPT_20210622T101031_B08_10m.jp2"
- view:incidence_angle 7.85134156865102
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B09_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R60m/T32TPT_20210622T101031_B09_60m.jp2"
- type "image/jp2"
- title "NIR 3 (band 9) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.945
- eo:full_width_half_max 0.479
- name "B09"
- eo:common_name "nir09"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210622T101031_B09_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3740627
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.242580832925
- file:checksum "162060904bc7ab304a91a396bb9dd584fae20dbc3428cf726fdc7fc5b64b08b7b1e8"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R60m/T32TPT_20210622T101031_B09_60m.jp2"
- view:incidence_angle 8.08776332101319
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B11_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R20m/T32TPT_20210622T101031_B11_20m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 20m"
bands[] 1 items
0
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210622T101031_B11_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33775744
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.27237185625
- file:checksum "162001177c82a1ad8bd0961416c9f4a5eb89a3c9295375a5945e73f1a53484b3bc22"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R20m/T32TPT_20210622T101031_B11_20m.jp2"
- view:incidence_angle 7.93071212185295
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B11_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R60m/T32TPT_20210622T101031_B11_60m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 60m"
bands[] 1 items
0
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210622T101031_B11_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3749396
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.27237185625
- file:checksum "1620ede2b4309586bad58806bc9e225cff80addeb1db58184cf1a174900a6356e6c6"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R60m/T32TPT_20210622T101031_B11_60m.jp2"
- view:incidence_angle 7.93071212185295
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B12_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R20m/T32TPT_20210622T101031_B12_20m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 20m"
bands[] 1 items
0
- eo:center_wavelength 2.202
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210622T101031_B12_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33701768
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.193311270607
- file:checksum "1620458b5ab6731a02d63a8f4481bd7fbaf74357aa60d99afbeb59183c9de03fc604"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R20m/T32TPT_20210622T101031_B12_20m.jp2"
- view:incidence_angle 7.99676475456219
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B12_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R60m/T32TPT_20210622T101031_B12_60m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 60m"
bands[] 1 items
0
- eo:center_wavelength 2.202
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210622T101031_B12_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3750689
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.193311270607
- file:checksum "16208e5fb78e74061084f7239345d7efaa46989f0e9a59404f080075f22ccd47f378"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R60m/T32TPT_20210622T101031_B12_60m.jp2"
- view:incidence_angle 7.99676475456219
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B8A_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R20m/T32TPT_20210622T101031_B8A_20m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210622T101031_B8A_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33822435
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.171400393265
- file:checksum "1620f5a719b3f2eacf49c6b8b89b6040624836c56cee36eeb912e8f4976290d8316b"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R20m/T32TPT_20210622T101031_B8A_20m.jp2"
- view:incidence_angle 8.006271525092
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B8A_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R60m/T32TPT_20210622T101031_B8A_60m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210622T101031_B8A_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3769779
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.171400393265
- file:checksum "162046e28089f71515fd4fc86dff48ef79d0994d431b6a1fd5b193c661eee2574c6b"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R60m/T32TPT_20210622T101031_B8A_60m.jp2"
- view:incidence_angle 8.006271525092
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
Product
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/$value"
- type "application/zip"
- title "Zipped product"
auth:refs[] 1 items
- 0 "oidc"
- file:size 1189626260
- storage:refs "𒍟※"
- file:checksum "d50110f34e3ea8133baaabad1d383ab8d95907"
- alternate:name "HTTPS"
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE.zip"
roles[] 3 items
- 0 "data"
- 1 "metadata"
- 2 "archive"
SCL_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R20m/T32TPT_20210622T101031_SCL_20m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210622T101031_SCL_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3431901
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620641d8b3cdcf1ab194ed799b731083d1f5c80467fe7ebc8d14e2d8f009ca35fc1"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R20m/T32TPT_20210622T101031_SCL_20m.jp2"
classification:classes[] 12 items
0
- percentage 9.33119
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
- percentage 0.0
2
- percentage 1.516507
- name "dark_area_pixels"
- value 2
3
- percentage 2.465164
- name "cloud_shadows"
- value 3
4
- percentage 53.398359
- name "vegetation"
- value 4
5
- percentage 8.868597
- name "not_vegetated"
- value 5
6
- percentage 0.699068
- name "water"
- value 6
7
- percentage 0.9799659999999999
- name "unclassified"
- value 7
8
- percentage 10.38753
- name "cloud_medium_probability"
- value 8
9
- percentage 15.023246
- name "cloud_high_probability"
- value 9
10
- percentage 0.138691
- name "thin_cirrus"
- value 10
11
- percentage 6.522872
- name "snow"
- value 11
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "data"
- 1 "sampling:original"
- 2 "gsd:20m"
SCL_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R60m/T32TPT_20210622T101031_SCL_60m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210622T101031_SCL_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 805438
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162043a12369563367d2b0a4402ca604d6ed29ba2550d3562387f3896d41cc1754f1"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R60m/T32TPT_20210622T101031_SCL_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
classification:classes[] 12 items
0
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
2
- name "dark_area_pixels"
- value 2
3
- name "cloud_shadows"
- value 3
4
- name "vegetation"
- value 4
5
- name "not_vegetated"
- value 5
6
- name "water"
- value 6
7
- name "unclassified"
- value 7
8
- name "cloud_medium_probability"
- value 8
9
- name "cloud_high_probability"
- value 9
10
- name "thin_cirrus"
- value 10
11
- name "snow"
- value 11
roles[] 3 items
- 0 "data"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
TCI_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R10m/T32TPT_20210622T101031_TCI_10m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210622T101031_TCI_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135369433
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16207342ae967df733f3e804450189a08b766d2b727733becd5a9b2ccca127ced852"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R10m/T32TPT_20210622T101031_TCI_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 10980
- 1 10980
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:original"
- 2 "gsd:10m"
TCI_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R20m/T32TPT_20210622T101031_TCI_20m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210622T101031_TCI_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33846606
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16203b9e898ab1d820d249b05c2c7e8d030e68880946e4d41ced43cd730739d1076d"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R20m/T32TPT_20210622T101031_TCI_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:20m"
TCI_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R60m/T32TPT_20210622T101031_TCI_60m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210622T101031_TCI_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3731249
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16207eef2159a656ada02d47369b3168ffe800057ba10dacd9e2262fe9f2da5a06b1"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R60m/T32TPT_20210622T101031_TCI_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
WVP_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R10m/T32TPT_20210622T101031_WVP_10m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210622T101031_WVP_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 76145123
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16203064485555a7bfbe0b2bd09d9a1aa3a05c4311d1cc48ea01a0d751eefbcb1a53"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R10m/T32TPT_20210622T101031_WVP_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
WVP_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R20m/T32TPT_20210622T101031_WVP_20m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210622T101031_WVP_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 24380719
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620a50e737ad9d6e665c6141f43559a289ff327b1df1b7c8961b78d4fbeb14ca42c"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R20m/T32TPT_20210622T101031_WVP_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
WVP_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R60m/T32TPT_20210622T101031_WVP_60m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210622T101031_WVP_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3651597
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620ac5ecdb56643464637a1d2faaa71f09357ef74c9f4f8a1d9906b4877503d250f"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/IMG_DATA/R60m/T32TPT_20210622T101031_WVP_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
thumbnail
- href "https://datahub.creodias.eu/odata/v1/Assets(3da4f0db-2eb4-4b2b-a862-afddcdda987f)/$value"
- type "image/jpeg"
- title "Quicklook"
alternate
s3
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031-ql.jpg"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
auth:refs[] 1 items
- 0 "oidc"
- file:size 49968
- file:checksum "d50110f9f72c651176ab4ce3ed3ec342af3bc7"
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031-ql.jpg"
- data_type "uint8"
- proj:code None
proj:shape[] 2 items
- 0 343
- 1 343
- alternate:name "HTTPS"
roles[] 2 items
- 0 "thumbnail"
- 1 "overview"
safe_manifest
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/manifest.safe"
- type "application/xml"
- title "manifest.safe"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(manifest.safe)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 69171
- file:checksum "d50110e841882bb265f4e71ac0e1c7e71b359d"
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/manifest.safe"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
granule_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/MTD_TL.xml"
- type "application/xml"
- title "MTD_TL.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes()/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031336_20210622T101416)/Nodes(MTD_TL.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 463448
- file:checksum "d501206b8c8eb0d51d702ba1b1656aa26fb4863667fab282268e54e7da2f8ad767120f"
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/GRANULE/L2A_T32TPT_A031336_20210622T101416/MTD_TL.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
inspire_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/INSPIRE.xml"
- type "application/xml"
- title "INSPIRE.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(INSPIRE.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 18903
- file:checksum "d50120bcb6d45d7b21d01c2d08c821136a5e6bd587ee401a8441f816a2eb9eed685ff2"
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/INSPIRE.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
product_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/MTD_MSIL2A.xml"
- type "application/xml"
- title "MTD_MSIL2A.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes(MTD_MSIL2A.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 55128
- file:checksum "d50120362db8151306325902fc3b8072787f8a1a69682d78cb1c7f46ac1befea662d9f"
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/MTD_MSIL2A.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
datastrip_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/22/S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/DATASTRIP/DS_S2RP_20230129T153031_S20210622T101416/MTD_DS.xml"
- type "application/xml"
- title "MTD_DS.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(6562becb-719f-4ba7-96ad-8b2f18b2d669)/Nodes(S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE)/Nodes()/Nodes(DATASTRIP)/Nodes(DS_S2RP_20230129T153031_S20210622T101416)/Nodes(MTD_DS.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 13673207
- file:checksum "d50120d19d32e5d94b838ee50169dd8c648632e1824ef50a193ae266d295b269d05e67"
- file:local_path "S2A_MSIL2A_20210622T101031_N0500_R022_T32TPT_20230129T153031.SAFE/DATASTRIP/DS_S2RP_20230129T153031_S20210622T101416/MTD_DS.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
- collection "sentinel-2-l2a"
12
- type "Feature"
- stac_version "1.1.0"
stac_extensions[] 15 items
- 0 "https://stac-extensions.github.io/eo/v2.0.0/schema.json"
- 1 "https://stac-extensions.github.io/raster/v2.0.0/schema.json"
- 2 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 3 "https://stac-extensions.github.io/projection/v2.0.0/schema.json"
- 4 "https://stac-extensions.github.io/grid/v1.1.0/schema.json"
- 5 "https://stac-extensions.github.io/view/v1.0.0/schema.json"
- 6 "https://stac-extensions.github.io/file/v2.1.0/schema.json"
- 7 "https://stac-extensions.github.io/processing/v1.2.0/schema.json"
- 8 "https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json"
- 9 "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json"
- 10 "https://stac-extensions.github.io/authentication/v1.1.0/schema.json"
- 11 "https://stac-extensions.github.io/classification/v2.0.0/schema.json"
- 12 "https://stac-extensions.github.io/product/v0.1.0/schema.json"
- 13 "https://cs-si.github.io/eopf-stac-extension/v1.2.0/schema.json"
- 14 "https://stac-extensions.github.io/storage/v2.0.0/schema.json"
- id "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 11 items
0[] 2 items
- 0 10.315134246761108
- 1 46.98797205062967
1[] 2 items
- 0 10.360796631924298
- 1 47.113279209239806
2[] 2 items
- 0 10.40976016639458
- 1 47.26079544161828
3[] 2 items
- 0 10.463025075051972
- 1 47.40723801864888
4[] 2 items
- 0 10.515694458092211
- 1 47.553891934303
5[] 2 items
- 0 10.568822849321505
- 1 47.70046381104009
6[] 2 items
- 0 10.620092413935424
- 1 47.840807710795836
7[] 2 items
- 0 11.802846682924509
- 1 47.81947440295927
8[] 2 items
- 0 11.751084998620154
- 1 46.83262831925138
9[] 2 items
- 0 10.31188688551243
- 1 46.85818197246455
10[] 2 items
- 0 10.315134246761108
- 1 46.98797205062967
bbox[] 4 items
- 0 10.311887
- 1 46.832628
- 2 11.802847
- 3 47.840808
properties
- gsd 10
- created "2023-06-15T10:08:50.550000Z"
- updated "2024-05-08T07:14:23.731639Z"
- datetime "2021-06-17T10:05:59.026000Z"
- platform "sentinel-2b"
- grid:code "MGRS-32TPT"
- published "2023-06-15T10:55:27.214224Z"
statistics
- water 0.84215
- nodata 8.783989
- dark_area 0.733103
- vegetation 51.991493
- thin_cirrus 0.102228
- cloud_shadow 5.442425
- unclassified 0.4344700000000001
- not_vegetated 5.913443
- high_proba_clouds 16.149166
- medium_proba_clouds 9.846946
- saturated_defective 0.0
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 "2021-06-17T10:05:59.026Z"
- product:type "S2MSI2A"
- view:azimuth 105.18447155209363
- constellation "sentinel-2"
- eo:snow_cover 8.54
- eo:cloud_cover 26.1
- start_datetime "2021-06-17T10:05:59.026Z"
- sat:orbit_state "descending"
storage:schemes
cdse-s3
- 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. A Global Service Load Balancer (GSLB) directs the request to either CloudFerro Cloud or OpenTelekom Cloud (OTC) S3 endpoint based on the location of the DNS resolver."
- requester_pays False
creodias-s3
- 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 "GS2B_20210617T100559_022356_N05.00"
- processing:level "L2"
- view:sun_azimuth 148.656829680856
- eopf:datastrip_id "S2B_OPER_MSI_L2A_DS_S2RP_20230321T221728_S20210617T101301_N05.00"
- processing:version "05.00"
- product:timeliness "PT24H"
- sat:absolute_orbit 22356
- sat:relative_orbit 22
- view:sun_elevation 63.3010599669065
- processing:datetime "2023-03-21T22:17:28.000000Z"
- processing:facility "ESA"
- eopf:instrument_mode "INS-NOBS"
- eopf:origin_datetime "2023-06-15T10:08:50.550000Z"
- view:incidence_angle 7.915114632930237
- product:timeliness_category "NRT"
- sat:platform_international_designator "2017-013A"
links[] 5 items
0
- rel "collection"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
1
- rel "parent"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
2
- rel "root"
- href "https://stac.dataspace.copernicus.eu/v1/"
- type "application/json"
- title "cdse-stac"
3
- rel "self"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728"
- type "application/geo+json"
4
- rel "version-history"
- href "https://trace.dataspace.copernicus.eu/api/v1/traces/name/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE.zip"
- type "application/json"
- title "Product history record from the CDSE traceability service"
assets
AOT_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R10m/T32TPT_20210617T100559_AOT_10m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210617T100559_AOT_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 5669669
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16204ab7c15e8069a1ea1f43fa9c73bb6807c2e724968ea32deec1553da550515822"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R10m/T32TPT_20210617T100559_AOT_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
AOT_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R20m/T32TPT_20210617T100559_AOT_20m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210617T100559_AOT_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 4052309
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16209f44a6a2ebb7e8afa7c12f314611f40bcf5d57b0286e87e042a4182f02a8ce1a"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R20m/T32TPT_20210617T100559_AOT_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
AOT_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R60m/T32TPT_20210617T100559_AOT_60m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210617T100559_AOT_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 899705
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620121c127aa016e8de3825acbc6e4ebfefb70f61b68cd0ebf1f5a26eff29f228e3"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R60m/T32TPT_20210617T100559_AOT_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
B01_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R20m/T32TPT_20210617T100559_B01_20m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.442
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210617T100559_B01_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 24327719
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.100083626891
- file:checksum "16207ee10ff2d0575f9dcecbec75fdc994da97cf64da9d825c20e2c97f5ac867fa94"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R20m/T32TPT_20210617T100559_B01_20m.jp2"
- view:incidence_angle 7.99744631214769
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:upsampled"
- 3 "gsd:20m"
B01_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R60m/T32TPT_20210617T100559_B01_60m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.442
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210617T100559_B01_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3750864
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.100083626891
- file:checksum "1620a201c5376590eb45d09589aac49e7e44b1c11c79891285d491b0dfe9d9735ca3"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R60m/T32TPT_20210617T100559_B01_60m.jp2"
- view:incidence_angle 7.99744631214769
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B02_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R10m/T32TPT_20210617T100559_B02_10m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210617T100559_B02_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 122777788
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.269115683122
- file:checksum "16205af1f6d074aad30d8e56735c37fa8fa5c88308d7b482108bf2b0b3546b6bd699"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R10m/T32TPT_20210617T100559_B02_10m.jp2"
- view:incidence_angle 7.82425410461125
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B02_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R20m/T32TPT_20210617T100559_B02_20m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210617T100559_B02_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33779743
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.269115683122
- file:checksum "16201da79fcb3742588f14d875665360bd79cd3fdab82d8890b4f482d946e3efb863"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R20m/T32TPT_20210617T100559_B02_20m.jp2"
- view:incidence_angle 7.82425410461125
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B02_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R60m/T32TPT_20210617T100559_B02_60m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210617T100559_B02_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3754403
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.269115683122
- file:checksum "1620172af96d492452b7968f55880802f02027dff1ab6a82030d01add4e2d292c368"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R60m/T32TPT_20210617T100559_B02_60m.jp2"
- view:incidence_angle 7.82425410461125
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B03_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R10m/T32TPT_20210617T100559_B03_10m.jp2"
- type "image/jp2"
- title "Green (band 3) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210617T100559_B03_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 125246510
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.236393647984
- file:checksum "16204381c852774858eb06dd4a4791b052ec8f729a2dad0cb401291eb5a3bd9f71ac"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R10m/T32TPT_20210617T100559_B03_10m.jp2"
- view:incidence_angle 7.85078367939183
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B03_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R20m/T32TPT_20210617T100559_B03_20m.jp2"
- type "image/jp2"
- title "Green (band 3) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210617T100559_B03_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33821024
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.236393647984
- file:checksum "1620ff906a1eb1887e59956d66c840c1d51079537759fabe80f3439c319493698976"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R20m/T32TPT_20210617T100559_B03_20m.jp2"
- view:incidence_angle 7.85078367939183
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B03_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R60m/T32TPT_20210617T100559_B03_60m.jp2"
- type "image/jp2"
- title "Green (band 3) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210617T100559_B03_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3757748
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.236393647984
- file:checksum "1620508a22b02c8aa79f5a21258efcf89d21ad06f2e83f6fe27bf52512af5b01a650"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R60m/T32TPT_20210617T100559_B03_60m.jp2"
- view:incidence_angle 7.85078367939183
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B04_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R10m/T32TPT_20210617T100559_B04_10m.jp2"
- type "image/jp2"
- title "Red (band 4) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210617T100559_B04_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 123338906
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.220177839724
- file:checksum "1620b6f2b10df9efc08d4085a86af4a23a8a276a1f787e9bd6f0b63e4280f5a530ac"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R10m/T32TPT_20210617T100559_B04_10m.jp2"
- view:incidence_angle 7.87719999568711
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B04_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R20m/T32TPT_20210617T100559_B04_20m.jp2"
- type "image/jp2"
- title "Red (band 4) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210617T100559_B04_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33815338
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.220177839724
- file:checksum "1620fce5762f674d21cf6d62c1a8aeced249b46d3bb8c8755112ad35eec390856e85"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R20m/T32TPT_20210617T100559_B04_20m.jp2"
- view:incidence_angle 7.87719999568711
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B04_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R60m/T32TPT_20210617T100559_B04_60m.jp2"
- type "image/jp2"
- title "Red (band 4) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210617T100559_B04_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3761953
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.220177839724
- file:checksum "162021002b215bcdc2379b90d5d0f8866eaff73c1bd2c2695075c2112fb711942207"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R60m/T32TPT_20210617T100559_B04_60m.jp2"
- view:incidence_angle 7.87719999568711
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B05_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R20m/T32TPT_20210617T100559_B05_20m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210617T100559_B05_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33848964
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.186373964873
- file:checksum "16209b05ab607982ba5c2a4d36f05f79e2a17803ee580249b82aba682d8f6078c22b"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R20m/T32TPT_20210617T100559_B05_20m.jp2"
- view:incidence_angle 7.89601226889673
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B05_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R60m/T32TPT_20210617T100559_B05_60m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210617T100559_B05_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3746370
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.186373964873
- file:checksum "16201071dc769ad1210dd4f53d909e0c16f6d9d5d8ee382573a42a3947bfaade231e"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R60m/T32TPT_20210617T100559_B05_60m.jp2"
- view:incidence_angle 7.89601226889673
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B06_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R20m/T32TPT_20210617T100559_B06_20m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 20m"
- description "S3 storage provided by CloudFerro Cloud and OpenTelekom Cloud (OTC). Use endpoint URL `https://eodata.dataspace.copernicus.eu`."
bands[] 1 items
0
- eo:center_wavelength 0.739
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210617T100559_B06_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33883701
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.155060726175
- file:checksum "16203c3ddd0b8121118cf85a9013fd9def022f99f530cf6020f0ec2211bd1b8f5f86"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R20m/T32TPT_20210617T100559_B06_20m.jp2"
- view:incidence_angle 7.92123513639089
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B06_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R60m/T32TPT_20210617T100559_B06_60m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.739
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210617T100559_B06_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3767306
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.155060726175
- file:checksum "16200a4375a85fa076667dcc6163de74361e6609c6b8872dd61c0eea10a4f01b4fac"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R60m/T32TPT_20210617T100559_B06_60m.jp2"
- view:incidence_angle 7.92123513639089
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B07_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R20m/T32TPT_20210617T100559_B07_20m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.78
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210617T100559_B07_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33799186
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.135666727351
- file:checksum "1620a7871c178fa3fcf9144b9f0d093770df36e2ab3968af68f8deb9bd816e9a1e8b"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R20m/T32TPT_20210617T100559_B07_20m.jp2"
- view:incidence_angle 7.94915646535344
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B07_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R60m/T32TPT_20210617T100559_B07_60m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.78
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210617T100559_B07_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3750435
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.135666727351
- file:checksum "16201b76cfeb00c8e3443ce975349fc449be4762f0af91c551e90adf21e398242c45"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R60m/T32TPT_20210617T100559_B07_60m.jp2"
- view:incidence_angle 7.94915646535344
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B08_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R10m/T32TPT_20210617T100559_B08_10m.jp2"
- type "image/jp2"
- title "NIR 1 (band 8) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.454
- name "B08"
- eo:common_name "nir"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210617T100559_B08_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 134976690
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.254115694488
- file:checksum "1620d814e2e14d1a54e84ebdb92291c4f91c57c441db26b52f685b9aa77c8e95b1ab"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R10m/T32TPT_20210617T100559_B08_10m.jp2"
- view:incidence_angle 7.83611463151702
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B09_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R60m/T32TPT_20210617T100559_B09_60m.jp2"
- type "image/jp2"
- title "NIR 3 (band 9) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.943
- eo:full_width_half_max 0.479
- name "B09"
- eo:common_name "nir09"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210617T100559_B09_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3738414
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.058671500071
- file:checksum "162014a1d3567aa13ba4ffc5d59d2b9a3e2e916e747439973a4d54deb7079bd38c1d"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R60m/T32TPT_20210617T100559_B09_60m.jp2"
- view:incidence_angle 8.04608844529977
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B11_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R20m/T32TPT_20210617T100559_B11_20m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 20m"
bands[] 1 items
0
- eo:center_wavelength 1.61
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210617T100559_B11_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33825705
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.212458500868
- file:checksum "1620240f25a2e4ce80756473ef732cc60305686241910584b3ffe666736a28de1063"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R20m/T32TPT_20210617T100559_B11_20m.jp2"
- view:incidence_angle 7.90513081529393
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B11_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R60m/T32TPT_20210617T100559_B11_60m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 60m"
bands[] 1 items
0
- eo:center_wavelength 1.61
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210617T100559_B11_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3741387
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.212458500868
- file:checksum "162089aa38aa8a6bece2db7e51b3f4bbb72bde8cfab9edc58b85d73d8db194be12a8"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R60m/T32TPT_20210617T100559_B11_60m.jp2"
- view:incidence_angle 7.90513081529393
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B12_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R20m/T32TPT_20210617T100559_B12_20m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 20m"
bands[] 1 items
0
- eo:center_wavelength 2.186
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210617T100559_B12_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33835826
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.171165586917
- file:checksum "1620aee8154edbc4569db8b3aa58d0f7cd77712478e14ed20f66ce14c2b0c4d881c6"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R20m/T32TPT_20210617T100559_B12_20m.jp2"
- view:incidence_angle 7.97508878026572
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B12_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R60m/T32TPT_20210617T100559_B12_60m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 60m"
bands[] 1 items
0
- eo:center_wavelength 2.186
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210617T100559_B12_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3758975
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.171165586917
- file:checksum "162076d161aba919ef133793677d92c8ec8f8f55657eb28793b110b169e128ea93fe"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R60m/T32TPT_20210617T100559_B12_60m.jp2"
- view:incidence_angle 7.97508878026572
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B8A_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R20m/T32TPT_20210617T100559_B8A_20m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.864
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210617T100559_B8A_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33806434
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.092247750296
- file:checksum "16203789fea6beceef3fbd2c53d1a8d47bc2d3bd8da8c6927da218c22cb8fb532d99"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R20m/T32TPT_20210617T100559_B8A_20m.jp2"
- view:incidence_angle 7.97172425502803
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B8A_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R60m/T32TPT_20210617T100559_B8A_60m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.864
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210617T100559_B8A_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3749463
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.092247750296
- file:checksum "16203f6831e1b7f81de8642184b56003b3b4d56e6b3f74933e53b2fdc619e5be67f0"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R60m/T32TPT_20210617T100559_B8A_60m.jp2"
- view:incidence_angle 7.97172425502803
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
Product
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/$value"
- type "application/zip"
- title "Zipped product"
auth:refs[] 1 items
- 0 "oidc"
- file:size 1200898636
- storage:refs "𒍟※"
- file:checksum "d5011049459f985351ffc133ae83ccda27e73f"
- alternate:name "HTTPS"
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE.zip"
roles[] 3 items
- 0 "data"
- 1 "metadata"
- 2 "archive"
SCL_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R20m/T32TPT_20210617T100559_SCL_20m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210617T100559_SCL_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3071463
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620e99c049cdf3566c6449dd5faf150a5851bafdd717f77f2d5259e7d243d8c894e"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R20m/T32TPT_20210617T100559_SCL_20m.jp2"
classification:classes[] 12 items
0
- percentage 8.783989
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
- percentage 0.0
2
- percentage 0.733103
- name "dark_area_pixels"
- value 2
3
- percentage 5.442425
- name "cloud_shadows"
- value 3
4
- percentage 51.991493
- name "vegetation"
- value 4
5
- percentage 5.913443
- name "not_vegetated"
- value 5
6
- percentage 0.84215
- name "water"
- value 6
7
- percentage 0.4344700000000001
- name "unclassified"
- value 7
8
- percentage 9.846946
- name "cloud_medium_probability"
- value 8
9
- percentage 16.149166
- name "cloud_high_probability"
- value 9
10
- percentage 0.102228
- name "thin_cirrus"
- value 10
11
- percentage 8.544581
- name "snow"
- value 11
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "data"
- 1 "sampling:original"
- 2 "gsd:20m"
SCL_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R60m/T32TPT_20210617T100559_SCL_60m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210617T100559_SCL_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 750288
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16203d3254a94b595c62590bdf39cc1d9423b47018f466881ac77631a7be2eb3da24"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R60m/T32TPT_20210617T100559_SCL_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
classification:classes[] 12 items
0
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
2
- name "dark_area_pixels"
- value 2
3
- name "cloud_shadows"
- value 3
4
- name "vegetation"
- value 4
5
- name "not_vegetated"
- value 5
6
- name "water"
- value 6
7
- name "unclassified"
- value 7
8
- name "cloud_medium_probability"
- value 8
9
- name "cloud_high_probability"
- value 9
10
- name "thin_cirrus"
- value 10
11
- name "snow"
- value 11
roles[] 3 items
- 0 "data"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
TCI_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R10m/T32TPT_20210617T100559_TCI_10m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210617T100559_TCI_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135098614
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620ad0ac8381e0954975ee21098c637ce4231174a67fcdb2c97daf998b99eba4673"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R10m/T32TPT_20210617T100559_TCI_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 10980
- 1 10980
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:original"
- 2 "gsd:10m"
TCI_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R20m/T32TPT_20210617T100559_TCI_20m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210617T100559_TCI_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33742816
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16209193535e881e77c265b856e0cf482c7eba7fc93c9970876846b2abad246d36ed"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R20m/T32TPT_20210617T100559_TCI_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:20m"
TCI_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R60m/T32TPT_20210617T100559_TCI_60m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210617T100559_TCI_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3719831
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16207c09533bcdc16e9137f53be3ddcd0b1fd5456e214e248b4d1ecd233da7c008d8"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R60m/T32TPT_20210617T100559_TCI_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
WVP_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R10m/T32TPT_20210617T100559_WVP_10m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210617T100559_WVP_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 73707186
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162015a1c072cc69b1cf94b85d4710ba5be3c05c501568f9905a602007688aa19bb7"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R10m/T32TPT_20210617T100559_WVP_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
WVP_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R20m/T32TPT_20210617T100559_WVP_20m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210617T100559_WVP_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 23574330
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620dcf9b0858e2bd247131578e92e084ebce0155d76b547970978a9bb27672b81ea"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R20m/T32TPT_20210617T100559_WVP_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
WVP_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R60m/T32TPT_20210617T100559_WVP_60m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210617T100559_WVP_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3547758
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620ea08a401ea8836f283fec829d8a6611e0bd60de05e52f3b53a1a02a6c4a21670"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/IMG_DATA/R60m/T32TPT_20210617T100559_WVP_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
thumbnail
- href "https://datahub.creodias.eu/odata/v1/Assets(8e212207-3ae8-40b4-a159-c873534bc623)/$value"
- type "image/jpeg"
- title "Quicklook"
alternate
s3
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728-ql.jpg"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
auth:refs[] 1 items
- 0 "oidc"
- file:size 48513
- file:checksum "d50110b6fabdd70e8e9c5cf092eb957686f46d"
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728-ql.jpg"
- data_type "uint8"
- proj:code None
proj:shape[] 2 items
- 0 343
- 1 343
- alternate:name "HTTPS"
roles[] 2 items
- 0 "thumbnail"
- 1 "overview"
safe_manifest
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/manifest.safe"
- type "application/xml"
- title "manifest.safe"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(manifest.safe)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 69135
- file:checksum "d50110859dfab0ba3de4a7f867ae69809f89ad"
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/manifest.safe"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
granule_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/MTD_TL.xml"
- type "application/xml"
- title "MTD_TL.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes()/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022356_20210617T101301)/Nodes(MTD_TL.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 463721
- file:checksum "d501204a4c8840d444345f2d3a1911e0e45cbd01f5e3ff284a063789d05782d40665b4"
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/GRANULE/L2A_T32TPT_A022356_20210617T101301/MTD_TL.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
inspire_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/INSPIRE.xml"
- type "application/xml"
- title "INSPIRE.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(INSPIRE.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 18868
- file:checksum "d501209eb2292acf6f3bbcf28cc0c89dd667685199b5c19312f3c90f911cbf326ed25e"
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/INSPIRE.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
product_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/MTD_MSIL2A.xml"
- type "application/xml"
- title "MTD_MSIL2A.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes(MTD_MSIL2A.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 55318
- file:checksum "d50120ac6558ea5211adf8684806e53eaf2045e2bdc169fec9b529cd7a134b482295f8"
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/MTD_MSIL2A.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
datastrip_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/17/S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/DATASTRIP/DS_S2RP_20230321T221728_S20210617T101301/MTD_DS.xml"
- type "application/xml"
- title "MTD_DS.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(4e88a45e-0849-4e73-b075-02cabfcbbc73)/Nodes(S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE)/Nodes()/Nodes(DATASTRIP)/Nodes(DS_S2RP_20230321T221728_S20210617T101301)/Nodes(MTD_DS.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 24426024
- file:checksum "d5012089babfea129c5d1462b63e3e84d439a73df53bfcaf08f3b98c96031b093a6571"
- file:local_path "S2B_MSIL2A_20210617T100559_N0500_R022_T32TPT_20230321T221728.SAFE/DATASTRIP/DS_S2RP_20230321T221728_S20210617T101301/MTD_DS.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
- collection "sentinel-2-l2a"
13
- type "Feature"
- stac_version "1.1.0"
stac_extensions[] 15 items
- 0 "https://stac-extensions.github.io/eo/v2.0.0/schema.json"
- 1 "https://stac-extensions.github.io/raster/v2.0.0/schema.json"
- 2 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 3 "https://stac-extensions.github.io/projection/v2.0.0/schema.json"
- 4 "https://stac-extensions.github.io/grid/v1.1.0/schema.json"
- 5 "https://stac-extensions.github.io/view/v1.0.0/schema.json"
- 6 "https://stac-extensions.github.io/file/v2.1.0/schema.json"
- 7 "https://stac-extensions.github.io/processing/v1.2.0/schema.json"
- 8 "https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json"
- 9 "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json"
- 10 "https://stac-extensions.github.io/authentication/v1.1.0/schema.json"
- 11 "https://stac-extensions.github.io/classification/v2.0.0/schema.json"
- 12 "https://stac-extensions.github.io/product/v0.1.0/schema.json"
- 13 "https://cs-si.github.io/eopf-stac-extension/v1.2.0/schema.json"
- 14 "https://stac-extensions.github.io/storage/v2.0.0/schema.json"
- id "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 6 items
0[] 2 items
- 0 11.751169135844542
- 1 46.83423241099409
1[] 2 items
- 0 11.750506443184506
- 1 46.83263859178081
2[] 2 items
- 0 10.31188688551243
- 1 46.85818197246455
3[] 2 items
- 0 10.33660021997006
- 1 47.84592105208886
4[] 2 items
- 0 11.802846682924509
- 1 47.81947440295927
5[] 2 items
- 0 11.751169135844542
- 1 46.83423241099409
bbox[] 4 items
- 0 10.311887
- 1 46.832639
- 2 11.802847
- 3 47.845921
properties
- gsd 10
- created "2023-06-15T08:51:33.003000Z"
- updated "2024-05-08T07:13:19.532534Z"
- datetime "2021-06-15T10:20:21.024000Z"
- platform "sentinel-2a"
- grid:code "MGRS-32TPT"
- published "2023-06-15T10:52:28.875133Z"
statistics
- water 0.8482359999999999
- nodata 1.7e-05
- dark_area 1.352069
- vegetation 70.151877
- thin_cirrus 1.762168
- cloud_shadow 0.031267
- unclassified 0.053503
- not_vegetated 9.378749
- high_proba_clouds 0.029879999999999997
- medium_proba_clouds 0.057903
- saturated_defective 0.0
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 "2021-06-15T10:20:21.024Z"
- product:type "S2MSI2A"
- view:azimuth 286.82760790435435
- constellation "sentinel-2"
- eo:snow_cover 16.33
- eo:cloud_cover 1.85
- start_datetime "2021-06-15T10:20:21.024Z"
- sat:orbit_state "descending"
storage:schemes
cdse-s3
- 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. A Global Service Load Balancer (GSLB) directs the request to either CloudFerro Cloud or OpenTelekom Cloud (OTC) S3 endpoint based on the location of the DNS resolver."
- requester_pays False
creodias-s3
- 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 "GS2A_20210615T102021_031236_N05.00"
- processing:level "L2"
- view:sun_azimuth 153.738758003817
- eopf:datastrip_id "S2A_OPER_MSI_L2A_DS_S2RP_20230321T221050_S20210615T102602_N05.00"
- processing:version "05.00"
- product:timeliness "PT24H"
- sat:absolute_orbit 31236
- sat:relative_orbit 65
- view:sun_elevation 64.0887207687484
- processing:datetime "2023-03-21T22:10:50.000000Z"
- processing:facility "ESA"
- eopf:instrument_mode "INS-NOBS"
- eopf:origin_datetime "2023-06-15T08:51:33.003000Z"
- view:incidence_angle 6.591161466909766
- product:timeliness_category "NRT"
- sat:platform_international_designator "2015-028A"
links[] 5 items
0
- rel "collection"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
1
- rel "parent"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
2
- rel "root"
- href "https://stac.dataspace.copernicus.eu/v1/"
- type "application/json"
- title "cdse-stac"
3
- rel "self"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050"
- type "application/geo+json"
4
- rel "version-history"
- href "https://trace.dataspace.copernicus.eu/api/v1/traces/name/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE.zip"
- type "application/json"
- title "Product history record from the CDSE traceability service"
assets
AOT_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R10m/T32TPT_20210615T102021_AOT_10m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210615T102021_AOT_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 4669728
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620966e09081764c3ef4375d23ee3b30678a7c5bc5c4e3df263fea1edc0bf3152e2"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R10m/T32TPT_20210615T102021_AOT_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
AOT_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R20m/T32TPT_20210615T102021_AOT_20m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210615T102021_AOT_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3532848
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16208a9a3a1a58f43a6cc64d5ae9a3803cc80f234bd7d7e71abcb0ad187a4ca880b9"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R20m/T32TPT_20210615T102021_AOT_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
AOT_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R60m/T32TPT_20210615T102021_AOT_60m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210615T102021_AOT_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 912498
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620381fac3e959acac9421750f98d8881993678fc752022131bd3d9cea2847d161f"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R60m/T32TPT_20210615T102021_AOT_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
B01_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R20m/T32TPT_20210615T102021_B01_20m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.443
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210615T102021_B01_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 24336960
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 287.429252839505
- file:checksum "1620703ab30a591184542b8247072e07391b924a0f1f35ff7e0a9fe0035376f207c9"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R20m/T32TPT_20210615T102021_B01_20m.jp2"
- view:incidence_angle 6.71590380463541
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:upsampled"
- 3 "gsd:20m"
B01_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R60m/T32TPT_20210615T102021_B01_60m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.443
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210615T102021_B01_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3733442
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 287.429252839505
- file:checksum "1620372ee43db45f3e3b1d34c1fed238e15748554bf60ae31da6eb49dffb73f52e4c"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R60m/T32TPT_20210615T102021_B01_60m.jp2"
- view:incidence_angle 6.71590380463541
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B02_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R10m/T32TPT_20210615T102021_B02_10m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210615T102021_B02_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 133236369
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.046114324018
- file:checksum "16208ca8269e765635b04e4b48f906732257c02d08ec75b7e854f7f3ba5e25dea8b5"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R10m/T32TPT_20210615T102021_B02_10m.jp2"
- view:incidence_angle 6.4470335134305
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B02_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R20m/T32TPT_20210615T102021_B02_20m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210615T102021_B02_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33823614
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.046114324018
- file:checksum "16202c709be408e6d05724aebdcdd83502cfb534ec1179fbc1e8cff42e9ed8bae223"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R20m/T32TPT_20210615T102021_B02_20m.jp2"
- view:incidence_angle 6.4470335134305
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B02_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R60m/T32TPT_20210615T102021_B02_60m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210615T102021_B02_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3756002
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.046114324018
- file:checksum "1620db84d781ad10309c6c89a342f64de233906b7be44c0b5b069e2899932e6832a9"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R60m/T32TPT_20210615T102021_B02_60m.jp2"
- view:incidence_angle 6.4470335134305
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B03_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R10m/T32TPT_20210615T102021_B03_10m.jp2"
- type "image/jp2"
- title "Green (band 3) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210615T102021_B03_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135625767
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.358328062417
- file:checksum "162002f168d4fdb03f46a7fe675da6e43dc8ee97201c3758b1ecd09b79524712e20c"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R10m/T32TPT_20210615T102021_B03_10m.jp2"
- view:incidence_angle 6.48522858460311
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B03_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R20m/T32TPT_20210615T102021_B03_20m.jp2"
- type "image/jp2"
- title "Green (band 3) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210615T102021_B03_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33863969
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.358328062417
- file:checksum "16204a261980fd091f26207a0db1cfa9578a3c95c31859d01abaf60c3dcaa22aa7d4"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R20m/T32TPT_20210615T102021_B03_20m.jp2"
- view:incidence_angle 6.48522858460311
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B03_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R60m/T32TPT_20210615T102021_B03_60m.jp2"
- type "image/jp2"
- title "Green (band 3) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210615T102021_B03_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3740604
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.358328062417
- file:checksum "1620f4a323b9dafe2bfd04a8e0c8ee6f6a87201a004bacad7cb6f562824a4b921d1a"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R60m/T32TPT_20210615T102021_B03_60m.jp2"
- view:incidence_angle 6.48522858460311
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B04_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R10m/T32TPT_20210615T102021_B04_10m.jp2"
- type "image/jp2"
- title "Red (band 4) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210615T102021_B04_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 134794740
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.650176970078
- file:checksum "162014cb3bf480af0aaa39e62c3777d7014e41b474da70392762affac1c1a50fa83b"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R10m/T32TPT_20210615T102021_B04_10m.jp2"
- view:incidence_angle 6.53223759563548
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B04_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R20m/T32TPT_20210615T102021_B04_20m.jp2"
- type "image/jp2"
- title "Red (band 4) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210615T102021_B04_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33850144
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.650176970078
- file:checksum "16209aad569cf684a8f4c734938ddd2f6ac67a14993e618019124c00a6ec53b3dc1d"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R20m/T32TPT_20210615T102021_B04_20m.jp2"
- view:incidence_angle 6.53223759563548
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B04_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R60m/T32TPT_20210615T102021_B04_60m.jp2"
- type "image/jp2"
- title "Red (band 4) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210615T102021_B04_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3769540
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.650176970078
- file:checksum "1620eed63802fa2d9b112662d7029945c47e813b0258ac54979811277ce59b90dbeb"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R60m/T32TPT_20210615T102021_B04_60m.jp2"
- view:incidence_angle 6.53223759563548
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B05_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R20m/T32TPT_20210615T102021_B05_20m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210615T102021_B05_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33819801
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.79482148277
- file:checksum "1620b767aa6dd9ba1d53c60f679a9722099c64cb07d46040a271c32dba0664d16b9d"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R20m/T32TPT_20210615T102021_B05_20m.jp2"
- view:incidence_angle 6.56273645897841
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B05_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R60m/T32TPT_20210615T102021_B05_60m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210615T102021_B05_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3733797
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.79482148277
- file:checksum "16204de4b14438a814879219578bbd0200cfd75bb9e6753d1e8b9a1850dc50b9d2f0"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R60m/T32TPT_20210615T102021_B05_60m.jp2"
- view:incidence_angle 6.56273645897841
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B06_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R20m/T32TPT_20210615T102021_B06_20m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 20m"
- description "S3 storage provided by CloudFerro Cloud and OpenTelekom Cloud (OTC). Use endpoint URL `https://eodata.dataspace.copernicus.eu`."
bands[] 1 items
0
- eo:center_wavelength 0.741
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210615T102021_B06_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33831484
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.943701026082
- file:checksum "1620d049813a1ef127a8bbb55e910c5754e3d9505f685b53ccc730a36ad4530ddeb3"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R20m/T32TPT_20210615T102021_B06_20m.jp2"
- view:incidence_angle 6.59089724037447
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B06_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R60m/T32TPT_20210615T102021_B06_60m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.741
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210615T102021_B06_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3747200
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.943701026082
- file:checksum "162079d2065d171749c3a684baf7739c07e9ecc2a94034b1e1b04d9847c14deb49e9"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R60m/T32TPT_20210615T102021_B06_60m.jp2"
- view:incidence_angle 6.59089724037447
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B07_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R20m/T32TPT_20210615T102021_B07_20m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210615T102021_B07_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33858399
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 287.136945763802
- file:checksum "1620b552f460b306ad5cc3632de3c97c526635c05b301ce467fa4bd964b97125e7af"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R20m/T32TPT_20210615T102021_B07_20m.jp2"
- view:incidence_angle 6.63671775562429
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B07_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R60m/T32TPT_20210615T102021_B07_60m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210615T102021_B07_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3743499
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 287.136945763802
- file:checksum "1620344244b0804354a45de79d80584fa95909868ede70686eebed38cdb08186725d"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R60m/T32TPT_20210615T102021_B07_60m.jp2"
- view:incidence_angle 6.63671775562429
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B08_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R10m/T32TPT_20210615T102021_B08_10m.jp2"
- type "image/jp2"
- title "NIR 1 (band 8) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.454
- name "B08"
- eo:common_name "nir"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210615T102021_B08_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135164485
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.19203414638
- file:checksum "16209ff1a4e3bb5f8b691e74b576476ab29936e575e6c5d6c73d9b66d3ca307da290"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R10m/T32TPT_20210615T102021_B08_10m.jp2"
- view:incidence_angle 6.46374207036183
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B09_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R60m/T32TPT_20210615T102021_B09_60m.jp2"
- type "image/jp2"
- title "NIR 3 (band 9) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.945
- eo:full_width_half_max 0.479
- name "B09"
- eo:common_name "nir09"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210615T102021_B09_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3751181
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 287.578900107148
- file:checksum "16202c1f023fdebfc6241740aadab0ec9413d42dc083c29ea0e6c8a5bb2444a7f5f8"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R60m/T32TPT_20210615T102021_B09_60m.jp2"
- view:incidence_angle 6.76334193436128
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B11_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R20m/T32TPT_20210615T102021_B11_20m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 20m"
bands[] 1 items
0
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210615T102021_B11_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33910639
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.765671847385
- file:checksum "1620ae7a8d170dfef31cc42c4633a503acb33d20abcb6a10c6e4e717b219a2bebf03"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R20m/T32TPT_20210615T102021_B11_20m.jp2"
- view:incidence_angle 6.59525988808069
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B11_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R60m/T32TPT_20210615T102021_B11_60m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 60m"
bands[] 1 items
0
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210615T102021_B11_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3721820
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.765671847385
- file:checksum "1620689209d41e202545ba1a88f04c2b9cde55f6bd215b6f1335fc607270841e8822"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R60m/T32TPT_20210615T102021_B11_60m.jp2"
- view:incidence_angle 6.59525988808069
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B12_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R20m/T32TPT_20210615T102021_B12_20m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 20m"
bands[] 1 items
0
- eo:center_wavelength 2.202
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210615T102021_B12_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33875892
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 287.127509173597
- file:checksum "16205694dd3b79838f93bc19b70ccce47c1ed6933cf443f372192fab16c954c8efb0"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R20m/T32TPT_20210615T102021_B12_20m.jp2"
- view:incidence_angle 6.69004029070694
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B12_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R60m/T32TPT_20210615T102021_B12_60m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 60m"
bands[] 1 items
0
- eo:center_wavelength 2.202
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210615T102021_B12_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3769586
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 287.127509173597
- file:checksum "162080924100a29605d05d0f3bbe7a7363cf897f16c507af0a1ca0a4a2b685830acc"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R60m/T32TPT_20210615T102021_B12_60m.jp2"
- view:incidence_angle 6.69004029070694
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B8A_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R20m/T32TPT_20210615T102021_B8A_20m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210615T102021_B8A_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33883372
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 287.295241690138
- file:checksum "1620f456306a9528b7d6c19d3f165362916cd0adc6d5a2c800c24d57dc2e249f735c"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R20m/T32TPT_20210615T102021_B8A_20m.jp2"
- view:incidence_angle 6.6769097274159
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B8A_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R60m/T32TPT_20210615T102021_B8A_60m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210615T102021_B8A_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3744082
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 287.295241690138
- file:checksum "1620c84f1b29d528a99cffd537085021c07cb977785e0c366000b67d5c299817c54b"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R60m/T32TPT_20210615T102021_B8A_60m.jp2"
- view:incidence_angle 6.6769097274159
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
Product
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/$value"
- type "application/zip"
- title "Zipped product"
auth:refs[] 1 items
- 0 "oidc"
- file:size 1274341987
- storage:refs "𒍟※"
- file:checksum "d50110428b0718620dc205b220ac3d5e87c4e8"
- alternate:name "HTTPS"
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE.zip"
roles[] 3 items
- 0 "data"
- 1 "metadata"
- 2 "archive"
SCL_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R20m/T32TPT_20210615T102021_SCL_20m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210615T102021_SCL_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 2994868
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16205409a879a61ba78409b79e6854ac15d5c02429a8cc252ec15fa4bab218047291"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R20m/T32TPT_20210615T102021_SCL_20m.jp2"
classification:classes[] 12 items
0
- percentage 1.7e-05
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
- percentage 0.0
2
- percentage 1.352069
- name "dark_area_pixels"
- value 2
3
- percentage 0.031267
- name "cloud_shadows"
- value 3
4
- percentage 70.151877
- name "vegetation"
- value 4
5
- percentage 9.378749
- name "not_vegetated"
- value 5
6
- percentage 0.8482359999999999
- name "water"
- value 6
7
- percentage 0.053503
- name "unclassified"
- value 7
8
- percentage 0.057903
- name "cloud_medium_probability"
- value 8
9
- percentage 0.029879999999999997
- name "cloud_high_probability"
- value 9
10
- percentage 1.762168
- name "thin_cirrus"
- value 10
11
- percentage 16.334337
- name "snow"
- value 11
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "data"
- 1 "sampling:original"
- 2 "gsd:20m"
SCL_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R60m/T32TPT_20210615T102021_SCL_60m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210615T102021_SCL_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 680728
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162094b46e474d39e6bf7b8bada5524ad6a01860ff3b5bd030aa9c1f75be65643570"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R60m/T32TPT_20210615T102021_SCL_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
classification:classes[] 12 items
0
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
2
- name "dark_area_pixels"
- value 2
3
- name "cloud_shadows"
- value 3
4
- name "vegetation"
- value 4
5
- name "not_vegetated"
- value 5
6
- name "water"
- value 6
7
- name "unclassified"
- value 7
8
- name "cloud_medium_probability"
- value 8
9
- name "cloud_high_probability"
- value 9
10
- name "thin_cirrus"
- value 10
11
- name "snow"
- value 11
roles[] 3 items
- 0 "data"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
TCI_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R10m/T32TPT_20210615T102021_TCI_10m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210615T102021_TCI_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135328013
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620a5938ff28ca85a6b30c028dc2eded9dccdefc50bf60ba72ce2950cb0e432b81d"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R10m/T32TPT_20210615T102021_TCI_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 10980
- 1 10980
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:original"
- 2 "gsd:10m"
TCI_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R20m/T32TPT_20210615T102021_TCI_20m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210615T102021_TCI_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33792837
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620c905bfd211c6c40aaa6c0778d33d22fd66ef40f8fc55e8c1cccebdd7197eca3b"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R20m/T32TPT_20210615T102021_TCI_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:20m"
TCI_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R60m/T32TPT_20210615T102021_TCI_60m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210615T102021_TCI_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3770716
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162080cc04f100bca40af7d8452c9d9635d8c19d0b9643e8368097b62414f8f6d0fa"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R60m/T32TPT_20210615T102021_TCI_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
WVP_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R10m/T32TPT_20210615T102021_WVP_10m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210615T102021_WVP_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 108259199
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16203a16913119715a394778f8f3191a90912b667653badaef22e30cf048396ed332"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R10m/T32TPT_20210615T102021_WVP_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
WVP_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R20m/T32TPT_20210615T102021_WVP_20m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210615T102021_WVP_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33585176
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16204484c2db1b17e4121e16ee0f72d250a0403c9bc54a8dc57aa1dc8c2e0fd8459e"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R20m/T32TPT_20210615T102021_WVP_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
WVP_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R60m/T32TPT_20210615T102021_WVP_60m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210615T102021_WVP_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3748678
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162061de0b498bb12908a5bca3624127809d5b788326abee4b9260e83b2044f53808"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/IMG_DATA/R60m/T32TPT_20210615T102021_WVP_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
thumbnail
- href "https://datahub.creodias.eu/odata/v1/Assets(3c55261a-de1d-4569-9568-6511ffc66830)/$value"
- type "image/jpeg"
- title "Quicklook"
alternate
s3
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050-ql.jpg"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
auth:refs[] 1 items
- 0 "oidc"
- file:size 45349
- file:checksum "d50110a34e7aae9f1653d989db3eab11f01a38"
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050-ql.jpg"
- data_type "uint8"
- proj:code None
proj:shape[] 2 items
- 0 343
- 1 343
- alternate:name "HTTPS"
roles[] 2 items
- 0 "thumbnail"
- 1 "overview"
safe_manifest
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/manifest.safe"
- type "application/xml"
- title "manifest.safe"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(manifest.safe)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 68946
- file:checksum "d50110b0e4c0bf3c1094707de795b27f0be675"
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/manifest.safe"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
granule_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/MTD_TL.xml"
- type "application/xml"
- title "MTD_TL.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes()/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031236_20210615T102602)/Nodes(MTD_TL.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 547836
- file:checksum "d50120ad28af7274fe79dd1f60f3e13599e30926f86656c4928b79daa8c077a4c7005e"
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/GRANULE/L2A_T32TPT_A031236_20210615T102602/MTD_TL.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
inspire_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/INSPIRE.xml"
- type "application/xml"
- title "INSPIRE.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(INSPIRE.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 18682
- file:checksum "d501204de8b2171473c7217e1848a7cdf635ad352a55fb8a5f0afc6753f709bf4c4bed"
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/INSPIRE.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
product_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/MTD_MSIL2A.xml"
- type "application/xml"
- title "MTD_MSIL2A.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes(MTD_MSIL2A.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 55374
- file:checksum "d50120125400e95af11519b7742bd6598243a0bff5eb587f14bedd81ec1ccebcbf1f71"
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/MTD_MSIL2A.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
datastrip_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/15/S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/DATASTRIP/DS_S2RP_20230321T221050_S20210615T102602/MTD_DS.xml"
- type "application/xml"
- title "MTD_DS.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b311f051-2087-4384-bf32-087b3e48ce2c)/Nodes(S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE)/Nodes()/Nodes(DATASTRIP)/Nodes(DS_S2RP_20230321T221050_S20210615T102602)/Nodes(MTD_DS.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 24429247
- file:checksum "d50120eadd5b66ef92252461961e3728a4e90145acdca285dc89c1f8a6f56d15fa0968"
- file:local_path "S2A_MSIL2A_20210615T102021_N0500_R065_T32TPT_20230321T221050.SAFE/DATASTRIP/DS_S2RP_20230321T221050_S20210615T102602/MTD_DS.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
- collection "sentinel-2-l2a"
14
- type "Feature"
- stac_version "1.1.0"
stac_extensions[] 15 items
- 0 "https://stac-extensions.github.io/eo/v2.0.0/schema.json"
- 1 "https://stac-extensions.github.io/raster/v2.0.0/schema.json"
- 2 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 3 "https://stac-extensions.github.io/projection/v2.0.0/schema.json"
- 4 "https://stac-extensions.github.io/grid/v1.1.0/schema.json"
- 5 "https://stac-extensions.github.io/view/v1.0.0/schema.json"
- 6 "https://stac-extensions.github.io/file/v2.1.0/schema.json"
- 7 "https://stac-extensions.github.io/processing/v1.2.0/schema.json"
- 8 "https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json"
- 9 "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json"
- 10 "https://stac-extensions.github.io/authentication/v1.1.0/schema.json"
- 11 "https://stac-extensions.github.io/classification/v2.0.0/schema.json"
- 12 "https://stac-extensions.github.io/product/v0.1.0/schema.json"
- 13 "https://cs-si.github.io/eopf-stac-extension/v1.2.0/schema.json"
- 14 "https://stac-extensions.github.io/storage/v2.0.0/schema.json"
- id "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 12 items
0[] 2 items
- 0 10.314467802703472
- 1 46.96133570816285
1[] 2 items
- 0 10.330634388454246
- 1 47.00608744983404
2[] 2 items
- 0 10.380145246180687
- 1 47.15354753643653
3[] 2 items
- 0 10.433718368533375
- 1 47.29992389370993
4[] 2 items
- 0 10.486739030795134
- 1 47.446421268933925
5[] 2 items
- 0 10.539165322502551
- 1 47.59306632205087
6[] 2 items
- 0 10.592250854545153
- 1 47.73954189933101
7[] 2 items
- 0 10.629192542295323
- 1 47.84064357201846
8[] 2 items
- 0 11.802846682924509
- 1 47.81947440295927
9[] 2 items
- 0 11.751084998620154
- 1 46.83262831925138
10[] 2 items
- 0 10.31188688551243
- 1 46.85818197246455
11[] 2 items
- 0 10.314467802703472
- 1 46.96133570816285
bbox[] 4 items
- 0 10.311887
- 1 46.832628
- 2 11.802847
- 3 47.840644
properties
- gsd 10
- created "2023-04-16T01:15:26.757000Z"
- updated "2024-05-06T23:35:05.592402Z"
- datetime "2021-06-02T10:10:31.024000Z"
- platform "sentinel-2a"
- grid:code "MGRS-32TPT"
- published "2023-04-16T03:13:05.645667Z"
statistics
- water 0.768842
- nodata 9.047445
- dark_area 0.931227
- vegetation 39.538234
- thin_cirrus 0.51187
- cloud_shadow 6.900295
- unclassified 0.502138
- not_vegetated 4.936339
- high_proba_clouds 20.349889
- medium_proba_clouds 12.20682
- saturated_defective 0.0
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 "2021-06-02T10:10:31.024Z"
- product:type "S2MSI2A"
- view:azimuth 104.29541235281785
- constellation "sentinel-2"
- eo:snow_cover 13.35
- eo:cloud_cover 33.07
- start_datetime "2021-06-02T10:10:31.024Z"
- sat:orbit_state "descending"
storage:schemes
cdse-s3
- 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. A Global Service Load Balancer (GSLB) directs the request to either CloudFerro Cloud or OpenTelekom Cloud (OTC) S3 endpoint based on the location of the DNS resolver."
- requester_pays False
creodias-s3
- 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 "GS2A_20210602T101031_031050_N05.00"
- processing:level "L2"
- view:sun_azimuth 150.975509792484
- eopf:datastrip_id "S2A_OPER_MSI_L2A_DS_S2RP_20230313T040411_S20210602T101235_N05.00"
- processing:version "05.00"
- product:timeliness "PT24H"
- sat:absolute_orbit 31050
- sat:relative_orbit 22
- view:sun_elevation 62.485097860417696
- processing:datetime "2023-03-13T04:04:11.000000Z"
- processing:facility "ESA"
- eopf:instrument_mode "INS-NOBS"
- eopf:origin_datetime "2023-04-16T01:15:26.757000Z"
- view:incidence_angle 7.94136898646082
- product:timeliness_category "NRT"
- sat:platform_international_designator "2015-028A"
links[] 5 items
0
- rel "collection"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
1
- rel "parent"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
2
- rel "root"
- href "https://stac.dataspace.copernicus.eu/v1/"
- type "application/json"
- title "cdse-stac"
3
- rel "self"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411"
- type "application/geo+json"
4
- rel "version-history"
- href "https://trace.dataspace.copernicus.eu/api/v1/traces/name/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE.zip"
- type "application/json"
- title "Product history record from the CDSE traceability service"
assets
AOT_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R10m/T32TPT_20210602T101031_AOT_10m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210602T101031_AOT_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 5502666
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620ba6c8f3fb3c8b2944316ff231219a53a02a6c62863d3271dff3f774ee9133a68"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R10m/T32TPT_20210602T101031_AOT_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
AOT_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R20m/T32TPT_20210602T101031_AOT_20m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210602T101031_AOT_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3954638
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16204d84fda32a0817a84bd7b292d91e667974d5b19898967c32bebaefa01f4148c6"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R20m/T32TPT_20210602T101031_AOT_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
AOT_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R60m/T32TPT_20210602T101031_AOT_60m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210602T101031_AOT_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 887122
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620848fa9e26a8b0a771e359a0a177266071546490b4e94b697b803c0fa812cff8a"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R60m/T32TPT_20210602T101031_AOT_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
B01_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R20m/T32TPT_20210602T101031_B01_20m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.443
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210602T101031_B01_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 25873160
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.250538458763
- file:checksum "1620bb09a8f5e25e742d708a6a1fe1ac5318c194a3cfee4816485aba25c2f39c850b"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R20m/T32TPT_20210602T101031_B01_20m.jp2"
- view:incidence_angle 8.04331054930597
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:upsampled"
- 3 "gsd:20m"
B01_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R60m/T32TPT_20210602T101031_B01_60m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.443
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210602T101031_B01_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3749625
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.250538458763
- file:checksum "16209b8692ce26b6b6b6159f6219996bb2e6a2afa0c035533710143fc9572471a2b3"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R60m/T32TPT_20210602T101031_B01_60m.jp2"
- view:incidence_angle 8.04331054930597
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B02_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R10m/T32TPT_20210602T101031_B02_10m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210602T101031_B02_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 126742615
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.376106123172
- file:checksum "16200200b4ca04431dc64f0cbc9bbe88f7f9688ef775bf00dedaa858cbccb083aa3d"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R10m/T32TPT_20210602T101031_B02_10m.jp2"
- view:incidence_angle 7.83851891885224
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B02_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R20m/T32TPT_20210602T101031_B02_20m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210602T101031_B02_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33885637
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.376106123172
- file:checksum "162044031e96c29bf5a84f508ba9b755c47043a87a789ea7ffb235095cbe3734f796"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R20m/T32TPT_20210602T101031_B02_20m.jp2"
- view:incidence_angle 7.83851891885224
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B02_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R60m/T32TPT_20210602T101031_B02_60m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210602T101031_B02_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3758696
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.376106123172
- file:checksum "1620afa4f6a92fce506ad7f452dde5437d2f4adfcd57026786aaa93e36bd815a2b20"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R60m/T32TPT_20210602T101031_B02_60m.jp2"
- view:incidence_angle 7.83851891885224
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B03_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R10m/T32TPT_20210602T101031_B03_10m.jp2"
- type "image/jp2"
- title "Green (band 3) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210602T101031_B03_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 128498451
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.360179593545
- file:checksum "1620b2814b471525607b501ad21aa6c259a8ad6a265218d21e511608ed94c8f6081f"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R10m/T32TPT_20210602T101031_B03_10m.jp2"
- view:incidence_angle 7.86512441237832
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B03_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R20m/T32TPT_20210602T101031_B03_20m.jp2"
- type "image/jp2"
- title "Green (band 3) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210602T101031_B03_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33875343
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.360179593545
- file:checksum "1620ecbbb9c89ae28631e43fe48262b39c4ac0d695a03ee2511d35189bddfd1f1279"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R20m/T32TPT_20210602T101031_B03_20m.jp2"
- view:incidence_angle 7.86512441237832
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B03_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R60m/T32TPT_20210602T101031_B03_60m.jp2"
- type "image/jp2"
- title "Green (band 3) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210602T101031_B03_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3747286
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.360179593545
- file:checksum "16208337436073b66fc2db2b68c702fd2775c737d919e1c9e8b8fef94a2e544a9c4e"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R60m/T32TPT_20210602T101031_B03_60m.jp2"
- view:incidence_angle 7.86512441237832
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B04_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R10m/T32TPT_20210602T101031_B04_10m.jp2"
- type "image/jp2"
- title "Red (band 4) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210602T101031_B04_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 126550366
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.316978906805
- file:checksum "162089b6b0b924bf90996ff2fcc00b4b05757571b7897fec0138a76459d6d9018807"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R10m/T32TPT_20210602T101031_B04_10m.jp2"
- view:incidence_angle 7.8956447258781
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B04_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R20m/T32TPT_20210602T101031_B04_20m.jp2"
- type "image/jp2"
- title "Red (band 4) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210602T101031_B04_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33866891
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.316978906805
- file:checksum "1620c42b44d12309b0061a3bdecb3b80c0e053431fa24de2095143e14f9bafb67dbd"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R20m/T32TPT_20210602T101031_B04_20m.jp2"
- view:incidence_angle 7.8956447258781
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B04_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R60m/T32TPT_20210602T101031_B04_60m.jp2"
- type "image/jp2"
- title "Red (band 4) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210602T101031_B04_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3743804
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.316978906805
- file:checksum "1620c44bb34b1b9978325e08e76d86d77c9074a897d4b1a6a5dffef9e139562b8656"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R60m/T32TPT_20210602T101031_B04_60m.jp2"
- view:incidence_angle 7.8956447258781
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B05_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R20m/T32TPT_20210602T101031_B05_20m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210602T101031_B05_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33811866
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.29615727773
- file:checksum "16202b93be3d06194e6f62d05d7894d50c6bf6ad17abc3a8e96a3c6292e9614db5cf"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R20m/T32TPT_20210602T101031_B05_20m.jp2"
- view:incidence_angle 7.92228581128442
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B05_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R60m/T32TPT_20210602T101031_B05_60m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210602T101031_B05_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3738859
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.29615727773
- file:checksum "1620913950d66044e4786fb6cb472b7e1d8e49f6ade6a3cf642acc44cf6e69707431"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R60m/T32TPT_20210602T101031_B05_60m.jp2"
- view:incidence_angle 7.92228581128442
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B06_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R20m/T32TPT_20210602T101031_B06_20m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 20m"
- description "S3 storage provided by CloudFerro Cloud and OpenTelekom Cloud (OTC). Use endpoint URL `https://eodata.dataspace.copernicus.eu`."
bands[] 1 items
0
- eo:center_wavelength 0.741
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210602T101031_B06_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33830852
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.255562268526
- file:checksum "162017657091621a1532349940be252af2d4303e36e42b856b64a9e3dba0d1e5bb68"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R20m/T32TPT_20210602T101031_B06_20m.jp2"
- view:incidence_angle 7.9515940603142
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B06_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R60m/T32TPT_20210602T101031_B06_60m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.741
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210602T101031_B06_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3756597
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.255562268526
- file:checksum "1620e7e263d7ce28e45d5941e833cbd8eedfa158ea8d320cb9c2a3c9a869088d435b"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R60m/T32TPT_20210602T101031_B06_60m.jp2"
- view:incidence_angle 7.9515940603142
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B07_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R20m/T32TPT_20210602T101031_B07_20m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210602T101031_B07_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33830249
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.242495239941
- file:checksum "1620ee1f63610cf1a2377c323ce1e49b78dbeb4ae110ff30d42cc133ebe228f3c7a9"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R20m/T32TPT_20210602T101031_B07_20m.jp2"
- view:incidence_angle 7.9794555386632
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B07_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R60m/T32TPT_20210602T101031_B07_60m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210602T101031_B07_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3749247
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.242495239941
- file:checksum "1620dcaf36fc6a28ebc9c75fb729ca3fe43788008e93c5c4fac8666fe994158582af"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R60m/T32TPT_20210602T101031_B07_60m.jp2"
- view:incidence_angle 7.9794555386632
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B08_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R10m/T32TPT_20210602T101031_B08_10m.jp2"
- type "image/jp2"
- title "NIR 1 (band 8) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.454
- name "B08"
- eo:common_name "nir"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210602T101031_B08_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135455982
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.368300612217
- file:checksum "1620777863673db70fc54dc7ba007eb7df010fbec794129d608c2de884b1620bc710"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R10m/T32TPT_20210602T101031_B08_10m.jp2"
- view:incidence_angle 7.8504153379207
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B09_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R60m/T32TPT_20210602T101031_B09_60m.jp2"
- type "image/jp2"
- title "NIR 3 (band 9) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.945
- eo:full_width_half_max 0.479
- name "B09"
- eo:common_name "nir09"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210602T101031_B09_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3738987
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.227806970745
- file:checksum "162082139814164866d3dc62e3afdc36c8ae16f057aceb3c809d271d3635ae6eb5aa"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R60m/T32TPT_20210602T101031_B09_60m.jp2"
- view:incidence_angle 8.07973267436031
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B11_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R20m/T32TPT_20210602T101031_B11_20m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 20m"
bands[] 1 items
0
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210602T101031_B11_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33769549
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.315393601321
- file:checksum "162073bd15062f1e9b63007179fe2962f0a81534526240d726bdfc9a87cb78cf1334"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R20m/T32TPT_20210602T101031_B11_20m.jp2"
- view:incidence_angle 7.93022395825071
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B11_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R60m/T32TPT_20210602T101031_B11_60m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 60m"
bands[] 1 items
0
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210602T101031_B11_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3744879
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.315393601321
- file:checksum "1620029676799a9a14f8f53178027f57e7abda91fe142cf95b8f42e7063b4555d2f0"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R60m/T32TPT_20210602T101031_B11_60m.jp2"
- view:incidence_angle 7.93022395825071
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B12_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R20m/T32TPT_20210602T101031_B12_20m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 20m"
bands[] 1 items
0
- eo:center_wavelength 2.202
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210602T101031_B12_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33872137
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.249609272053
- file:checksum "1620fb2b11628bd86ac0b2dcd82aadc3f98204b4f3d567ecd91fd09550a9c9083325"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R20m/T32TPT_20210602T101031_B12_20m.jp2"
- view:incidence_angle 7.99986605060294
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B12_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R60m/T32TPT_20210602T101031_B12_60m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 60m"
bands[] 1 items
0
- eo:center_wavelength 2.202
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210602T101031_B12_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3757999
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.249609272053
- file:checksum "1620ad3a37fe7898b05d67ada735233bc7a74481cf1d0a2a9cef63c3052af20f946e"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R60m/T32TPT_20210602T101031_B12_60m.jp2"
- view:incidence_angle 7.99986605060294
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B8A_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R20m/T32TPT_20210602T101031_B8A_20m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210602T101031_B8A_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33896072
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.218246170497
- file:checksum "162053d944ea0f2fc8bbec496e673cdf618173ecd35f59a1d452305b962a69ad52fb"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R20m/T32TPT_20210602T101031_B8A_20m.jp2"
- view:incidence_angle 8.00988882014168
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B8A_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R60m/T32TPT_20210602T101031_B8A_60m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210602T101031_B8A_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3753625
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.218246170497
- file:checksum "162062e358285242cad9acc2b616a6e42509e33649de4fc59fbde34360c1ab21b1af"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R60m/T32TPT_20210602T101031_B8A_60m.jp2"
- view:incidence_angle 8.00988882014168
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
Product
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/$value"
- type "application/zip"
- title "Zipped product"
auth:refs[] 1 items
- 0 "oidc"
- file:size 1193242972
- storage:refs "𒍟※"
- file:checksum "d50110ba5392f73d3a2b4e0fb726f4ef3b83e4"
- alternate:name "HTTPS"
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE.zip"
roles[] 3 items
- 0 "data"
- 1 "metadata"
- 2 "archive"
SCL_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R20m/T32TPT_20210602T101031_SCL_20m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210602T101031_SCL_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3166829
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16205a8117387e258dc3fae97f8ddea3644de523cca059277398aabcceb8863c7287"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R20m/T32TPT_20210602T101031_SCL_20m.jp2"
classification:classes[] 12 items
0
- percentage 9.047445
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
- percentage 0.0
2
- percentage 0.931227
- name "dark_area_pixels"
- value 2
3
- percentage 6.900295
- name "cloud_shadows"
- value 3
4
- percentage 39.538234
- name "vegetation"
- value 4
5
- percentage 4.936339
- name "not_vegetated"
- value 5
6
- percentage 0.768842
- name "water"
- value 6
7
- percentage 0.502138
- name "unclassified"
- value 7
8
- percentage 12.20682
- name "cloud_medium_probability"
- value 8
9
- percentage 20.349889
- name "cloud_high_probability"
- value 9
10
- percentage 0.51187
- name "thin_cirrus"
- value 10
11
- percentage 13.354344999999999
- name "snow"
- value 11
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "data"
- 1 "sampling:original"
- 2 "gsd:20m"
SCL_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R60m/T32TPT_20210602T101031_SCL_60m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210602T101031_SCL_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 780859
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162033c46bcfdd4fcd6f86ea79c774ffffecd87efdc940ae040c33a7dea2cc97d6d3"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R60m/T32TPT_20210602T101031_SCL_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
classification:classes[] 12 items
0
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
2
- name "dark_area_pixels"
- value 2
3
- name "cloud_shadows"
- value 3
4
- name "vegetation"
- value 4
5
- name "not_vegetated"
- value 5
6
- name "water"
- value 6
7
- name "unclassified"
- value 7
8
- name "cloud_medium_probability"
- value 8
9
- name "cloud_high_probability"
- value 9
10
- name "thin_cirrus"
- value 10
11
- name "snow"
- value 11
roles[] 3 items
- 0 "data"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
TCI_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R10m/T32TPT_20210602T101031_TCI_10m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210602T101031_TCI_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 129803167
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16202f95a91058d196f87cd697d8eb33a89544a00c1cf994bcbd0fa8e67247e062dd"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R10m/T32TPT_20210602T101031_TCI_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 10980
- 1 10980
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:original"
- 2 "gsd:10m"
TCI_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R20m/T32TPT_20210602T101031_TCI_20m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210602T101031_TCI_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33321698
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16206d7815cb02c6da01b357117564bfed588ec48b435549d64af668d6111c2a79e3"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R20m/T32TPT_20210602T101031_TCI_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:20m"
TCI_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R60m/T32TPT_20210602T101031_TCI_60m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210602T101031_TCI_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3762760
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620ccb10038cef5591fce0f867f05208d291a1e4b4dffa6be0a9cf7238a9a451703"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R60m/T32TPT_20210602T101031_TCI_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
WVP_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R10m/T32TPT_20210602T101031_WVP_10m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210602T101031_WVP_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 62023027
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16209962149df68566422a762c950bcf1207e425446eed2ef2a27ba596225562780e"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R10m/T32TPT_20210602T101031_WVP_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
WVP_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R20m/T32TPT_20210602T101031_WVP_20m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210602T101031_WVP_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 20148934
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16204ff6764092675d8ddae1a5cde678e46f17429f41614fab242cf11ae5e3b7bd77"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R20m/T32TPT_20210602T101031_WVP_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
WVP_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R60m/T32TPT_20210602T101031_WVP_60m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210602T101031_WVP_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3120052
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620db9a3434cad8b312e02cb8b7dae842b7a3228ecb80fb97dfd87bbd603a0daf6d"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/IMG_DATA/R60m/T32TPT_20210602T101031_WVP_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
thumbnail
- href "https://datahub.creodias.eu/odata/v1/Assets(0813f149-5ca5-43de-943a-6674285f66a9)/$value"
- type "image/jpeg"
- title "Quicklook"
alternate
s3
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411-ql.jpg"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
auth:refs[] 1 items
- 0 "oidc"
- file:size 47805
- file:checksum "d50110eaae623a63c9401b8e63361745caade9"
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411-ql.jpg"
- data_type "uint8"
- proj:code None
proj:shape[] 2 items
- 0 343
- 1 343
- alternate:name "HTTPS"
roles[] 2 items
- 0 "thumbnail"
- 1 "overview"
safe_manifest
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/manifest.safe"
- type "application/xml"
- title "manifest.safe"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(manifest.safe)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 69177
- file:checksum "d501109469e4808a12c5c5feb42b772f6b19f7"
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/manifest.safe"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
granule_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/MTD_TL.xml"
- type "application/xml"
- title "MTD_TL.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes()/Nodes(GRANULE)/Nodes(L2A_T32TPT_A031050_20210602T101235)/Nodes(MTD_TL.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 463599
- file:checksum "d50120ed38a767ca8f99a3d811480426f401d84d916c8b8bda5c4f4eb660ba39121091"
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/GRANULE/L2A_T32TPT_A031050_20210602T101235/MTD_TL.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
inspire_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/INSPIRE.xml"
- type "application/xml"
- title "INSPIRE.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(INSPIRE.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 18906
- file:checksum "d5012005bc3897efc900d8f2fc2fa7885888b0a4d0d9e3519da14025cf0f746cbb3fff"
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/INSPIRE.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
product_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/MTD_MSIL2A.xml"
- type "application/xml"
- title "MTD_MSIL2A.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes(MTD_MSIL2A.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 55329
- file:checksum "d501201ed211c8b55652db2fd51c0b747183e8201e7a30c8c259ac9565fbc1879c3726"
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/MTD_MSIL2A.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
datastrip_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/06/02/S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/DATASTRIP/DS_S2RP_20230313T040411_S20210602T101235/MTD_DS.xml"
- type "application/xml"
- title "MTD_DS.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(8331d0b0-d298-4457-abd1-6ec4a1bc289c)/Nodes(S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE)/Nodes()/Nodes(DATASTRIP)/Nodes(DS_S2RP_20230313T040411_S20210602T101235)/Nodes(MTD_DS.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 24101758
- file:checksum "d50120998a52f66fc256d879670a33791ca5d517e806cb91b43f2dd86d37a637a63310"
- file:local_path "S2A_MSIL2A_20210602T101031_N0500_R022_T32TPT_20230313T040411.SAFE/DATASTRIP/DS_S2RP_20230313T040411_S20210602T101235/MTD_DS.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
- collection "sentinel-2-l2a"
15
- type "Feature"
- stac_version "1.1.0"
stac_extensions[] 15 items
- 0 "https://stac-extensions.github.io/eo/v2.0.0/schema.json"
- 1 "https://stac-extensions.github.io/raster/v2.0.0/schema.json"
- 2 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 3 "https://stac-extensions.github.io/projection/v2.0.0/schema.json"
- 4 "https://stac-extensions.github.io/grid/v1.1.0/schema.json"
- 5 "https://stac-extensions.github.io/view/v1.0.0/schema.json"
- 6 "https://stac-extensions.github.io/file/v2.1.0/schema.json"
- 7 "https://stac-extensions.github.io/processing/v1.2.0/schema.json"
- 8 "https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json"
- 9 "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json"
- 10 "https://stac-extensions.github.io/authentication/v1.1.0/schema.json"
- 11 "https://stac-extensions.github.io/classification/v2.0.0/schema.json"
- 12 "https://stac-extensions.github.io/product/v0.1.0/schema.json"
- 13 "https://cs-si.github.io/eopf-stac-extension/v1.2.0/schema.json"
- 14 "https://stac-extensions.github.io/storage/v2.0.0/schema.json"
- id "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 6 items
0[] 2 items
- 0 11.752694225663642
- 1 46.86330853043471
1[] 2 items
- 0 11.740155297441836
- 1 46.832822381341295
2[] 2 items
- 0 10.31188688551243
- 1 46.85818197246455
3[] 2 items
- 0 10.33660021997006
- 1 47.84592105208886
4[] 2 items
- 0 11.802846682924509
- 1 47.81947440295927
5[] 2 items
- 0 11.752694225663642
- 1 46.86330853043471
bbox[] 4 items
- 0 10.311887
- 1 46.832822
- 2 11.802847
- 3 47.845921
properties
- gsd 10
- created "2023-04-07T21:30:55.353000Z"
- updated "2024-04-30T18:06:57.688853Z"
- datetime "2021-05-31T10:15:59.024000Z"
- platform "sentinel-2b"
- grid:code "MGRS-32TPT"
- published "2023-04-07T21:52:31.765121Z"
statistics
- water 0.905694
- nodata 0.023792
- dark_area 2.384401
- vegetation 59.83513
- thin_cirrus 0.041297
- cloud_shadow 0.13241
- unclassified 0.095849
- not_vegetated 8.327983
- high_proba_clouds 0.114937
- medium_proba_clouds 0.209097
- saturated_defective 0.0
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 "2021-05-31T10:15:59.024Z"
- product:type "S2MSI2A"
- view:azimuth 285.77320506265715
- constellation "sentinel-2"
- eo:snow_cover 27.95
- eo:cloud_cover 0.37
- start_datetime "2021-05-31T10:15:59.024Z"
- sat:orbit_state "descending"
storage:schemes
cdse-s3
- 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. A Global Service Load Balancer (GSLB) directs the request to either CloudFerro Cloud or OpenTelekom Cloud (OTC) S3 endpoint based on the location of the DNS resolver."
- requester_pays False
creodias-s3
- 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 "GS2B_20210531T101559_022113_N05.00"
- processing:level "L2"
- view:sun_azimuth 156.07844848438
- eopf:datastrip_id "S2B_OPER_MSI_L2A_DS_S2RP_20230301T002441_S20210531T102618_N05.00"
- processing:version "05.00"
- product:timeliness "PT24H"
- sat:absolute_orbit 22113
- sat:relative_orbit 65
- view:sun_elevation 63.010744003136395
- processing:datetime "2023-03-01T00:24:41.000000Z"
- processing:facility "ESA"
- eopf:instrument_mode "INS-NOBS"
- eopf:origin_datetime "2023-04-07T21:30:55.353000Z"
- view:incidence_angle 6.668614690855412
- product:timeliness_category "NRT"
- sat:platform_international_designator "2017-013A"
links[] 5 items
0
- rel "collection"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
1
- rel "parent"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
2
- rel "root"
- href "https://stac.dataspace.copernicus.eu/v1/"
- type "application/json"
- title "cdse-stac"
3
- rel "self"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441"
- type "application/geo+json"
4
- rel "version-history"
- href "https://trace.dataspace.copernicus.eu/api/v1/traces/name/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE.zip"
- type "application/json"
- title "Product history record from the CDSE traceability service"
assets
AOT_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R10m/T32TPT_20210531T101559_AOT_10m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210531T101559_AOT_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 4864137
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16203093706d79dbc32e5954e4c1923b68b94b7d2ad87614a7c72d3ce9492cc3efc5"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R10m/T32TPT_20210531T101559_AOT_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
AOT_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R20m/T32TPT_20210531T101559_AOT_20m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210531T101559_AOT_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3659618
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620b2af36d5ba8d931641a38276c7234204b7c1dcf65a9c0dcc89d64065856344cb"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R20m/T32TPT_20210531T101559_AOT_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
AOT_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R60m/T32TPT_20210531T101559_AOT_60m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210531T101559_AOT_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 921790
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620cdb701e49e4b4a103691d154c70940aa24808fdcd86da0cd2b7a80960d03db06"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R60m/T32TPT_20210531T101559_AOT_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
B01_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R20m/T32TPT_20210531T101559_B01_20m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.442
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210531T101559_B01_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 26100948
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.413403240879
- file:checksum "16207ffb33127273d6e1b68ef8768bfabbdc0281028a487baaed4073edea99eadfd5"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R20m/T32TPT_20210531T101559_B01_20m.jp2"
- view:incidence_angle 6.79267555604819
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:upsampled"
- 3 "gsd:20m"
B01_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R60m/T32TPT_20210531T101559_B01_60m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.442
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210531T101559_B01_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3745488
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.413403240879
- file:checksum "1620e231dd8d50b05340936d427d7c97aa8787f45883ec5f546d7b69b3c1cefe2dab"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R60m/T32TPT_20210531T101559_B01_60m.jp2"
- view:incidence_angle 6.79267555604819
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B02_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R10m/T32TPT_20210531T101559_B02_10m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210531T101559_B02_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 134962015
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 284.894907216174
- file:checksum "1620e38bc30576432c9af353df0cb9d70f1566808ca75516b45c97a9a1d2466b8018"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R10m/T32TPT_20210531T101559_B02_10m.jp2"
- view:incidence_angle 6.53600022940666
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B02_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R20m/T32TPT_20210531T101559_B02_20m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210531T101559_B02_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33832665
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 284.894907216174
- file:checksum "16209df0371627e19ac6e6c5e3f84bd1ab1409c3f80dfe1d8d84d0cd18a2c883d6c8"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R20m/T32TPT_20210531T101559_B02_20m.jp2"
- view:incidence_angle 6.53600022940666
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B02_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R60m/T32TPT_20210531T101559_B02_60m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210531T101559_B02_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3759769
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 284.894907216174
- file:checksum "1620b382a834163fd618e2a828a83afc4a825b7ae57d771b65642671d39573c12730"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R60m/T32TPT_20210531T101559_B02_60m.jp2"
- view:incidence_angle 6.53600022940666
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B03_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R10m/T32TPT_20210531T101559_B03_10m.jp2"
- type "image/jp2"
- title "Green (band 3) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210531T101559_B03_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135620813
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.243145145516
- file:checksum "1620bb8ba28fa160db045e639f1e7e86a008ef1a63086181bc448e1825af84b39ace"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R10m/T32TPT_20210531T101559_B03_10m.jp2"
- view:incidence_angle 6.57299107864273
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B03_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R20m/T32TPT_20210531T101559_B03_20m.jp2"
- type "image/jp2"
- title "Green (band 3) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210531T101559_B03_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33867362
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.243145145516
- file:checksum "16208815c1b197420d6401b0795bea2545697079dc8d5754e381b5ff0c361e4f40b8"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R20m/T32TPT_20210531T101559_B03_20m.jp2"
- view:incidence_angle 6.57299107864273
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B03_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R60m/T32TPT_20210531T101559_B03_60m.jp2"
- type "image/jp2"
- title "Green (band 3) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210531T101559_B03_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3734869
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.243145145516
- file:checksum "16200b82132147802d89ad007929826e30e126bf61cd1828cb2f46ff29ac874dd1a8"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R60m/T32TPT_20210531T101559_B03_60m.jp2"
- view:incidence_angle 6.57299107864273
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B04_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R10m/T32TPT_20210531T101559_B04_10m.jp2"
- type "image/jp2"
- title "Red (band 4) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210531T101559_B04_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135020179
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.598421981169
- file:checksum "16206b972a5033cb51ff10af14fc313fa748924ac511b9279ecabcd1c44e6b196ed2"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R10m/T32TPT_20210531T101559_B04_10m.jp2"
- view:incidence_angle 6.60816371447486
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B04_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R20m/T32TPT_20210531T101559_B04_20m.jp2"
- type "image/jp2"
- title "Red (band 4) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210531T101559_B04_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33866099
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.598421981169
- file:checksum "1620b79d5714f7d7efa0547b61ca9ce3af8de8e724268edb64b047bf8e6a38c4fcf8"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R20m/T32TPT_20210531T101559_B04_20m.jp2"
- view:incidence_angle 6.60816371447486
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B04_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R60m/T32TPT_20210531T101559_B04_60m.jp2"
- type "image/jp2"
- title "Red (band 4) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210531T101559_B04_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3751838
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.598421981169
- file:checksum "162015fb24d0557fd494e12ac023cee2a85889d88320fa0687a016a0065c0cb197cc"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R60m/T32TPT_20210531T101559_B04_60m.jp2"
- view:incidence_angle 6.60816371447486
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B05_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R20m/T32TPT_20210531T101559_B05_20m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210531T101559_B05_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33854935
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.74970007762
- file:checksum "1620fc66a012ee48b81ab0348d0056f27b3aa7942c7da88511205b9de78995a53774"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R20m/T32TPT_20210531T101559_B05_20m.jp2"
- view:incidence_angle 6.64238843595769
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B05_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R60m/T32TPT_20210531T101559_B05_60m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210531T101559_B05_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3740150
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.74970007762
- file:checksum "1620e68e4c4fbc03c61f6b4bdf691e0e97f119043418be97c1f02ed5fd8f3925a1c2"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R60m/T32TPT_20210531T101559_B05_60m.jp2"
- view:incidence_angle 6.64238843595769
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B06_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R20m/T32TPT_20210531T101559_B06_20m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 20m"
- description "S3 storage provided by CloudFerro Cloud and OpenTelekom Cloud (OTC). Use endpoint URL `https://eodata.dataspace.copernicus.eu`."
bands[] 1 items
0
- eo:center_wavelength 0.739
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210531T101559_B06_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33790388
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.91252285794
- file:checksum "16206fdc4336581218c7949bc012eec6326975c5cd3e080ba25958ce52c7a424f944"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R20m/T32TPT_20210531T101559_B06_20m.jp2"
- view:incidence_angle 6.66813321761495
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B06_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R60m/T32TPT_20210531T101559_B06_60m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.739
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210531T101559_B06_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3745310
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.91252285794
- file:checksum "16200a9b42ea02cc896e0bdbf10728627b89795eb4ebd9d2251a228bc41656862c87"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R60m/T32TPT_20210531T101559_B06_60m.jp2"
- view:incidence_angle 6.66813321761495
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B07_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R20m/T32TPT_20210531T101559_B07_20m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.78
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210531T101559_B07_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33839783
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.060001263412
- file:checksum "16209eac3087fb9ff390a6b133478af3ec408ed15b7ebdcc131c05012b8b03883ed7"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R20m/T32TPT_20210531T101559_B07_20m.jp2"
- view:incidence_angle 6.70584756803833
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B07_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R60m/T32TPT_20210531T101559_B07_60m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.78
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210531T101559_B07_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3744944
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.060001263412
- file:checksum "1620343b6078f085f9a048cb989d79700a9d463e5e23ae579d1081606256d6fcf89f"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R60m/T32TPT_20210531T101559_B07_60m.jp2"
- view:incidence_angle 6.70584756803833
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B08_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R10m/T32TPT_20210531T101559_B08_10m.jp2"
- type "image/jp2"
- title "NIR 1 (band 8) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.454
- name "B08"
- eo:common_name "nir"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210531T101559_B08_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135469999
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.071789705236
- file:checksum "1620826133a65803c0848b2723c71c011d87e14b8c9d4cf3207c9b7e860fcbf99e34"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R10m/T32TPT_20210531T101559_B08_10m.jp2"
- view:incidence_angle 6.55196336688701
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B09_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R60m/T32TPT_20210531T101559_B09_60m.jp2"
- type "image/jp2"
- title "NIR 3 (band 9) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.943
- eo:full_width_half_max 0.479
- name "B09"
- eo:common_name "nir09"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210531T101559_B09_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3752540
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.514193316764
- file:checksum "16207cc32d01ea440814d0458f19a216ab77fa6de49bbdaf8ea9177df577f1744e3c"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R60m/T32TPT_20210531T101559_B09_60m.jp2"
- view:incidence_angle 6.82934455389362
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B11_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R20m/T32TPT_20210531T101559_B11_20m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 20m"
bands[] 1 items
0
- eo:center_wavelength 1.61
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210531T101559_B11_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33724431
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.802209356444
- file:checksum "16204d922f3c1621be4e9981caa3543f197bddd59a37499ee3da312539af406b3ba3"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R20m/T32TPT_20210531T101559_B11_20m.jp2"
- view:incidence_angle 6.66912269783092
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B11_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R60m/T32TPT_20210531T101559_B11_60m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 60m"
bands[] 1 items
0
- eo:center_wavelength 1.61
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210531T101559_B11_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3755286
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.802209356444
- file:checksum "162019633cc4d988a2a4702e81c3b47b1403f041e009c907310970471983cdb1c21d"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R60m/T32TPT_20210531T101559_B11_60m.jp2"
- view:incidence_angle 6.66912269783092
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B12_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R20m/T32TPT_20210531T101559_B12_20m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 20m"
bands[] 1 items
0
- eo:center_wavelength 2.186
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210531T101559_B12_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33713635
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.16129161904
- file:checksum "16201066b88c8606f45e869fbe56d8325772c05ae1013e504258f23085fd7e9575af"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R20m/T32TPT_20210531T101559_B12_20m.jp2"
- view:incidence_angle 6.76702895322451
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B12_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R60m/T32TPT_20210531T101559_B12_60m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 60m"
bands[] 1 items
0
- eo:center_wavelength 2.186
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210531T101559_B12_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3765593
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.16129161904
- file:checksum "1620ac8bf95b5b8a528ba86898c445944aa778605a672dc15f40036adbe2f90b79bc"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R60m/T32TPT_20210531T101559_B12_60m.jp2"
- view:incidence_angle 6.76702895322451
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B8A_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R20m/T32TPT_20210531T101559_B8A_20m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.864
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210531T101559_B8A_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33880185
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.286865293324
- file:checksum "16203e639d1e29064386ff1190dfdce3956127b4b4356225fe86480a04f688103d54"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R20m/T32TPT_20210531T101559_B8A_20m.jp2"
- view:incidence_angle 6.74969303925151
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B8A_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R60m/T32TPT_20210531T101559_B8A_60m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.864
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210531T101559_B8A_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3744696
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.286865293324
- file:checksum "162085e295b16d6e2b5f239f2caef2231d83c27ec9fc71f14b7131e6660c4d717d5b"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R60m/T32TPT_20210531T101559_B8A_60m.jp2"
- view:incidence_angle 6.74969303925151
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
Product
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/$value"
- type "application/zip"
- title "Zipped product"
auth:refs[] 1 items
- 0 "oidc"
- file:size 1274164560
- storage:refs "𒍟※"
- file:checksum "d50110f7ccc12ead47082def5cc9d461aaf28e"
- alternate:name "HTTPS"
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE.zip"
roles[] 3 items
- 0 "data"
- 1 "metadata"
- 2 "archive"
SCL_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R20m/T32TPT_20210531T101559_SCL_20m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210531T101559_SCL_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3085663
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162089c0d7d14b564084491e424ed5d40d77780525f0a22a72a7f7c1b88681f0cb1f"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R20m/T32TPT_20210531T101559_SCL_20m.jp2"
classification:classes[] 12 items
0
- percentage 0.023792
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
- percentage 0.0
2
- percentage 2.384401
- name "dark_area_pixels"
- value 2
3
- percentage 0.13241
- name "cloud_shadows"
- value 3
4
- percentage 59.83513
- name "vegetation"
- value 4
5
- percentage 8.327983
- name "not_vegetated"
- value 5
6
- percentage 0.905694
- name "water"
- value 6
7
- percentage 0.095849
- name "unclassified"
- value 7
8
- percentage 0.209097
- name "cloud_medium_probability"
- value 8
9
- percentage 0.114937
- name "cloud_high_probability"
- value 9
10
- percentage 0.041297
- name "thin_cirrus"
- value 10
11
- percentage 27.95321
- name "snow"
- value 11
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "data"
- 1 "sampling:original"
- 2 "gsd:20m"
SCL_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R60m/T32TPT_20210531T101559_SCL_60m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210531T101559_SCL_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 701261
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16203e4f381b31f29c694df3602efa1135806a024dece6a7b2ed60540f174693a935"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R60m/T32TPT_20210531T101559_SCL_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
classification:classes[] 12 items
0
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
2
- name "dark_area_pixels"
- value 2
3
- name "cloud_shadows"
- value 3
4
- name "vegetation"
- value 4
5
- name "not_vegetated"
- value 5
6
- name "water"
- value 6
7
- name "unclassified"
- value 7
8
- name "cloud_medium_probability"
- value 8
9
- name "cloud_high_probability"
- value 9
10
- name "thin_cirrus"
- value 10
11
- name "snow"
- value 11
roles[] 3 items
- 0 "data"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
TCI_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R10m/T32TPT_20210531T101559_TCI_10m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210531T101559_TCI_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135052976
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620c114151dd719ca23158979e6d8f49fd276478650b4c6082f663d89974c5ab8e0"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R10m/T32TPT_20210531T101559_TCI_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 10980
- 1 10980
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:original"
- 2 "gsd:10m"
TCI_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R20m/T32TPT_20210531T101559_TCI_20m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210531T101559_TCI_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33835145
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162078fac4d511aaeffd3d92511c38ef3a08314b68cbe0af4b939661e08795eb0a02"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R20m/T32TPT_20210531T101559_TCI_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:20m"
TCI_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R60m/T32TPT_20210531T101559_TCI_60m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210531T101559_TCI_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3724630
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620686776dee7b25839a50261be9457a99a4eeebd202312c7417377be218c48ddf6"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R60m/T32TPT_20210531T101559_TCI_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
WVP_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R10m/T32TPT_20210531T101559_WVP_10m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210531T101559_WVP_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 103644973
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620c1efa813c5ef0a16dd5f0f505808a2b907e2949f8ddfdb1d3385518c8ad21d0c"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R10m/T32TPT_20210531T101559_WVP_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
WVP_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R20m/T32TPT_20210531T101559_WVP_20m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210531T101559_WVP_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 32522386
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16203e37e7121d94b5d99bbcdc33f8ea4d75c10235844885624b0f5804351d873dc5"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R20m/T32TPT_20210531T101559_WVP_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
WVP_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R60m/T32TPT_20210531T101559_WVP_60m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210531T101559_WVP_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3730277
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620a4b94f795e1fe2006845cf667902f7550bcff0d0c0d89ef9583dcf615a7e2227"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/IMG_DATA/R60m/T32TPT_20210531T101559_WVP_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
thumbnail
- href "https://datahub.creodias.eu/odata/v1/Assets(bda48bf2-62d5-474e-92d8-cba6c8dded3b)/$value"
- type "image/jpeg"
- title "Quicklook"
alternate
s3
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441-ql.jpg"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
auth:refs[] 1 items
- 0 "oidc"
- file:size 46414
- file:checksum "d501104ae5f3c1c3ba8306d2a9e34b9bfc5a5b"
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441-ql.jpg"
- data_type "uint8"
- proj:code None
proj:shape[] 2 items
- 0 343
- 1 343
- alternate:name "HTTPS"
roles[] 2 items
- 0 "thumbnail"
- 1 "overview"
safe_manifest
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/manifest.safe"
- type "application/xml"
- title "manifest.safe"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(manifest.safe)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 68949
- file:checksum "d501109a7026a58df2800c244b9f571cade999"
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/manifest.safe"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
granule_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/MTD_TL.xml"
- type "application/xml"
- title "MTD_TL.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes()/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022113_20210531T102618)/Nodes(MTD_TL.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 547884
- file:checksum "d50120dbf891f94010fcb7f2f16600e372eecfd265aab4fe862c6ac12730fb4c8856e1"
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/GRANULE/L2A_T32TPT_A022113_20210531T102618/MTD_TL.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
inspire_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/INSPIRE.xml"
- type "application/xml"
- title "INSPIRE.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(INSPIRE.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 18684
- file:checksum "d50120c265529a920a9d6d4fc2f7e2aeaffa05eb7dd562d205619625b5d293b75fc80e"
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/INSPIRE.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
product_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/MTD_MSIL2A.xml"
- type "application/xml"
- title "MTD_MSIL2A.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes(MTD_MSIL2A.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 54946
- file:checksum "d50120764b72e0857f3664ec8956c8630cac3c3b1759c0d6428befe5eaedf6f4acd0e7"
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/MTD_MSIL2A.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
datastrip_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/31/S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/DATASTRIP/DS_S2RP_20230301T002441_S20210531T102618/MTD_DS.xml"
- type "application/xml"
- title "MTD_DS.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(0c5a0176-8ec1-4664-bc48-c95d8ec09184)/Nodes(S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE)/Nodes()/Nodes(DATASTRIP)/Nodes(DS_S2RP_20230301T002441_S20210531T102618)/Nodes(MTD_DS.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 24441722
- file:checksum "d50120684c75f2b6f439046410c2d95f6cba58937f325721baea8d2da395ad54165f08"
- file:local_path "S2B_MSIL2A_20210531T101559_N0500_R065_T32TPT_20230301T002441.SAFE/DATASTRIP/DS_S2RP_20230301T002441_S20210531T102618/MTD_DS.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
- collection "sentinel-2-l2a"
16
- type "Feature"
- stac_version "1.1.0"
stac_extensions[] 15 items
- 0 "https://stac-extensions.github.io/eo/v2.0.0/schema.json"
- 1 "https://stac-extensions.github.io/raster/v2.0.0/schema.json"
- 2 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 3 "https://stac-extensions.github.io/projection/v2.0.0/schema.json"
- 4 "https://stac-extensions.github.io/grid/v1.1.0/schema.json"
- 5 "https://stac-extensions.github.io/view/v1.0.0/schema.json"
- 6 "https://stac-extensions.github.io/file/v2.1.0/schema.json"
- 7 "https://stac-extensions.github.io/processing/v1.2.0/schema.json"
- 8 "https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json"
- 9 "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json"
- 10 "https://stac-extensions.github.io/authentication/v1.1.0/schema.json"
- 11 "https://stac-extensions.github.io/classification/v2.0.0/schema.json"
- 12 "https://stac-extensions.github.io/product/v0.1.0/schema.json"
- 13 "https://cs-si.github.io/eopf-stac-extension/v1.2.0/schema.json"
- 14 "https://stac-extensions.github.io/storage/v2.0.0/schema.json"
- id "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 12 items
0[] 2 items
- 0 10.315345661479896
- 1 46.99642184440847
1[] 2 items
- 0 10.346901490798476
- 1 47.0845911331832
2[] 2 items
- 0 10.398062890627177
- 1 47.23158713164131
3[] 2 items
- 0 10.451794077963948
- 1 47.37792505136908
4[] 2 items
- 0 10.503878939913616
- 1 47.52475217581088
5[] 2 items
- 0 10.55586326410686
- 1 47.6715957947082
6[] 2 items
- 0 10.609161691473222
- 1 47.818073430506765
7[] 2 items
- 0 10.61750886762055
- 1 47.84085431015319
8[] 2 items
- 0 11.802846682924509
- 1 47.81947440295927
9[] 2 items
- 0 11.751084998620154
- 1 46.83262831925138
10[] 2 items
- 0 10.31188688551243
- 1 46.85818197246455
11[] 2 items
- 0 10.315345661479896
- 1 46.99642184440847
bbox[] 4 items
- 0 10.311887
- 1 46.832628
- 2 11.802847
- 3 47.840854
properties
- gsd 10
- created "2023-04-17T23:46:14.936000Z"
- updated "2024-06-19T14:21:26.260433Z"
- datetime "2021-05-28T10:05:59.024000Z"
- platform "sentinel-2b"
- grid:code "MGRS-32TPT"
- published "2023-04-18T01:46:47.540062Z"
statistics
- water 0.43538
- nodata 8.633243
- dark_area 1.255598
- vegetation 29.31349
- thin_cirrus 15.205705
- cloud_shadow 0.439432
- unclassified 1.1914
- not_vegetated 10.603052
- high_proba_clouds 5.195437
- medium_proba_clouds 6.304692
- saturated_defective 0.0
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 "2021-05-28T10:05:59.024Z"
- product:type "S2MSI2A"
- view:azimuth 105.19893021833056
- constellation "sentinel-2"
- eo:snow_cover 30.06
- eo:cloud_cover 26.71
- start_datetime "2021-05-28T10:05:59.024Z"
- sat:orbit_state "ascending"
storage:schemes
cdse-s3
- 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. A Global Service Load Balancer (GSLB) directs the request to either CloudFerro Cloud or OpenTelekom Cloud (OTC) S3 endpoint based on the location of the DNS resolver."
- requester_pays False
creodias-s3
- 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 "GS2B_20210528T100559_022070_N05.00"
- processing:level "L2"
- view:sun_azimuth 151.842218303244
- eopf:datastrip_id "S2B_OPER_MSI_L2A_DS_S2RP_20230227T082312_S20210528T100555_N05.00"
- processing:version "05.00"
- product:timeliness "PT24H"
- sat:absolute_orbit 22070
- sat:relative_orbit 22
- view:sun_elevation 61.8759796457151
- processing:datetime "2023-02-27T08:23:12.000000Z"
- processing:facility "ESA"
- eopf:instrument_mode "INS-NOBS"
- eopf:origin_datetime "2023-04-17T23:46:14.936000Z"
- view:incidence_angle 7.9085910661612235
- product:timeliness_category "NRT"
- sat:platform_international_designator "2017-013A"
links[] 5 items
0
- rel "collection"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
1
- rel "parent"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
2
- rel "root"
- href "https://stac.dataspace.copernicus.eu/v1/"
- type "application/json"
- title "cdse-stac"
3
- rel "self"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312"
- type "application/geo+json"
4
- rel "version-history"
- href "https://trace.dataspace.copernicus.eu/api/v1/traces/name/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE.zip"
- type "application/json"
- title "Product history record from the CDSE traceability service"
assets
AOT_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R10m/T32TPT_20210528T100559_AOT_10m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210528T100559_AOT_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 6297105
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620b5e0ef208138291ab5ee8f886ed3825ae828f8a5ba28127086dcf1ffde59b61b"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R10m/T32TPT_20210528T100559_AOT_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
AOT_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R20m/T32TPT_20210528T100559_AOT_20m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210528T100559_AOT_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 4334570
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620d811aee0265c70240f8c0b0ce3d828f4e84cbc5be716b0d783e99051ddcdd6c1"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R20m/T32TPT_20210528T100559_AOT_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
AOT_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R60m/T32TPT_20210528T100559_AOT_60m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210528T100559_AOT_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 929255
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620099a0d5e21b4dfb645ec61d3f3e555c35376ab8a187a437ef8074e10e6c5a9e1"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R60m/T32TPT_20210528T100559_AOT_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
B01_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R20m/T32TPT_20210528T100559_B01_20m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.442
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210528T100559_B01_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 25999110
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.13130640904
- file:checksum "1620eed006daad8124fc1ef07ee4bc5d0cc733c8358e8f06d4e02beb50de00aa15fa"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R20m/T32TPT_20210528T100559_B01_20m.jp2"
- view:incidence_angle 8.00836260227061
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:upsampled"
- 3 "gsd:20m"
B01_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R60m/T32TPT_20210528T100559_B01_60m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.442
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210528T100559_B01_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3758620
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.13130640904
- file:checksum "1620b6cb30406d83fb28c3b796b0aa4317a7c3ab8dfcfa1a88db22eb6fa2ec3099aa"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R60m/T32TPT_20210528T100559_B01_60m.jp2"
- view:incidence_angle 8.00836260227061
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B02_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R10m/T32TPT_20210528T100559_B02_10m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210528T100559_B02_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 129142497
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.291084281607
- file:checksum "162033eebe5bbe3d25aa44c3c94dd625b7970e81ff475065cb481659df72a7ba8b73"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R10m/T32TPT_20210528T100559_B02_10m.jp2"
- view:incidence_angle 7.79938596670327
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B02_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R20m/T32TPT_20210528T100559_B02_20m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210528T100559_B02_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33860975
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.291084281607
- file:checksum "162024a852e8a8f2cacf9e224ed14390ccda08e920a69d7d9d6a83a616d8772f5026"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R20m/T32TPT_20210528T100559_B02_20m.jp2"
- view:incidence_angle 7.79938596670327
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B02_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R60m/T32TPT_20210528T100559_B02_60m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210528T100559_B02_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3763447
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.291084281607
- file:checksum "16205c5454a7d7f00ff3624a94b72f1d0f23a8863a309515dfd57bb15f6f9a07a24e"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R60m/T32TPT_20210528T100559_B02_60m.jp2"
- view:incidence_angle 7.79938596670327
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B03_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R10m/T32TPT_20210528T100559_B03_10m.jp2"
- type "image/jp2"
- title "Green (band 3) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210528T100559_B03_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 130574110
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.263497457224
- file:checksum "1620869ef01fe78a92e88c9e82bf99cabc069c3463a311f11e7cde37d1e0697dec88"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R10m/T32TPT_20210528T100559_B03_10m.jp2"
- view:incidence_angle 7.82605601317946
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B03_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R20m/T32TPT_20210528T100559_B03_20m.jp2"
- type "image/jp2"
- title "Green (band 3) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210528T100559_B03_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33737291
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.263497457224
- file:checksum "16200ed8dafd197cb433cc57737be40b3cd6f00fe4436370b90f8d5af456ee4365ad"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R20m/T32TPT_20210528T100559_B03_20m.jp2"
- view:incidence_angle 7.82605601317946
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B03_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R60m/T32TPT_20210528T100559_B03_60m.jp2"
- type "image/jp2"
- title "Green (band 3) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210528T100559_B03_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3757430
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.263497457224
- file:checksum "16203258448f9dbf5e2788d288c99ad3901a19598b121d9ba5a473f0b8c55e3ed8d0"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R60m/T32TPT_20210528T100559_B03_60m.jp2"
- view:incidence_angle 7.82605601317946
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B04_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R10m/T32TPT_20210528T100559_B04_10m.jp2"
- type "image/jp2"
- title "Red (band 4) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210528T100559_B04_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 128588796
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.20797146278
- file:checksum "16204f4fcef5d895f3d181a9537afa6d0d34f4ee7e7a3bb3f450d084f44b32ef25df"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R10m/T32TPT_20210528T100559_B04_10m.jp2"
- view:incidence_angle 7.86812458690478
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B04_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R20m/T32TPT_20210528T100559_B04_20m.jp2"
- type "image/jp2"
- title "Red (band 4) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210528T100559_B04_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33876225
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.20797146278
- file:checksum "1620c5ca6fa13c716e4515f681ff24fa9e4c03bf1714f3776af49a1a75850bcc2189"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R20m/T32TPT_20210528T100559_B04_20m.jp2"
- view:incidence_angle 7.86812458690478
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B04_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R60m/T32TPT_20210528T100559_B04_60m.jp2"
- type "image/jp2"
- title "Red (band 4) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210528T100559_B04_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3754176
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.20797146278
- file:checksum "16201b0f1f8fc175874cf7e0ec9cc4a886a784f636367c1ac510cb69a0eedc7c7433"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R60m/T32TPT_20210528T100559_B04_60m.jp2"
- view:incidence_angle 7.86812458690478
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B05_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R20m/T32TPT_20210528T100559_B05_20m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210528T100559_B05_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33826754
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.193709547113
- file:checksum "162038ed99818eb1482ff810eb13db7f1c129dc1ae67c30f109a59cb6eb522f7ab9f"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R20m/T32TPT_20210528T100559_B05_20m.jp2"
- view:incidence_angle 7.89070890763313
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B05_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R60m/T32TPT_20210528T100559_B05_60m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210528T100559_B05_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3745012
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.193709547113
- file:checksum "1620e5ddc36d63170e28e37e0b9823287380cd153f6a035089f3d854b2162bdd5c5b"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R60m/T32TPT_20210528T100559_B05_60m.jp2"
- view:incidence_angle 7.89070890763313
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B06_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R20m/T32TPT_20210528T100559_B06_20m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 20m"
- description "S3 storage provided by CloudFerro Cloud and OpenTelekom Cloud (OTC). Use endpoint URL `https://eodata.dataspace.copernicus.eu`."
bands[] 1 items
0
- eo:center_wavelength 0.739
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210528T100559_B06_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33885505
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.162730654217
- file:checksum "16209a5f6b007727f5f947587441020aa17d27479ebc80f5bf311a658ca66cd41ffa"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R20m/T32TPT_20210528T100559_B06_20m.jp2"
- view:incidence_angle 7.91598710687291
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B06_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R60m/T32TPT_20210528T100559_B06_60m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.739
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210528T100559_B06_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3773716
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.162730654217
- file:checksum "1620464ec4cbbd0cc2a9647a6b760023e80826456a0eb8277ea9138f595dd2201d5a"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R60m/T32TPT_20210528T100559_B06_60m.jp2"
- view:incidence_angle 7.91598710687291
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B07_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R20m/T32TPT_20210528T100559_B07_20m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.78
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210528T100559_B07_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33824263
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.143622565226
- file:checksum "162055244c347ce3c73c6ed260dee599eb080634c316c08e762990c0bfae34a9473f"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R20m/T32TPT_20210528T100559_B07_20m.jp2"
- view:incidence_angle 7.94396656625635
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B07_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R60m/T32TPT_20210528T100559_B07_60m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.78
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210528T100559_B07_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3770927
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.143622565226
- file:checksum "16207895877a06b221bdb85480375b6c3e06ca5f91f57a74b8f66e2f0073659c66bb"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R60m/T32TPT_20210528T100559_B07_60m.jp2"
- view:incidence_angle 7.94396656625635
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B08_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R10m/T32TPT_20210528T100559_B08_10m.jp2"
- type "image/jp2"
- title "NIR 1 (band 8) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.454
- name "B08"
- eo:common_name "nir"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210528T100559_B08_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 134913406
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.278701117822
- file:checksum "162037f4c5226a86ed6eecc8ecd7fb1dec75395ac400e0122260dc7e846748d747d5"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R10m/T32TPT_20210528T100559_B08_10m.jp2"
- view:incidence_angle 7.81131080430865
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B09_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R60m/T32TPT_20210528T100559_B09_60m.jp2"
- type "image/jp2"
- title "NIR 3 (band 9) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.943
- eo:full_width_half_max 0.479
- name "B09"
- eo:common_name "nir09"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210528T100559_B09_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3757995
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.100437961921
- file:checksum "1620a58df2f854fd783df9e7db4e7bbaa877268bff435bdb7e32d9a1a6968f1e722c"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R60m/T32TPT_20210528T100559_B09_60m.jp2"
- view:incidence_angle 8.04506455796727
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B11_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R20m/T32TPT_20210528T100559_B11_20m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 20m"
bands[] 1 items
0
- eo:center_wavelength 1.61
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210528T100559_B11_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33881252
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.253015217255
- file:checksum "16206bd91a65b2b8638c4619263507e0c9119eba57fe5c855aa7213f0b151dc8a811"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R20m/T32TPT_20210528T100559_B11_20m.jp2"
- view:incidence_angle 7.90813544433498
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B11_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R60m/T32TPT_20210528T100559_B11_60m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 60m"
bands[] 1 items
0
- eo:center_wavelength 1.61
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210528T100559_B11_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3747666
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.253015217255
- file:checksum "1620a80d32aecc4b4c1fef52497231e64a40d539775a42db98c3ec76559caddc2cab"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R60m/T32TPT_20210528T100559_B11_60m.jp2"
- view:incidence_angle 7.90813544433498
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B12_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R20m/T32TPT_20210528T100559_B12_20m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 20m"
bands[] 1 items
0
- eo:center_wavelength 2.186
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210528T100559_B12_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 32754038
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.162452288043
- file:checksum "1620be53f04bf38d3f35ab01d617c624d8d3a1d14e89d3520f57a48d928a8924c60d"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R20m/T32TPT_20210528T100559_B12_20m.jp2"
- view:incidence_angle 7.97426491540573
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B12_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R60m/T32TPT_20210528T100559_B12_60m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 60m"
bands[] 1 items
0
- eo:center_wavelength 2.186
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210528T100559_B12_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3751414
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.162452288043
- file:checksum "1620e0075746f586dcc6fd413016d4b7e515c7c4a60fde91595ed7ca5bbd636e6d6c"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R60m/T32TPT_20210528T100559_B12_60m.jp2"
- view:incidence_angle 7.97426491540573
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B8A_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R20m/T32TPT_20210528T100559_B8A_20m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.864
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210528T100559_B8A_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33886438
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.08402884331
- file:checksum "16201ddf429c8c83994dde268e2cb930f3365a274989a8e99d6b5c0a10e7eca9395d"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R20m/T32TPT_20210528T100559_B8A_20m.jp2"
- view:incidence_angle 7.97083650639686
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B8A_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R60m/T32TPT_20210528T100559_B8A_60m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.864
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210528T100559_B8A_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3737713
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.08402884331
- file:checksum "1620db3290985daf4aecf47740159056d3774194b9c31e5e8d38fd2b6bd43eab5366"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R60m/T32TPT_20210528T100559_B8A_60m.jp2"
- view:incidence_angle 7.97083650639686
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
Product
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/$value"
- type "application/zip"
- title "Zipped product"
auth:refs[] 1 items
- 0 "oidc"
- file:size 1215471032
- storage:refs "𒍟※"
- file:checksum "d50110f93c1ad8a666fc7a649d4fa158cfd06e"
- alternate:name "HTTPS"
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE.zip"
roles[] 3 items
- 0 "data"
- 1 "metadata"
- 2 "archive"
SCL_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R20m/T32TPT_20210528T100559_SCL_20m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210528T100559_SCL_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3319779
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16202c36ebcf8cc178a761269934563ff1395287b99f7d42f62620de7f04b75cdb28"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R20m/T32TPT_20210528T100559_SCL_20m.jp2"
classification:classes[] 12 items
0
- percentage 8.633243
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
- percentage 0.0
2
- percentage 1.255598
- name "dark_area_pixels"
- value 2
3
- percentage 0.439432
- name "cloud_shadows"
- value 3
4
- percentage 29.31349
- name "vegetation"
- value 4
5
- percentage 10.603052
- name "not_vegetated"
- value 5
6
- percentage 0.43538
- name "water"
- value 6
7
- percentage 1.1914
- name "unclassified"
- value 7
8
- percentage 6.304692
- name "cloud_medium_probability"
- value 8
9
- percentage 5.195437
- name "cloud_high_probability"
- value 9
10
- percentage 15.205705
- name "thin_cirrus"
- value 10
11
- percentage 30.055815
- name "snow"
- value 11
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "data"
- 1 "sampling:original"
- 2 "gsd:20m"
SCL_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R60m/T32TPT_20210528T100559_SCL_60m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210528T100559_SCL_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 808585
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620b0c464e4d9d74101666ba01050c42cc9685f2c014805d79918841a92c461c871"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R60m/T32TPT_20210528T100559_SCL_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
classification:classes[] 12 items
0
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
2
- name "dark_area_pixels"
- value 2
3
- name "cloud_shadows"
- value 3
4
- name "vegetation"
- value 4
5
- name "not_vegetated"
- value 5
6
- name "water"
- value 6
7
- name "unclassified"
- value 7
8
- name "cloud_medium_probability"
- value 8
9
- name "cloud_high_probability"
- value 9
10
- name "thin_cirrus"
- value 10
11
- name "snow"
- value 11
roles[] 3 items
- 0 "data"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
TCI_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R10m/T32TPT_20210528T100559_TCI_10m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210528T100559_TCI_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135040060
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16206cc60d765694ed177b865337b11c149a756f0d776b98e52481e67ccf3ad155ec"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R10m/T32TPT_20210528T100559_TCI_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 10980
- 1 10980
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:original"
- 2 "gsd:10m"
TCI_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R20m/T32TPT_20210528T100559_TCI_20m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210528T100559_TCI_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33760974
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16201aa06c024c960bd6546a1f48efe55e88caa39dca3127076162f4c6cb14d963db"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R20m/T32TPT_20210528T100559_TCI_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:20m"
TCI_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R60m/T32TPT_20210528T100559_TCI_60m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210528T100559_TCI_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3769875
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620c0b046c2b2535705e1720227e30c7231985855a99b9d3dfe83360211bfe98e44"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R60m/T32TPT_20210528T100559_TCI_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
WVP_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R10m/T32TPT_20210528T100559_WVP_10m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210528T100559_WVP_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 69873036
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620be3ded222f457c93bbea1469f97b4188328f38466c58489fba6cdc1516a19362"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R10m/T32TPT_20210528T100559_WVP_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
WVP_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R20m/T32TPT_20210528T100559_WVP_20m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210528T100559_WVP_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 22472707
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620b4ae8b5034084af102e14e9e43327a92e7caa487c0a4cb31ed197cdf82736019"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R20m/T32TPT_20210528T100559_WVP_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
WVP_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R60m/T32TPT_20210528T100559_WVP_60m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210528T100559_WVP_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3345771
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620a0eee1ffb323014d6f2f0c628e643b91d7eee53c103f5393347b5a4d91f0dd9f"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/IMG_DATA/R60m/T32TPT_20210528T100559_WVP_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
thumbnail
- href "https://datahub.creodias.eu/odata/v1/Assets(b617b822-c622-4614-b995-5522b9f2e6e7)/$value"
- type "image/jpeg"
- title "Quicklook"
alternate
s3
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312-ql.jpg"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
auth:refs[] 1 items
- 0 "oidc"
- file:size 47889
- file:checksum "d5011085e05c5c45fa8e24c3ffe024bc7e8146"
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312-ql.jpg"
- data_type "uint8"
- proj:code None
proj:shape[] 2 items
- 0 343
- 1 343
- alternate:name "HTTPS"
roles[] 2 items
- 0 "thumbnail"
- 1 "overview"
safe_manifest
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/manifest.safe"
- type "application/xml"
- title "manifest.safe"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(manifest.safe)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 69168
- file:checksum "d50110426bf04c4e8536dbd50d9dc4551c10fb"
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/manifest.safe"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
granule_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/MTD_TL.xml"
- type "application/xml"
- title "MTD_TL.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes()/Nodes(GRANULE)/Nodes(L2A_T32TPT_A022070_20210528T100555)/Nodes(MTD_TL.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 463928
- file:checksum "d50120dd956cbe71e6093608f67721dce27b44a866cdba1a6192915bbc85d1ed1e4279"
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/GRANULE/L2A_T32TPT_A022070_20210528T100555/MTD_TL.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
inspire_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/INSPIRE.xml"
- type "application/xml"
- title "INSPIRE.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(INSPIRE.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 18902
- file:checksum "d501204ad8d73742417ae6c0911b37ec695817e8caf601fc862100cdf7f62a85ba377c"
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/INSPIRE.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
product_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/MTD_MSIL2A.xml"
- type "application/xml"
- title "MTD_MSIL2A.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes(MTD_MSIL2A.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 54607
- file:checksum "d50120f2e011c15c1853f080429ba9c399ada1e9c755263243ef0e1f0720cd20155ee1"
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/MTD_MSIL2A.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
datastrip_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/28/S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/DATASTRIP/DS_S2RP_20230227T082312_S20210528T100555/MTD_DS.xml"
- type "application/xml"
- title "MTD_DS.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(b2addc51-cf23-4e86-9345-739591197392)/Nodes(S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE)/Nodes()/Nodes(DATASTRIP)/Nodes(DS_S2RP_20230227T082312_S20210528T100555)/Nodes(MTD_DS.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 22510828
- file:checksum "d5012030127d6e2470c98985866a5c24f22bd6a19da7154f9e489ca10ccedd9a7cc7a8"
- file:local_path "S2B_MSIL2A_20210528T100559_N0500_R022_T32TPT_20230227T082312.SAFE/DATASTRIP/DS_S2RP_20230227T082312_S20210528T100555/MTD_DS.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
- collection "sentinel-2-l2a"
17
- type "Feature"
- stac_version "1.1.0"
stac_extensions[] 15 items
- 0 "https://stac-extensions.github.io/eo/v2.0.0/schema.json"
- 1 "https://stac-extensions.github.io/raster/v2.0.0/schema.json"
- 2 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 3 "https://stac-extensions.github.io/projection/v2.0.0/schema.json"
- 4 "https://stac-extensions.github.io/grid/v1.1.0/schema.json"
- 5 "https://stac-extensions.github.io/view/v1.0.0/schema.json"
- 6 "https://stac-extensions.github.io/file/v2.1.0/schema.json"
- 7 "https://stac-extensions.github.io/processing/v1.2.0/schema.json"
- 8 "https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json"
- 9 "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json"
- 10 "https://stac-extensions.github.io/authentication/v1.1.0/schema.json"
- 11 "https://stac-extensions.github.io/classification/v2.0.0/schema.json"
- 12 "https://stac-extensions.github.io/product/v0.1.0/schema.json"
- 13 "https://cs-si.github.io/eopf-stac-extension/v1.2.0/schema.json"
- 14 "https://stac-extensions.github.io/storage/v2.0.0/schema.json"
- id "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 12 items
0[] 2 items
- 0 10.31468321613048
- 1 46.969945321749975
1[] 2 items
- 0 10.35643626070736
- 1 47.08811235564068
2[] 2 items
- 0 10.407482452061044
- 1 47.23495454205235
3[] 2 items
- 0 10.46047180124808
- 1 47.38130268776212
4[] 2 items
- 0 10.5130059639166
- 1 47.527827350707135
5[] 2 items
- 0 10.56431094593175
- 1 47.6746803983508
6[] 2 items
- 0 10.6174553812757
- 1 47.82110562321952
7[] 2 items
- 0 10.624654494390358
- 1 47.840725424669905
8[] 2 items
- 0 11.802846682924509
- 1 47.81947440295927
9[] 2 items
- 0 11.751084998620154
- 1 46.83262831925138
10[] 2 items
- 0 10.31188688551243
- 1 46.85818197246455
11[] 2 items
- 0 10.31468321613048
- 1 46.969945321749975
bbox[] 4 items
- 0 10.311887
- 1 46.832628
- 2 11.802847
- 3 47.840725
properties
- gsd 10
- created "2023-04-29T06:57:33.151000Z"
- updated "2024-06-19T18:53:30.538240Z"
- datetime "2021-05-08T10:05:49.024000Z"
- platform "sentinel-2b"
- grid:code "MGRS-32TPT"
- published "2023-04-29T07:32:12.874074Z"
statistics
- water 0.589903
- nodata 9.115126
- dark_area 2.493159
- vegetation 33.440745
- thin_cirrus 8.20732
- cloud_shadow 0.008787
- unclassified 0.42674
- not_vegetated 9.590986
- high_proba_clouds 1.550689
- medium_proba_clouds 6.054812
- saturated_defective 0.0
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 "2021-05-08T10:05:49.024Z"
- product:type "S2MSI2A"
- view:azimuth 105.14650225411548
- constellation "sentinel-2"
- eo:snow_cover 37.64
- eo:cloud_cover 15.81
- start_datetime "2021-05-08T10:05:49.024Z"
- sat:orbit_state "descending"
storage:schemes
cdse-s3
- 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. A Global Service Load Balancer (GSLB) directs the request to either CloudFerro Cloud or OpenTelekom Cloud (OTC) S3 endpoint based on the location of the DNS resolver."
- requester_pays False
creodias-s3
- 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 "GS2B_20210508T100549_021784_N05.00"
- processing:level "L2"
- view:sun_azimuth 154.95741811707
- eopf:datastrip_id "S2B_OPER_MSI_L2A_DS_S2RP_20230227T092940_S20210508T101551_N05.00"
- processing:version "05.00"
- product:timeliness "PT24H"
- sat:absolute_orbit 21784
- sat:relative_orbit 22
- view:sun_elevation 57.8410239772566
- processing:datetime "2023-02-27T09:29:40.000000Z"
- processing:facility "ESA"
- eopf:instrument_mode "INS-NOBS"
- eopf:origin_datetime "2023-04-29T06:57:33.151000Z"
- view:incidence_angle 7.938273299668214
- product:timeliness_category "NRT"
- sat:platform_international_designator "2017-013A"
links[] 5 items
0
- rel "collection"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
1
- rel "parent"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
2
- rel "root"
- href "https://stac.dataspace.copernicus.eu/v1/"
- type "application/json"
- title "cdse-stac"
3
- rel "self"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940"
- type "application/geo+json"
4
- rel "version-history"
- href "https://trace.dataspace.copernicus.eu/api/v1/traces/name/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE.zip"
- type "application/json"
- title "Product history record from the CDSE traceability service"
assets
AOT_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R10m/T32TPT_20210508T100549_AOT_10m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210508T100549_AOT_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 5702867
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16204bb6678546592c8f75c7c27467d10319c424daa668a1e3ac422bb7426adf33fc"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R10m/T32TPT_20210508T100549_AOT_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
AOT_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R20m/T32TPT_20210508T100549_AOT_20m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210508T100549_AOT_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 4048306
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162009fea422fbec853acbcc1f1924ffa0ffa9568034400c7cae1284945b3ce02c7d"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R20m/T32TPT_20210508T100549_AOT_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
AOT_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R60m/T32TPT_20210508T100549_AOT_60m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210508T100549_AOT_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 897825
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620a05dd3d5c71f4391f83cbb87cb695edac20dce55376a082a2727f073a5f46726"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R60m/T32TPT_20210508T100549_AOT_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
B01_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R20m/T32TPT_20210508T100549_B01_20m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.442
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210508T100549_B01_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 25908143
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.050803103954
- file:checksum "16203f0fb55f5001f3693552a736d5c013d80071d48fabeddd7e3ed9e225c1b20a68"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R20m/T32TPT_20210508T100549_B01_20m.jp2"
- view:incidence_angle 8.03605418623742
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:upsampled"
- 3 "gsd:20m"
B01_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R60m/T32TPT_20210508T100549_B01_60m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.442
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210508T100549_B01_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3746733
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.050803103954
- file:checksum "1620aaceed6102632361a513e57626422daee036f2dbbb304de35cff599e7cf24e34"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R60m/T32TPT_20210508T100549_B01_60m.jp2"
- view:incidence_angle 8.03605418623742
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B02_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R10m/T32TPT_20210508T100549_B02_10m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210508T100549_B02_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 131271721
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.265697204586
- file:checksum "1620feafa9a0076d5bdd7c6038ed91bfea5233f63906b4f5ca4209cc1886a1c3846b"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R10m/T32TPT_20210508T100549_B02_10m.jp2"
- view:incidence_angle 7.83166220523725
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B02_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R20m/T32TPT_20210508T100549_B02_20m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210508T100549_B02_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33757400
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.265697204586
- file:checksum "1620259f4b4d98e4cf249ebb5f6d50a0f496d6f7afda6c9cc429d9ced957f54c12ae"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R20m/T32TPT_20210508T100549_B02_20m.jp2"
- view:incidence_angle 7.83166220523725
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B02_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R60m/T32TPT_20210508T100549_B02_60m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210508T100549_B02_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3760943
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.265697204586
- file:checksum "1620a7409d88012baf712bfe4e36d1079303ee3155579ea457b60b066e4a9c0d76a1"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R60m/T32TPT_20210508T100549_B02_60m.jp2"
- view:incidence_angle 7.83166220523725
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B03_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R10m/T32TPT_20210508T100549_B03_10m.jp2"
- type "image/jp2"
- title "Green (band 3) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210508T100549_B03_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 131808755
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.234321007559
- file:checksum "16207d793c20a14ade6d6c34a6499b153ae4b6d414c8804234fc513ef342984725db"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R10m/T32TPT_20210508T100549_B03_10m.jp2"
- view:incidence_angle 7.85816671552421
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B03_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R20m/T32TPT_20210508T100549_B03_20m.jp2"
- type "image/jp2"
- title "Green (band 3) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210508T100549_B03_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33749091
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.234321007559
- file:checksum "162069e573d2ce640fc2342fe1eeebce6ec3a939964e392b758f56a149e63ad84817"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R20m/T32TPT_20210508T100549_B03_20m.jp2"
- view:incidence_angle 7.85816671552421
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B03_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R60m/T32TPT_20210508T100549_B03_60m.jp2"
- type "image/jp2"
- title "Green (band 3) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210508T100549_B03_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3763234
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.234321007559
- file:checksum "16200fff89f8b1193494b4d794b2c854eb3a42f5843ad0d590b360ef11e272164f6a"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R60m/T32TPT_20210508T100549_B03_60m.jp2"
- view:incidence_angle 7.85816671552421
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B04_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R10m/T32TPT_20210508T100549_B04_10m.jp2"
- type "image/jp2"
- title "Red (band 4) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210508T100549_B04_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 131649854
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.146629735702
- file:checksum "162028a2af6dcad1c2856cbcf555bc6026455ee3369a796913a749fbad62010de4a3"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R10m/T32TPT_20210508T100549_B04_10m.jp2"
- view:incidence_angle 7.89672097122288
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B04_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R20m/T32TPT_20210508T100549_B04_20m.jp2"
- type "image/jp2"
- title "Red (band 4) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210508T100549_B04_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33836297
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.146629735702
- file:checksum "16201a79d6bdc62cada3087f6dfee0037795cbb153b96047f0fbf95759381f917c08"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R20m/T32TPT_20210508T100549_B04_20m.jp2"
- view:incidence_angle 7.89672097122288
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B04_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R60m/T32TPT_20210508T100549_B04_60m.jp2"
- type "image/jp2"
- title "Red (band 4) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210508T100549_B04_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3755000
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.146629735702
- file:checksum "1620b070bb33c07053aacd7dae374ff8c3c2ee482b4642bb493e5bf12871827ea3be"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R60m/T32TPT_20210508T100549_B04_60m.jp2"
- view:incidence_angle 7.89672097122288
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B05_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R20m/T32TPT_20210508T100549_B05_20m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210508T100549_B05_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33795719
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.127048676717
- file:checksum "1620aed0d08ea106a7ba809be11946c8cd671c0375c23f3abcffe37b97ae96c560b0"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R20m/T32TPT_20210508T100549_B05_20m.jp2"
- view:incidence_angle 7.91917989535712
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B05_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R60m/T32TPT_20210508T100549_B05_60m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210508T100549_B05_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3749043
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.127048676717
- file:checksum "16207024f44024a4c42c6b0aeba6f7485f07146c8d89bdaa85120edc8d48752d5dfa"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R60m/T32TPT_20210508T100549_B05_60m.jp2"
- view:incidence_angle 7.91917989535712
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B06_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R20m/T32TPT_20210508T100549_B06_20m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 20m"
- description "S3 storage provided by CloudFerro Cloud and OpenTelekom Cloud (OTC). Use endpoint URL `https://eodata.dataspace.copernicus.eu`."
bands[] 1 items
0
- eo:center_wavelength 0.739
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210508T100549_B06_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33808929
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.091026861422
- file:checksum "16201c827520689ecb4056a4bad4ee86973f7f5ef0437be715c9f4efdec80dce83a5"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R20m/T32TPT_20210508T100549_B06_20m.jp2"
- view:incidence_angle 7.94432420328538
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B06_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R60m/T32TPT_20210508T100549_B06_60m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.739
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210508T100549_B06_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3739920
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.091026861422
- file:checksum "16200eaac079d5b607e5ad4cc10ca6249fb0134cb4d335634f6985b16b38828bf5b5"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R60m/T32TPT_20210508T100549_B06_60m.jp2"
- view:incidence_angle 7.94432420328538
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B07_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R20m/T32TPT_20210508T100549_B07_20m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.78
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210508T100549_B07_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33836172
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.066996350442
- file:checksum "1620b2071f8daba66992c36d50b1ab2589a46743f3cfd88ec082aa25deacd2f8f22c"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R20m/T32TPT_20210508T100549_B07_20m.jp2"
- view:incidence_angle 7.97215948099743
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B07_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R60m/T32TPT_20210508T100549_B07_60m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.78
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210508T100549_B07_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3738517
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.066996350442
- file:checksum "1620c65d404eb042d8a3e49c5687b32f7b950fbfe759e57bea392d5162d6c66686b1"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R60m/T32TPT_20210508T100549_B07_60m.jp2"
- view:incidence_angle 7.97215948099743
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B08_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R10m/T32TPT_20210508T100549_B08_10m.jp2"
- type "image/jp2"
- title "NIR 1 (band 8) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.454
- name "B08"
- eo:common_name "nir"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210508T100549_B08_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 134925335
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.251354206676
- file:checksum "162017d51610331a8b9d3714e2a436f1b05fc71d37a94deee530c96d5326a19d5714"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R10m/T32TPT_20210508T100549_B08_10m.jp2"
- view:incidence_angle 7.84351102521333
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B09_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R60m/T32TPT_20210508T100549_B09_60m.jp2"
- type "image/jp2"
- title "NIR 3 (band 9) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.943
- eo:full_width_half_max 0.479
- name "B09"
- eo:common_name "nir09"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210508T100549_B09_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3760458
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.981874738243
- file:checksum "162013b68cf78309680b1f8182ea3371d81367bea060ddf08af80719fa08b1176c33"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R60m/T32TPT_20210508T100549_B09_60m.jp2"
- view:incidence_angle 8.068886031828
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B11_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R20m/T32TPT_20210508T100549_B11_20m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 20m"
bands[] 1 items
0
- eo:center_wavelength 1.61
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210508T100549_B11_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33336655
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.23380909175
- file:checksum "16200ab0d0998aa5135edf6a54f586ccbe165333441dba6b361d9ca44a8371d2170b"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R20m/T32TPT_20210508T100549_B11_20m.jp2"
- view:incidence_angle 7.93638744031675
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B11_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R60m/T32TPT_20210508T100549_B11_60m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 60m"
bands[] 1 items
0
- eo:center_wavelength 1.61
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210508T100549_B11_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3750601
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.23380909175
- file:checksum "1620875d597003ed93862bf027913f4e6cad86fd7437400515b3035593ea4784c4e0"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R60m/T32TPT_20210508T100549_B11_60m.jp2"
- view:incidence_angle 7.93638744031675
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B12_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R20m/T32TPT_20210508T100549_B12_20m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 20m"
bands[] 1 items
0
- eo:center_wavelength 2.186
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210508T100549_B12_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 32088270
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.127260718167
- file:checksum "16205da6fa02a6d352a34be9aa273183369b6381952ca58854d336e498bef40b4269"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R20m/T32TPT_20210508T100549_B12_20m.jp2"
- view:incidence_angle 8.00629203451593
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B12_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R60m/T32TPT_20210508T100549_B12_60m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 60m"
bands[] 1 items
0
- eo:center_wavelength 2.186
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210508T100549_B12_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3751010
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.127260718167
- file:checksum "16208e7aa020f622fc00dc8672d2cd2d781ae99061e397ce0394e67723d5e63bf380"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R60m/T32TPT_20210508T100549_B12_60m.jp2"
- view:incidence_angle 8.00629203451593
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B8A_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R20m/T32TPT_20210508T100549_B8A_20m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.864
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210508T100549_B8A_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33802396
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.031838937933
- file:checksum "16202ba7b944a9d5650d879c58da41876aeb26eda47db199c903eaa77dff1e743e2c"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R20m/T32TPT_20210508T100549_B8A_20m.jp2"
- view:incidence_angle 8.00254022242524
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B8A_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R60m/T32TPT_20210508T100549_B8A_60m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.864
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210508T100549_B8A_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3739364
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.031838937933
- file:checksum "1620952ba3d220886f3317e22ecdf6c770552e6a901ff38db47cdf538a205eb70731"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R60m/T32TPT_20210508T100549_B8A_60m.jp2"
- view:incidence_angle 8.00254022242524
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
Product
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/$value"
- type "application/zip"
- title "Zipped product"
auth:refs[] 1 items
- 0 "oidc"
- file:size 1230148489
- storage:refs "𒍟※"
- file:checksum "d50110d7f7e1fe0f7fa236e6dd5508714ec484"
- alternate:name "HTTPS"
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE.zip"
roles[] 3 items
- 0 "data"
- 1 "metadata"
- 2 "archive"
SCL_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R20m/T32TPT_20210508T100549_SCL_20m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210508T100549_SCL_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3156633
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16203a0367018e16971d8d37e53836a52985cac612b19482498621b7f004288438ea"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R20m/T32TPT_20210508T100549_SCL_20m.jp2"
classification:classes[] 12 items
0
- percentage 9.115126
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
- percentage 0.0
2
- percentage 2.493159
- name "dark_area_pixels"
- value 2
3
- percentage 0.008787
- name "cloud_shadows"
- value 3
4
- percentage 33.440745
- name "vegetation"
- value 4
5
- percentage 9.590986
- name "not_vegetated"
- value 5
6
- percentage 0.589903
- name "water"
- value 6
7
- percentage 0.42674
- name "unclassified"
- value 7
8
- percentage 6.054812
- name "cloud_medium_probability"
- value 8
9
- percentage 1.550689
- name "cloud_high_probability"
- value 9
10
- percentage 8.20732
- name "thin_cirrus"
- value 10
11
- percentage 37.636858
- name "snow"
- value 11
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "data"
- 1 "sampling:original"
- 2 "gsd:20m"
SCL_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R60m/T32TPT_20210508T100549_SCL_60m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210508T100549_SCL_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 747686
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16201ed67693b83a4611fc2c514c7d9d143e2d741e7b80f1d1876e5c62518dfe9853"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R60m/T32TPT_20210508T100549_SCL_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
classification:classes[] 12 items
0
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
2
- name "dark_area_pixels"
- value 2
3
- name "cloud_shadows"
- value 3
4
- name "vegetation"
- value 4
5
- name "not_vegetated"
- value 5
6
- name "water"
- value 6
7
- name "unclassified"
- value 7
8
- name "cloud_medium_probability"
- value 8
9
- name "cloud_high_probability"
- value 9
10
- name "thin_cirrus"
- value 10
11
- name "snow"
- value 11
roles[] 3 items
- 0 "data"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
TCI_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R10m/T32TPT_20210508T100549_TCI_10m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210508T100549_TCI_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 132390454
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620e9f1c5ccbe38cb7e53a482c4a478fccdd65e02a0c7129af0a953410a0c9940ff"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R10m/T32TPT_20210508T100549_TCI_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 10980
- 1 10980
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:original"
- 2 "gsd:10m"
TCI_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R20m/T32TPT_20210508T100549_TCI_20m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210508T100549_TCI_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33264288
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16203a838027e0892c4e8890b0adb2a20fb96daca7fbd70ca050ebb0524bd9a472c5"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R20m/T32TPT_20210508T100549_TCI_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:20m"
TCI_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R60m/T32TPT_20210508T100549_TCI_60m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210508T100549_TCI_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3719915
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16204ce3b97b5bed5a6a72c6bc2cc4fd8e6a53bfb00f1343e6e2122ed9222a17be0b"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R60m/T32TPT_20210508T100549_TCI_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
WVP_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R10m/T32TPT_20210508T100549_WVP_10m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210508T100549_WVP_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 80317749
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162056cf71700e436dae830cb514540b18881db6fdba6eb6352b638dc3c54abdeba2"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R10m/T32TPT_20210508T100549_WVP_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
WVP_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R20m/T32TPT_20210508T100549_WVP_20m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210508T100549_WVP_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 25424180
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620363ebe768774acd9382abac75bd2b09501ddea1d6c187870fa3755077d37077e"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R20m/T32TPT_20210508T100549_WVP_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
WVP_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R60m/T32TPT_20210508T100549_WVP_60m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210508T100549_WVP_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3626243
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620e5114ac53fc84d646324eab41dd49ba78e373b5b6ed1c02d821cd4faffff2607"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/IMG_DATA/R60m/T32TPT_20210508T100549_WVP_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
thumbnail
- href "https://datahub.creodias.eu/odata/v1/Assets(dddbc1df-cc6e-414a-aecb-dcd1ffc5f74d)/$value"
- type "image/jpeg"
- title "Quicklook"
alternate
s3
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940-ql.jpg"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
auth:refs[] 1 items
- 0 "oidc"
- file:size 44571
- file:checksum "d50110b5a195dbd534a1114f5fd0c81bfbc4cd"
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940-ql.jpg"
- data_type "uint8"
- proj:code None
proj:shape[] 2 items
- 0 343
- 1 343
- alternate:name "HTTPS"
roles[] 2 items
- 0 "thumbnail"
- 1 "overview"
safe_manifest
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/manifest.safe"
- type "application/xml"
- title "manifest.safe"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(manifest.safe)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 69166
- file:checksum "d50110f83796861beeee3d28b62257c515693f"
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/manifest.safe"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
granule_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/MTD_TL.xml"
- type "application/xml"
- title "MTD_TL.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes()/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021784_20210508T101551)/Nodes(MTD_TL.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 463541
- file:checksum "d50120eaa0223cf127fff67ee56ae5a0d0b0a01d16531671442d3bdc1e97b802fe431c"
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/GRANULE/L2A_T32TPT_A021784_20210508T101551/MTD_TL.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
inspire_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/INSPIRE.xml"
- type "application/xml"
- title "INSPIRE.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(INSPIRE.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 18900
- file:checksum "d501200330fa1b01bc0923dbeafa88844fb22e7ebf8b32a2537cecbab4e944e3dab56f"
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/INSPIRE.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
product_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/MTD_MSIL2A.xml"
- type "application/xml"
- title "MTD_MSIL2A.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes(MTD_MSIL2A.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 55067
- file:checksum "d50120f175431fe02390b8040f38b06932a17ef3b0c50b13e93589dacbd8d60350d9f4"
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/MTD_MSIL2A.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
datastrip_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/08/S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/DATASTRIP/DS_S2RP_20230227T092940_S20210508T101551/MTD_DS.xml"
- type "application/xml"
- title "MTD_DS.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(e65447ce-1b51-4a7f-af2e-2fcb01d92d75)/Nodes(S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE)/Nodes()/Nodes(DATASTRIP)/Nodes(DS_S2RP_20230227T092940_S20210508T101551)/Nodes(MTD_DS.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 24349580
- file:checksum "d50120c5374a3fad13206d9bd9450fdee754cedf7ae171431c96152ffd7e79f61efa9b"
- file:local_path "S2B_MSIL2A_20210508T100549_N0500_R022_T32TPT_20230227T092940.SAFE/DATASTRIP/DS_S2RP_20230227T092940_S20210508T101551/MTD_DS.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
- collection "sentinel-2-l2a"
18
- type "Feature"
- stac_version "1.1.0"
stac_extensions[] 15 items
- 0 "https://stac-extensions.github.io/eo/v2.0.0/schema.json"
- 1 "https://stac-extensions.github.io/raster/v2.0.0/schema.json"
- 2 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 3 "https://stac-extensions.github.io/projection/v2.0.0/schema.json"
- 4 "https://stac-extensions.github.io/grid/v1.1.0/schema.json"
- 5 "https://stac-extensions.github.io/view/v1.0.0/schema.json"
- 6 "https://stac-extensions.github.io/file/v2.1.0/schema.json"
- 7 "https://stac-extensions.github.io/processing/v1.2.0/schema.json"
- 8 "https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json"
- 9 "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json"
- 10 "https://stac-extensions.github.io/authentication/v1.1.0/schema.json"
- 11 "https://stac-extensions.github.io/classification/v2.0.0/schema.json"
- 12 "https://stac-extensions.github.io/product/v0.1.0/schema.json"
- 13 "https://cs-si.github.io/eopf-stac-extension/v1.2.0/schema.json"
- 14 "https://stac-extensions.github.io/storage/v2.0.0/schema.json"
- id "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 12 items
0[] 2 items
- 0 10.314229641150822
- 1 46.951816900685884
1[] 2 items
- 0 10.343722695738778
- 1 47.04022140337059
2[] 2 items
- 0 10.397571266280384
- 1 47.18631129441587
3[] 2 items
- 0 10.4512456990779
- 1 47.33254561758758
4[] 2 items
- 0 10.50247757427216
- 1 47.47957789658633
5[] 2 items
- 0 10.554196576742056
- 1 47.62656399716417
6[] 2 items
- 0 10.60760968659998
- 1 47.77314610033326
7[] 2 items
- 0 10.63241106177527
- 1 47.84058551966672
8[] 2 items
- 0 11.802846682924509
- 1 47.81947440295927
9[] 2 items
- 0 11.751084998620154
- 1 46.83262831925138
10[] 2 items
- 0 10.31188688551243
- 1 46.85818197246455
11[] 2 items
- 0 10.314229641150822
- 1 46.951816900685884
bbox[] 4 items
- 0 10.311887
- 1 46.832628
- 2 11.802847
- 3 47.840586
properties
- gsd 10
- created "2023-03-24T07:42:49.881000Z"
- updated "2024-04-30T19:36:23.813765Z"
- datetime "2021-05-03T10:10:21.024000Z"
- platform "sentinel-2a"
- grid:code "MGRS-32TPT"
- published "2023-03-24T08:19:02.280265Z"
statistics
- water 0.540806
- nodata 9.240773
- dark_area 2.590528
- vegetation 17.260788
- thin_cirrus 1.263213
- cloud_shadow 2.993026
- unclassified 2.121929
- not_vegetated 4.450665
- high_proba_clouds 24.683363999999997
- medium_proba_clouds 14.139204
- saturated_defective 0.0
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 "2021-05-03T10:10:21.024Z"
- product:type "S2MSI2A"
- view:azimuth 104.28175598719515
- constellation "sentinel-2"
- eo:snow_cover 29.96
- eo:cloud_cover 40.09
- start_datetime "2021-05-03T10:10:21.024Z"
- sat:orbit_state "descending"
storage:schemes
cdse-s3
- 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. A Global Service Load Balancer (GSLB) directs the request to either CloudFerro Cloud or OpenTelekom Cloud (OTC) S3 endpoint based on the location of the DNS resolver."
- requester_pays False
creodias-s3
- 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 "GS2A_20210503T101021_030621_N05.00"
- processing:level "L2"
- view:sun_azimuth 155.567201598487
- eopf:datastrip_id "S2A_OPER_MSI_L2A_DS_S2RP_20230207T103751_S20210503T101204_N05.00"
- processing:version "05.00"
- product:timeliness "PT24H"
- sat:absolute_orbit 30621
- sat:relative_orbit 22
- view:sun_elevation 56.4731030498837
- processing:datetime "2023-02-07T10:37:51.000000Z"
- processing:facility "ESA"
- eopf:instrument_mode "INS-NOBS"
- eopf:origin_datetime "2023-03-24T07:42:49.881000Z"
- view:incidence_angle 7.941558328051404
- product:timeliness_category "NRT"
- sat:platform_international_designator "2015-028A"
links[] 5 items
0
- rel "collection"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
1
- rel "parent"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
2
- rel "root"
- href "https://stac.dataspace.copernicus.eu/v1/"
- type "application/json"
- title "cdse-stac"
3
- rel "self"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751"
- type "application/geo+json"
4
- rel "version-history"
- href "https://trace.dataspace.copernicus.eu/api/v1/traces/name/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE.zip"
- type "application/json"
- title "Product history record from the CDSE traceability service"
assets
AOT_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R10m/T32TPT_20210503T101021_AOT_10m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210503T101021_AOT_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 5980860
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16202b6c6746eed6864c11d71e157c9f66ee44e86a86dea037813c05c8e53e9618a9"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R10m/T32TPT_20210503T101021_AOT_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
AOT_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R20m/T32TPT_20210503T101021_AOT_20m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210503T101021_AOT_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 4185235
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16203438ff39c51e5b9e48d3b07c42fac302a8e2d804edcde7d13d0c1b64ff1aa51e"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R20m/T32TPT_20210503T101021_AOT_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
AOT_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R60m/T32TPT_20210503T101021_AOT_60m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210503T101021_AOT_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 908067
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162001fc878dd0416129743d8170c938f0c9b566ad43edd14a064328916496eebf28"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R60m/T32TPT_20210503T101021_AOT_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
B01_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R20m/T32TPT_20210503T101021_B01_20m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.443
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210503T101021_B01_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 28677957
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.266356000764
- file:checksum "1620dc853ea1d2871f3893624981d5a2837d3179c2a3b3c7a94cdb8d56f7b542ce04"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R20m/T32TPT_20210503T101021_B01_20m.jp2"
- view:incidence_angle 8.04009634763639
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:upsampled"
- 3 "gsd:20m"
B01_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R60m/T32TPT_20210503T101021_B01_60m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.443
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210503T101021_B01_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3758147
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.266356000764
- file:checksum "1620963e59918498b7a9ff76302c22ffd57248fdca66e48b76ec95ce8ea8ae86a849"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R60m/T32TPT_20210503T101021_B01_60m.jp2"
- view:incidence_angle 8.04009634763639
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B02_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R10m/T32TPT_20210503T101021_B02_10m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210503T101021_B02_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 133714294
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.316901407735
- file:checksum "162019a8b77868748dcf385c4face995d65937adb503af57dc630b16fa9670939561"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R10m/T32TPT_20210503T101021_B02_10m.jp2"
- view:incidence_angle 7.83228627704948
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B02_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R20m/T32TPT_20210503T101021_B02_20m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210503T101021_B02_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33745607
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.316901407735
- file:checksum "16203247464a801953ecae0debf3acb00bd5d8d0699bece86142b38450d8568357cb"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R20m/T32TPT_20210503T101021_B02_20m.jp2"
- view:incidence_angle 7.83228627704948
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B02_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R60m/T32TPT_20210503T101021_B02_60m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210503T101021_B02_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3764628
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.316901407735
- file:checksum "16206679c43cb47527f88dea664aecb6ff0438b15c8ee1113da63921cfb5ac9e1310"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R60m/T32TPT_20210503T101021_B02_60m.jp2"
- view:incidence_angle 7.83228627704948
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B03_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R10m/T32TPT_20210503T101021_B03_10m.jp2"
- type "image/jp2"
- title "Green (band 3) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210503T101021_B03_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 132680798
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.277148884693
- file:checksum "162054b7906688cea0b4eb607a4a1405086024a583b86d495a463cf525389e9a1f0a"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R10m/T32TPT_20210503T101021_B03_10m.jp2"
- view:incidence_angle 7.85883305036594
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B03_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R20m/T32TPT_20210503T101021_B03_20m.jp2"
- type "image/jp2"
- title "Green (band 3) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210503T101021_B03_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33854125
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.277148884693
- file:checksum "1620a68f863d6551d5904a79e56789ebf439dfffb013854999314c28f86cbb76de05"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R20m/T32TPT_20210503T101021_B03_20m.jp2"
- view:incidence_angle 7.85883305036594
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B03_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R60m/T32TPT_20210503T101021_B03_60m.jp2"
- type "image/jp2"
- title "Green (band 3) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210503T101021_B03_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3767286
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.277148884693
- file:checksum "1620af992af4a2371751dd670db09dbddd41e9013df33144e04be0538911960d0347"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R60m/T32TPT_20210503T101021_B03_60m.jp2"
- view:incidence_angle 7.85883305036594
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B04_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R10m/T32TPT_20210503T101021_B04_10m.jp2"
- type "image/jp2"
- title "Red (band 4) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210503T101021_B04_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 131837607
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.259858243107
- file:checksum "1620ef2a1278948782948ce84b6b6e76f1a564d975507d3c2e0c6a32d87e69ad80bf"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R10m/T32TPT_20210503T101021_B04_10m.jp2"
- view:incidence_angle 7.90082419022085
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B04_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R20m/T32TPT_20210503T101021_B04_20m.jp2"
- type "image/jp2"
- title "Red (band 4) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210503T101021_B04_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33772212
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.259858243107
- file:checksum "1620d1ecf35885442d6d7bae7f120ea43d6a7a80e2fcc14102010e86e42d33a07ce5"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R20m/T32TPT_20210503T101021_B04_20m.jp2"
- view:incidence_angle 7.90082419022085
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B04_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R60m/T32TPT_20210503T101021_B04_60m.jp2"
- type "image/jp2"
- title "Red (band 4) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210503T101021_B04_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3762840
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.259858243107
- file:checksum "1620b15c0d75d0ef798fd04b5db35ffee3f849f2bebdffb2d9ccdaed499c38302499"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R60m/T32TPT_20210503T101021_B04_60m.jp2"
- view:incidence_angle 7.90082419022085
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B05_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R20m/T32TPT_20210503T101021_B05_20m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210503T101021_B05_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33846893
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.281481618912
- file:checksum "1620859dc57349b942a8c20ade6f0c6c977088df4cf067bc503eb5f2dbf559fd8db1"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R20m/T32TPT_20210503T101021_B05_20m.jp2"
- view:incidence_angle 7.92711536390449
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B05_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R60m/T32TPT_20210503T101021_B05_60m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210503T101021_B05_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3757424
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.281481618912
- file:checksum "1620812df0edcbc28ed31b311263c8f45320772b03f51ed3c288138bcc82d6f9a639"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R60m/T32TPT_20210503T101021_B05_60m.jp2"
- view:incidence_angle 7.92711536390449
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B06_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R20m/T32TPT_20210503T101021_B06_20m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 20m"
- description "S3 storage provided by CloudFerro Cloud and OpenTelekom Cloud (OTC). Use endpoint URL `https://eodata.dataspace.copernicus.eu`."
bands[] 1 items
0
- eo:center_wavelength 0.741
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210503T101021_B06_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33833264
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.258596813168
- file:checksum "1620963d8ff44575e213ed0c901a6809efb876f8387a6db0b9a9ed93afa1f4655bad"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R20m/T32TPT_20210503T101021_B06_20m.jp2"
- view:incidence_angle 7.95225339639662
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B06_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R60m/T32TPT_20210503T101021_B06_60m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.741
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210503T101021_B06_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3747820
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.258596813168
- file:checksum "16206432d4ae35f19b35b27226fdaa07ca129e3f504e2e33a3db8bbced3d8f939b50"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R60m/T32TPT_20210503T101021_B06_60m.jp2"
- view:incidence_angle 7.95225339639662
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B07_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R20m/T32TPT_20210503T101021_B07_20m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210503T101021_B07_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33789015
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.247710768553
- file:checksum "162058d2a69ee42a651c917e5051ed9df436762bfad5421fc350d3b635ca61418cef"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R20m/T32TPT_20210503T101021_B07_20m.jp2"
- view:incidence_angle 7.98003298884032
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B07_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R60m/T32TPT_20210503T101021_B07_60m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210503T101021_B07_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3747159
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.247710768553
- file:checksum "1620de88ded0c3b76af0cde72fe3a4b86e2ea62439df7d2d66675cde380996f1d69c"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R60m/T32TPT_20210503T101021_B07_60m.jp2"
- view:incidence_angle 7.98003298884032
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B08_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R10m/T32TPT_20210503T101021_B08_10m.jp2"
- type "image/jp2"
- title "NIR 1 (band 8) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.454
- name "B08"
- eo:common_name "nir"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210503T101021_B08_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135109372
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.297107228687
- file:checksum "162014e9beb94ce22b62ce05fb8ae6755c550b9e067b53e330d14788943d2f5b0759"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R10m/T32TPT_20210503T101021_B08_10m.jp2"
- view:incidence_angle 7.84415541372838
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B09_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R60m/T32TPT_20210503T101021_B09_60m.jp2"
- type "image/jp2"
- title "NIR 3 (band 9) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.945
- eo:full_width_half_max 0.479
- name "B09"
- eo:common_name "nir09"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210503T101021_B09_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3740702
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.27454590925
- file:checksum "1620c9117e6afa73b06186893a7d75f27b44e67aab24ae2b7838bd36b6d4b6b3f87b"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R60m/T32TPT_20210503T101021_B09_60m.jp2"
- view:incidence_angle 8.07653069116349
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B11_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R20m/T32TPT_20210503T101021_B11_20m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 20m"
bands[] 1 items
0
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210503T101021_B11_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 32864455
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.328174749508
- file:checksum "162099dad5101fe542361d480ec3a1508409bd829c1724e29f5a2aa2a0812c6daa8f"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R20m/T32TPT_20210503T101021_B11_20m.jp2"
- view:incidence_angle 7.93536133304618
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B11_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R60m/T32TPT_20210503T101021_B11_60m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 60m"
bands[] 1 items
0
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210503T101021_B11_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3748929
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.328174749508
- file:checksum "162084614dc558a5266161128aa38703461e0bf2d24256511d4074fdaad9616966d8"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R60m/T32TPT_20210503T101021_B11_60m.jp2"
- view:incidence_angle 7.93536133304618
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B12_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R20m/T32TPT_20210503T101021_B12_20m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 20m"
bands[] 1 items
0
- eo:center_wavelength 2.202
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210503T101021_B12_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 32425981
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.263832981335
- file:checksum "16201e8d5eba8feb9679ad8f765c3b6932127e3c3d6354644b6c13d0f2a85af0e6ab"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R20m/T32TPT_20210503T101021_B12_20m.jp2"
- view:incidence_angle 8.00124567069208
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B12_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R60m/T32TPT_20210503T101021_B12_60m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 60m"
bands[] 1 items
0
- eo:center_wavelength 2.202
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210503T101021_B12_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3753758
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.263832981335
- file:checksum "16209d7eaf02d5b971eacec91165a18ed820e4b0720931ff48e8c02d9d8d609dd813"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R60m/T32TPT_20210503T101021_B12_60m.jp2"
- view:incidence_angle 8.00124567069208
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B8A_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R20m/T32TPT_20210503T101021_B8A_20m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210503T101021_B8A_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33876189
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.225727615288
- file:checksum "1620a86f18674d8ed9557fd08c089d7b7f9733958b6c3132632d6674ecdb9ad9fb11"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R20m/T32TPT_20210503T101021_B8A_20m.jp2"
- view:incidence_angle 8.01037915068871
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B8A_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R60m/T32TPT_20210503T101021_B8A_60m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210503T101021_B8A_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3752064
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.225727615288
- file:checksum "1620a33d37495602066907fc6080e1fbd3de39dfbc4f2cd5e3f3c2f900cab675cff5"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R60m/T32TPT_20210503T101021_B8A_60m.jp2"
- view:incidence_angle 8.01037915068871
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
Product
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/$value"
- type "application/zip"
- title "Zipped product"
auth:refs[] 1 items
- 0 "oidc"
- file:size 1165728970
- storage:refs "𒍟※"
- file:checksum "d501109271fd5e78463dd87b892a5f5035d2ed"
- alternate:name "HTTPS"
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE.zip"
roles[] 3 items
- 0 "data"
- 1 "metadata"
- 2 "archive"
SCL_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R20m/T32TPT_20210503T101021_SCL_20m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210503T101021_SCL_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3395302
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620d4c18b73c620cd99226846752a9abcd1988fb72af5e1aff196385494b6e06059"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R20m/T32TPT_20210503T101021_SCL_20m.jp2"
classification:classes[] 12 items
0
- percentage 9.240773
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
- percentage 0.0
2
- percentage 2.590528
- name "dark_area_pixels"
- value 2
3
- percentage 2.993026
- name "cloud_shadows"
- value 3
4
- percentage 17.260788
- name "vegetation"
- value 4
5
- percentage 4.450665
- name "not_vegetated"
- value 5
6
- percentage 0.540806
- name "water"
- value 6
7
- percentage 2.121929
- name "unclassified"
- value 7
8
- percentage 14.139204
- name "cloud_medium_probability"
- value 8
9
- percentage 24.683363999999997
- name "cloud_high_probability"
- value 9
10
- percentage 1.263213
- name "thin_cirrus"
- value 10
11
- percentage 29.956478
- name "snow"
- value 11
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "data"
- 1 "sampling:original"
- 2 "gsd:20m"
SCL_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R60m/T32TPT_20210503T101021_SCL_60m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210503T101021_SCL_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 819930
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16201768eea494349cf44546078b345a38877d6806d1e7dec76bb96d5de5e4ddce98"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R60m/T32TPT_20210503T101021_SCL_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
classification:classes[] 12 items
0
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
2
- name "dark_area_pixels"
- value 2
3
- name "cloud_shadows"
- value 3
4
- name "vegetation"
- value 4
5
- name "not_vegetated"
- value 5
6
- name "water"
- value 6
7
- name "unclassified"
- value 7
8
- name "cloud_medium_probability"
- value 8
9
- name "cloud_high_probability"
- value 9
10
- name "thin_cirrus"
- value 10
11
- name "snow"
- value 11
roles[] 3 items
- 0 "data"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
TCI_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R10m/T32TPT_20210503T101021_TCI_10m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210503T101021_TCI_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 109421053
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620624026e4b19c3535e5ab9267e62965d41eee30477ef2a046f563065d69f780c8"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R10m/T32TPT_20210503T101021_TCI_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 10980
- 1 10980
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:original"
- 2 "gsd:10m"
TCI_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R20m/T32TPT_20210503T101021_TCI_20m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210503T101021_TCI_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 30562940
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620203ffee4f28f2699b67c1bdea4c0f9c1a80a6f85355812678f1fc37ecddfa9e7"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R20m/T32TPT_20210503T101021_TCI_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:20m"
TCI_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R60m/T32TPT_20210503T101021_TCI_60m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210503T101021_TCI_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3764907
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620a8bb22d748d0f6375b7d8f68a0a13b384fff8a28d5ae0be446b4566fc45cd273"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R60m/T32TPT_20210503T101021_TCI_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
WVP_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R10m/T32TPT_20210503T101021_WVP_10m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210503T101021_WVP_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 50890304
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16204a24dccb8aa4d3ebd40405bd316ab64c1b0c59ea0976d7e2c90cb527d83e2255"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R10m/T32TPT_20210503T101021_WVP_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
WVP_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R20m/T32TPT_20210503T101021_WVP_20m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210503T101021_WVP_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 16959793
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620bbbe5f2c3ae6718c27de1da362e588fd32bb2f9007c6960930bc7c86e8a0dc2f"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R20m/T32TPT_20210503T101021_WVP_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
WVP_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R60m/T32TPT_20210503T101021_WVP_60m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210503T101021_WVP_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 2688968
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162014fc051c57e56544fbfa07fdfac991995230b9fb4ed66e9db0601ca8b8ea7ef8"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/IMG_DATA/R60m/T32TPT_20210503T101021_WVP_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
thumbnail
- href "https://datahub.creodias.eu/odata/v1/Assets(c04f0d22-37ea-4785-b374-d4ceaae635e9)/$value"
- type "image/jpeg"
- title "Quicklook"
alternate
s3
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751-ql.jpg"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
auth:refs[] 1 items
- 0 "oidc"
- file:size 46272
- file:checksum "d50110d15d3cdba912db93c23324d7d3e72bb0"
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751-ql.jpg"
- data_type "uint8"
- proj:code None
proj:shape[] 2 items
- 0 343
- 1 343
- alternate:name "HTTPS"
roles[] 2 items
- 0 "thumbnail"
- 1 "overview"
safe_manifest
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/manifest.safe"
- type "application/xml"
- title "manifest.safe"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(manifest.safe)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 69175
- file:checksum "d50110c2337d19f1f7ae3409c7180e0d422b69"
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/manifest.safe"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
granule_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/MTD_TL.xml"
- type "application/xml"
- title "MTD_TL.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes()/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030621_20210503T101204)/Nodes(MTD_TL.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 463387
- file:checksum "d501203dca44d54e7b98b356a61b1a1bf5b155a2a416691fcdb193a11e35615516e45f"
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/GRANULE/L2A_T32TPT_A030621_20210503T101204/MTD_TL.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
inspire_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/INSPIRE.xml"
- type "application/xml"
- title "INSPIRE.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(INSPIRE.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 18902
- file:checksum "d50120b2dec9f92fec47f72f459bdeb926b36d85414924a572af8813a5691bae7477b0"
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/INSPIRE.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
product_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/MTD_MSIL2A.xml"
- type "application/xml"
- title "MTD_MSIL2A.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes(MTD_MSIL2A.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 55130
- file:checksum "d5012046c7c461b9d49e3582bb6c0ec4c55f0d862d88a8e90dc6043e317a663e253ff6"
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/MTD_MSIL2A.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
datastrip_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/05/03/S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/DATASTRIP/DS_S2RP_20230207T103751_S20210503T101204/MTD_DS.xml"
- type "application/xml"
- title "MTD_DS.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3c39f363-068f-4fdc-b01e-c2ce9c7895bb)/Nodes(S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE)/Nodes()/Nodes(DATASTRIP)/Nodes(DS_S2RP_20230207T103751_S20210503T101204)/Nodes(MTD_DS.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 13676571
- file:checksum "d501200c86e5435ec585468c6a8ab362a723f2349b778510abc20c6113ac71fdbe599e"
- file:local_path "S2A_MSIL2A_20210503T101021_N0500_R022_T32TPT_20230207T103751.SAFE/DATASTRIP/DS_S2RP_20230207T103751_S20210503T101204/MTD_DS.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
- collection "sentinel-2-l2a"
19
- type "Feature"
- stac_version "1.1.0"
stac_extensions[] 15 items
- 0 "https://stac-extensions.github.io/eo/v2.0.0/schema.json"
- 1 "https://stac-extensions.github.io/raster/v2.0.0/schema.json"
- 2 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 3 "https://stac-extensions.github.io/projection/v2.0.0/schema.json"
- 4 "https://stac-extensions.github.io/grid/v1.1.0/schema.json"
- 5 "https://stac-extensions.github.io/view/v1.0.0/schema.json"
- 6 "https://stac-extensions.github.io/file/v2.1.0/schema.json"
- 7 "https://stac-extensions.github.io/processing/v1.2.0/schema.json"
- 8 "https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json"
- 9 "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json"
- 10 "https://stac-extensions.github.io/authentication/v1.1.0/schema.json"
- 11 "https://stac-extensions.github.io/classification/v2.0.0/schema.json"
- 12 "https://stac-extensions.github.io/product/v0.1.0/schema.json"
- 13 "https://cs-si.github.io/eopf-stac-extension/v1.2.0/schema.json"
- 14 "https://stac-extensions.github.io/storage/v2.0.0/schema.json"
- id "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 12 items
0[] 2 items
- 0 10.314770270024834
- 1 46.97342467956937
1[] 2 items
- 0 10.328499689540612
- 1 47.011636075806265
2[] 2 items
- 0 10.377948417744529
- 1 47.15901576846981
3[] 2 items
- 0 10.431800218501666
- 1 47.3052292604626
4[] 2 items
- 0 10.483879611280951
- 1 47.45197196273937
5[] 2 items
- 0 10.536451095697853
- 1 47.598618503525216
6[] 2 items
- 0 10.589457912110548
- 1 47.74513034745854
7[] 2 items
- 0 10.624384462050402
- 1 47.84073029523616
8[] 2 items
- 0 11.802846682924509
- 1 47.81947440295927
9[] 2 items
- 0 11.751084998620154
- 1 46.83262831925138
10[] 2 items
- 0 10.31188688551243
- 1 46.85818197246455
11[] 2 items
- 0 10.314770270024834
- 1 46.97342467956937
bbox[] 4 items
- 0 10.311887
- 1 46.832628
- 2 11.802847
- 3 47.84073
properties
- gsd 10
- created "2023-05-31T14:26:55.552000Z"
- updated "2024-04-30T15:18:36.902202Z"
- datetime "2021-04-28T10:05:49.024000Z"
- platform "sentinel-2b"
- grid:code "MGRS-32TPT"
- published "2023-06-06T14:57:52.930049Z"
statistics
- water 0.585095
- nodata 9.058304
- dark_area 2.987492
- vegetation 21.172267
- thin_cirrus 1.264104
- cloud_shadow 2.11792
- unclassified 1.736784
- not_vegetated 6.812439
- high_proba_clouds 30.535576
- medium_proba_clouds 11.144853
- saturated_defective 0.0
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 "2021-04-28T10:05:49.024Z"
- product:type "S2MSI2A"
- view:azimuth 105.11854611996131
- constellation "sentinel-2"
- eo:snow_cover 21.64
- eo:cloud_cover 42.94
- start_datetime "2021-04-28T10:05:49.024Z"
- sat:orbit_state "descending"
storage:schemes
cdse-s3
- 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. A Global Service Load Balancer (GSLB) directs the request to either CloudFerro Cloud or OpenTelekom Cloud (OTC) S3 endpoint based on the location of the DNS resolver."
- requester_pays False
creodias-s3
- 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 "GS2B_20210428T100549_021641_N05.00"
- processing:level "L2"
- view:sun_azimuth 156.06968587532
- eopf:datastrip_id "S2B_OPER_MSI_L2A_DS_S2RP_20230512T050541_S20210428T101657_N05.00"
- processing:version "05.00"
- product:timeliness "PT24H"
- sat:absolute_orbit 21641
- sat:relative_orbit 22
- view:sun_elevation 54.9783514413468
- processing:datetime "2023-05-12T05:05:41.000000Z"
- processing:facility "ESA"
- eopf:instrument_mode "INS-NOBS"
- eopf:origin_datetime "2023-05-31T14:26:55.552000Z"
- view:incidence_angle 7.930803948408229
- product:timeliness_category "NRT"
- sat:platform_international_designator "2017-013A"
links[] 5 items
0
- rel "collection"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
1
- rel "parent"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
2
- rel "root"
- href "https://stac.dataspace.copernicus.eu/v1/"
- type "application/json"
- title "cdse-stac"
3
- rel "self"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541"
- type "application/geo+json"
4
- rel "version-history"
- href "https://trace.dataspace.copernicus.eu/api/v1/traces/name/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE.zip"
- type "application/json"
- title "Product history record from the CDSE traceability service"
assets
AOT_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R10m/T32TPT_20210428T100549_AOT_10m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210428T100549_AOT_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 7029183
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162007a3614699fa5acc00e6c806531cd3cdf6c85929fa57165205eb191c88c944b7"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R10m/T32TPT_20210428T100549_AOT_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
AOT_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R20m/T32TPT_20210428T100549_AOT_20m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210428T100549_AOT_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 4659726
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162066e3bc3ee583b47a06c6e9954437dead6a20b4890690d9f2b3ab40ec3181d5ab"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R20m/T32TPT_20210428T100549_AOT_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
AOT_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R60m/T32TPT_20210428T100549_AOT_60m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210428T100549_AOT_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 964591
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16204c6b5eb18dd44703c04eeecaf7a3de6f53879b00950affe303561bf4d9f112e9"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R60m/T32TPT_20210428T100549_AOT_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
B01_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R20m/T32TPT_20210428T100549_B01_20m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.442
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210428T100549_B01_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 27647809
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.010322762728
- file:checksum "16200106593ca4cdfe561df0a872ed2d7256d52a73ea87241393d53ada903423d233"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R20m/T32TPT_20210428T100549_B01_20m.jp2"
- view:incidence_angle 8.02671380839583
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:upsampled"
- 3 "gsd:20m"
B01_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R60m/T32TPT_20210428T100549_B01_60m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.442
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210428T100549_B01_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3754721
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.010322762728
- file:checksum "162008fd7c75bffde1c76f9f1630ea67ab12670b84488d82bf1478cd6c82bb197177"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R60m/T32TPT_20210428T100549_B01_60m.jp2"
- view:incidence_angle 8.02671380839583
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B02_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R10m/T32TPT_20210428T100549_B02_10m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210428T100549_B02_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 131019546
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.253577736147
- file:checksum "162010de9e7d5f0d89254e7cb2e596ddfeca76f998bca6625b7f9473b6d93bb38443"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R10m/T32TPT_20210428T100549_B02_10m.jp2"
- view:incidence_angle 7.81859934356973
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B02_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R20m/T32TPT_20210428T100549_B02_20m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210428T100549_B02_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33770221
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.253577736147
- file:checksum "162012a120acc480152b1d280317365921d8806ed4387085500040af9cf603f0a664"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R20m/T32TPT_20210428T100549_B02_20m.jp2"
- view:incidence_angle 7.81859934356973
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B02_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R60m/T32TPT_20210428T100549_B02_60m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210428T100549_B02_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3739273
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.253577736147
- file:checksum "16202c2e76cfc3c2193fbd6c4734fd49a3e9fc4a577c47dd7b3c7c92deae1319584d"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R60m/T32TPT_20210428T100549_B02_60m.jp2"
- view:incidence_angle 7.81859934356973
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B03_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R10m/T32TPT_20210428T100549_B03_10m.jp2"
- type "image/jp2"
- title "Green (band 3) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210428T100549_B03_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 129893968
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.19400797401
- file:checksum "16203a6eba6730f3dd0aced7355cfac91decc47e3bb7dfc29a82f5b320174841fb47"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R10m/T32TPT_20210428T100549_B03_10m.jp2"
- view:incidence_angle 7.85333967185337
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B03_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R20m/T32TPT_20210428T100549_B03_20m.jp2"
- type "image/jp2"
- title "Green (band 3) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210428T100549_B03_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33874870
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.19400797401
- file:checksum "1620462f70df2377af4a267a7433c3c2a9e7db3646de58b62c3a08f2bbd95ce6fd69"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R20m/T32TPT_20210428T100549_B03_20m.jp2"
- view:incidence_angle 7.85333967185337
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B03_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R60m/T32TPT_20210428T100549_B03_60m.jp2"
- type "image/jp2"
- title "Green (band 3) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210428T100549_B03_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3739864
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.19400797401
- file:checksum "1620a73eca8cc86c26af64537c9a2ac6165ae1f119aab66876307f78bcc615a6aa53"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R60m/T32TPT_20210428T100549_B03_60m.jp2"
- view:incidence_angle 7.85333967185337
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B04_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R10m/T32TPT_20210428T100549_B04_10m.jp2"
- type "image/jp2"
- title "Red (band 4) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210428T100549_B04_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 129024969
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.128331396905
- file:checksum "16205b22514e878d22fcdf5b8d25457f24b9d648b2f9dee22f0456866e13b36379e8"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R10m/T32TPT_20210428T100549_B04_10m.jp2"
- view:incidence_angle 7.88730064153661
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B04_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R20m/T32TPT_20210428T100549_B04_20m.jp2"
- type "image/jp2"
- title "Red (band 4) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210428T100549_B04_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33731529
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.128331396905
- file:checksum "162079deb4d0d6555c4f329a9d68bb6ef4c729efa7a3fc2360178edc71448adedbc2"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R20m/T32TPT_20210428T100549_B04_20m.jp2"
- view:incidence_angle 7.88730064153661
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B04_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R60m/T32TPT_20210428T100549_B04_60m.jp2"
- type "image/jp2"
- title "Red (band 4) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210428T100549_B04_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3738724
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.128331396905
- file:checksum "16200c06a516383a0742f326a468a7398722d6c0b15dc6aae394212aa61e87bbb4c7"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R60m/T32TPT_20210428T100549_B04_60m.jp2"
- view:incidence_angle 7.88730064153661
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B05_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R20m/T32TPT_20210428T100549_B05_20m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210428T100549_B05_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33804449
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.137078830629
- file:checksum "162087f9adfc061308a6c842ff116d58216ad70aa7f5cb7954d4d95712986fa8e9a3"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R20m/T32TPT_20210428T100549_B05_20m.jp2"
- view:incidence_angle 7.91372607736765
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B05_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R60m/T32TPT_20210428T100549_B05_60m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210428T100549_B05_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3737891
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.137078830629
- file:checksum "162016effeb0b6282f5b0d8d9be5701411f0d3281caf6f33865bb35bcabb27f7a91a"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R60m/T32TPT_20210428T100549_B05_60m.jp2"
- view:incidence_angle 7.91372607736765
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B06_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R20m/T32TPT_20210428T100549_B06_20m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 20m"
- description "S3 storage provided by CloudFerro Cloud and OpenTelekom Cloud (OTC). Use endpoint URL `https://eodata.dataspace.copernicus.eu`."
bands[] 1 items
0
- eo:center_wavelength 0.739
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210428T100549_B06_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33802066
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.059195258668
- file:checksum "16200fb17d149df00192c598cea56e44a2be435da273e79e4385d66217061643cbbe"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R20m/T32TPT_20210428T100549_B06_20m.jp2"
- view:incidence_angle 7.93496152358376
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B06_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R60m/T32TPT_20210428T100549_B06_60m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.739
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210428T100549_B06_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3767597
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.059195258668
- file:checksum "1620bc46fe66d3828b5214bb8134a456054bb55826b2f215aefc40913c649ec18b48"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R60m/T32TPT_20210428T100549_B06_60m.jp2"
- view:incidence_angle 7.93496152358376
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B07_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R20m/T32TPT_20210428T100549_B07_20m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.78
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210428T100549_B07_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33844306
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.032254575406
- file:checksum "1620c3c55a8947d631d3cd9f3415c8dd48f02da70b76d779933b1962b62074eb6107"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R20m/T32TPT_20210428T100549_B07_20m.jp2"
- view:incidence_angle 7.96280320125137
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B07_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R60m/T32TPT_20210428T100549_B07_60m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.78
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210428T100549_B07_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3768210
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.032254575406
- file:checksum "1620f977def4d5ead17e28ce6c741233bbaab6ee752fae21e46e542dc789d881b2a9"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R60m/T32TPT_20210428T100549_B07_60m.jp2"
- view:incidence_angle 7.96280320125137
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B08_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R10m/T32TPT_20210428T100549_B08_10m.jp2"
- type "image/jp2"
- title "NIR 1 (band 8) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.454
- name "B08"
- eo:common_name "nir"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210428T100549_B08_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 131930348
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.226694615316
- file:checksum "1620cf65c894f82d8fadae57b8d4b7357c65ef9c7195b759892437715e36ab3d40f5"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R10m/T32TPT_20210428T100549_B08_10m.jp2"
- view:incidence_angle 7.83458422625245
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B09_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R60m/T32TPT_20210428T100549_B09_60m.jp2"
- type "image/jp2"
- title "NIR 3 (band 9) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.943
- eo:full_width_half_max 0.479
- name "B09"
- eo:common_name "nir09"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210428T100549_B09_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3749308
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.972714251397
- file:checksum "1620ce6e28395310bd3fa0fbc45f114b59655a63d2574b0da5ddfeeaee5251e7c8da"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R60m/T32TPT_20210428T100549_B09_60m.jp2"
- view:incidence_angle 8.06327266866984
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B11_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R20m/T32TPT_20210428T100549_B11_20m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 20m"
bands[] 1 items
0
- eo:center_wavelength 1.61
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210428T100549_B11_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33900611
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.156560760484
- file:checksum "16204f22549f41faf027c9195210967d3a5e0d74ebac53c8fceeab9781bd7951fb25"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R20m/T32TPT_20210428T100549_B11_20m.jp2"
- view:incidence_angle 7.93492512935108
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B11_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R60m/T32TPT_20210428T100549_B11_60m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 60m"
bands[] 1 items
0
- eo:center_wavelength 1.61
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210428T100549_B11_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3760817
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.156560760484
- file:checksum "1620f433e5879229425e235c068b2549f8d9b067dd80fc5948dc2d6fc7f42b57fe2c"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R60m/T32TPT_20210428T100549_B11_60m.jp2"
- view:incidence_angle 7.93492512935108
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B12_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R20m/T32TPT_20210428T100549_B12_20m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 20m"
bands[] 1 items
0
- eo:center_wavelength 2.186
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210428T100549_B12_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33518654
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.118781357986
- file:checksum "162075d6d0a65a062e5c978d9506a0e23d050f7449f16428a3ff7212f40434ecba4b"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R20m/T32TPT_20210428T100549_B12_20m.jp2"
- view:incidence_angle 8.00067385692754
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B12_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R60m/T32TPT_20210428T100549_B12_60m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 60m"
bands[] 1 items
0
- eo:center_wavelength 2.186
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210428T100549_B12_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3748209
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.118781357986
- file:checksum "16206b74f201b454daa1c45325001276e7402719ed76db60bbd8fa698b808e4edce5"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R60m/T32TPT_20210428T100549_B12_60m.jp2"
- view:incidence_angle 8.00067385692754
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B8A_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R20m/T32TPT_20210428T100549_B8A_20m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.864
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210428T100549_B8A_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33890869
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.994223160431
- file:checksum "1620037d23ed7a74d02ccc5c9229ad4066b8d5f3d7ab32263a86906ba636c12dbbec"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R20m/T32TPT_20210428T100549_B8A_20m.jp2"
- view:incidence_angle 7.99319308316946
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B8A_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R60m/T32TPT_20210428T100549_B8A_60m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.864
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210428T100549_B8A_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3773710
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.994223160431
- file:checksum "16201fc800a3e44579c77b8b2bd4468bc776e99217678442a3268b2e19b84daa24d3"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R60m/T32TPT_20210428T100549_B8A_60m.jp2"
- view:incidence_angle 7.99319308316946
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
Product
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/$value"
- type "application/zip"
- title "Zipped product"
auth:refs[] 1 items
- 0 "oidc"
- file:size 1163902060
- storage:refs "𒍟※"
- file:checksum "d501102392aad49a42f5932afb32c5b32afafe"
- alternate:name "HTTPS"
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE.zip"
roles[] 3 items
- 0 "data"
- 1 "metadata"
- 2 "archive"
SCL_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R20m/T32TPT_20210428T100549_SCL_20m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210428T100549_SCL_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3202547
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620af088310d0cbf95ee8eb5163dce4c87bd76bbd61bee816baa7602ab170d9b381"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R20m/T32TPT_20210428T100549_SCL_20m.jp2"
classification:classes[] 12 items
0
- percentage 9.058304
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
- percentage 0.0
2
- percentage 2.987492
- name "dark_area_pixels"
- value 2
3
- percentage 2.11792
- name "cloud_shadows"
- value 3
4
- percentage 21.172267
- name "vegetation"
- value 4
5
- percentage 6.812439
- name "not_vegetated"
- value 5
6
- percentage 0.585095
- name "water"
- value 6
7
- percentage 1.736784
- name "unclassified"
- value 7
8
- percentage 11.144853
- name "cloud_medium_probability"
- value 8
9
- percentage 30.535576
- name "cloud_high_probability"
- value 9
10
- percentage 1.264104
- name "thin_cirrus"
- value 10
11
- percentage 21.643472
- name "snow"
- value 11
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "data"
- 1 "sampling:original"
- 2 "gsd:20m"
SCL_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R60m/T32TPT_20210428T100549_SCL_60m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210428T100549_SCL_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 767584
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16208ad7beb1fb7062e79b9ad26bd7f9eabd020c14d44fd630f28d0abc885c59865e"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R60m/T32TPT_20210428T100549_SCL_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
classification:classes[] 12 items
0
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
2
- name "dark_area_pixels"
- value 2
3
- name "cloud_shadows"
- value 3
4
- name "vegetation"
- value 4
5
- name "not_vegetated"
- value 5
6
- name "water"
- value 6
7
- name "unclassified"
- value 7
8
- name "cloud_medium_probability"
- value 8
9
- name "cloud_high_probability"
- value 9
10
- name "thin_cirrus"
- value 10
11
- name "snow"
- value 11
roles[] 3 items
- 0 "data"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
TCI_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R10m/T32TPT_20210428T100549_TCI_10m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210428T100549_TCI_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 113486937
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620a6ce7605c857f315745f504a43c45f0c7028f926f4509d11d50b3ab268f23de0"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R10m/T32TPT_20210428T100549_TCI_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 10980
- 1 10980
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:original"
- 2 "gsd:10m"
TCI_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R20m/T32TPT_20210428T100549_TCI_20m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210428T100549_TCI_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 31206677
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16203e7a2473b0538e330e4274194a4106153aa10110b5488ef3d795de51a0e53d62"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R20m/T32TPT_20210428T100549_TCI_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:20m"
TCI_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R60m/T32TPT_20210428T100549_TCI_60m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210428T100549_TCI_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3734345
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162039c0eadca8e1050a6f186933b32b4fff3ae3140469c70d676c7c29083c14a513"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R60m/T32TPT_20210428T100549_TCI_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
WVP_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R10m/T32TPT_20210428T100549_WVP_10m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210428T100549_WVP_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 52136531
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16202a478f85521092b0f0167b6f162251ef6e2395631062da53dbdc8eab5cd6b37e"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R10m/T32TPT_20210428T100549_WVP_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
WVP_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R20m/T32TPT_20210428T100549_WVP_20m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210428T100549_WVP_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 17011161
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16205dcbccd0e20db4c69f4b558d967b7945697359240bb590bf8098338bb44fe1fd"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R20m/T32TPT_20210428T100549_WVP_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
WVP_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R60m/T32TPT_20210428T100549_WVP_60m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210428T100549_WVP_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 2625445
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620792d00aa65c12282d3910aa6e92b2ff8b9a7191f78a5106771e97392cc90757c"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/IMG_DATA/R60m/T32TPT_20210428T100549_WVP_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
thumbnail
- href "https://datahub.creodias.eu/odata/v1/Assets(a7c90356-18b3-4d2b-979c-75fc22516d73)/$value"
- type "image/jpeg"
- title "Quicklook"
alternate
s3
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541-ql.jpg"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
auth:refs[] 1 items
- 0 "oidc"
- file:size 42391
- file:checksum "d5011086c4d2bf8b87125941729dd12bc27fb5"
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541-ql.jpg"
- data_type "uint8"
- proj:code None
proj:shape[] 2 items
- 0 343
- 1 343
- alternate:name "HTTPS"
roles[] 2 items
- 0 "thumbnail"
- 1 "overview"
safe_manifest
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/manifest.safe"
- type "application/xml"
- title "manifest.safe"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(manifest.safe)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 69173
- file:checksum "d501109366d5f973663f2f51675b1fdaa0122c"
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/manifest.safe"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
granule_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/MTD_TL.xml"
- type "application/xml"
- title "MTD_TL.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes()/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021641_20210428T101657)/Nodes(MTD_TL.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 463564
- file:checksum "d5012066a7cfa7612d5c665312f9397330802df511e0710640c96ef0b1e82e3c52767c"
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/GRANULE/L2A_T32TPT_A021641_20210428T101657/MTD_TL.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
inspire_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/INSPIRE.xml"
- type "application/xml"
- title "INSPIRE.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(INSPIRE.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 18906
- file:checksum "d50120add7c2088759306676880508a159f49195ce54cc794fd128cf0560c2538b6125"
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/INSPIRE.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
product_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/MTD_MSIL2A.xml"
- type "application/xml"
- title "MTD_MSIL2A.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes(MTD_MSIL2A.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 54980
- file:checksum "d50120adc918897a0e13887e757e0040b98061af2d6832f3c4998ac8b9afebed2ab6c5"
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/MTD_MSIL2A.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
datastrip_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/28/S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/DATASTRIP/DS_S2RP_20230512T050541_S20210428T101657/MTD_DS.xml"
- type "application/xml"
- title "MTD_DS.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(c59608cb-17b3-43f3-9810-4c0ee6222c40)/Nodes(S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE)/Nodes()/Nodes(DATASTRIP)/Nodes(DS_S2RP_20230512T050541_S20210428T101657)/Nodes(MTD_DS.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 17649258
- file:checksum "d501207f92fe916a4f492d3d2b9ba954117e4ac0b4afecccc880a6de62b0eadff9f65b"
- file:local_path "S2B_MSIL2A_20210428T100549_N0500_R022_T32TPT_20230512T050541.SAFE/DATASTRIP/DS_S2RP_20230512T050541_S20210428T101657/MTD_DS.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
- collection "sentinel-2-l2a"
20
- type "Feature"
- stac_version "1.1.0"
stac_extensions[] 15 items
- 0 "https://stac-extensions.github.io/eo/v2.0.0/schema.json"
- 1 "https://stac-extensions.github.io/raster/v2.0.0/schema.json"
- 2 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 3 "https://stac-extensions.github.io/projection/v2.0.0/schema.json"
- 4 "https://stac-extensions.github.io/grid/v1.1.0/schema.json"
- 5 "https://stac-extensions.github.io/view/v1.0.0/schema.json"
- 6 "https://stac-extensions.github.io/file/v2.1.0/schema.json"
- 7 "https://stac-extensions.github.io/processing/v1.2.0/schema.json"
- 8 "https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json"
- 9 "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json"
- 10 "https://stac-extensions.github.io/authentication/v1.1.0/schema.json"
- 11 "https://stac-extensions.github.io/classification/v2.0.0/schema.json"
- 12 "https://stac-extensions.github.io/product/v0.1.0/schema.json"
- 13 "https://cs-si.github.io/eopf-stac-extension/v1.2.0/schema.json"
- 14 "https://stac-extensions.github.io/storage/v2.0.0/schema.json"
- id "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 13 items
0[] 2 items
- 0 10.31371037424414
- 1 46.93106291391142
1[] 2 items
- 0 10.319606931945064
- 1 46.94691996413248
2[] 2 items
- 0 10.372023472159205
- 1 47.09340137698272
3[] 2 items
- 0 10.421624457133468
- 1 47.240618516976646
4[] 2 items
- 0 10.476326691239084
- 1 47.3863901862746
5[] 2 items
- 0 10.526673850690836
- 1 47.533313979720646
6[] 2 items
- 0 10.579233692390044
- 1 47.67977137592367
7[] 2 items
- 0 10.632560188283673
- 1 47.82619936335284
8[] 2 items
- 0 10.63782058634109
- 1 47.84048794821351
9[] 2 items
- 0 11.802846682924509
- 1 47.81947440295927
10[] 2 items
- 0 11.751084998620154
- 1 46.83262831925138
11[] 2 items
- 0 10.31188688551243
- 1 46.85818197246455
12[] 2 items
- 0 10.31371037424414
- 1 46.93106291391142
bbox[] 4 items
- 0 10.311887
- 1 46.832628
- 2 11.802847
- 3 47.840488
properties
- gsd 10
- created "2023-06-05T22:26:58.060000Z"
- updated "2024-05-06T07:29:09.374451Z"
- datetime "2021-04-23T10:10:21.024000Z"
- platform "sentinel-2a"
- grid:code "MGRS-32TPT"
- published "2023-06-07T21:28:59.324895Z"
statistics
- water 0.857674
- nodata 9.639984
- dark_area 5.218234
- vegetation 34.706536
- thin_cirrus 0.082425
- cloud_shadow 0.704442
- unclassified 0.369042
- not_vegetated 9.500962
- high_proba_clouds 1.971015
- medium_proba_clouds 1.8998259999999998
- saturated_defective 0.0
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 "2021-04-23T10:10:21.024Z"
- product:type "S2MSI2A"
- view:azimuth 104.19939973447184
- constellation "sentinel-2"
- eo:snow_cover 44.69
- eo:cloud_cover 3.95
- start_datetime "2021-04-23T10:10:21.024Z"
- sat:orbit_state "descending"
storage:schemes
cdse-s3
- 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. A Global Service Load Balancer (GSLB) directs the request to either CloudFerro Cloud or OpenTelekom Cloud (OTC) S3 endpoint based on the location of the DNS resolver."
- requester_pays False
creodias-s3
- 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 "GS2A_20210423T101021_030478_N05.00"
- processing:level "L2"
- view:sun_azimuth 156.514205668443
- eopf:datastrip_id "S2A_OPER_MSI_L2A_DS_S2RP_20230512T194503_S20210423T101704_N05.00"
- processing:version "05.00"
- product:timeliness "PT24H"
- sat:absolute_orbit 30478
- sat:relative_orbit 22
- view:sun_elevation 53.3762053973161
- processing:datetime "2023-05-12T19:45:03.000000Z"
- processing:facility "ESA"
- eopf:instrument_mode "INS-NOBS"
- eopf:origin_datetime "2023-06-05T22:26:58.060000Z"
- view:incidence_angle 7.962124711927258
- product:timeliness_category "NRT"
- sat:platform_international_designator "2015-028A"
links[] 5 items
0
- rel "collection"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
1
- rel "parent"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
2
- rel "root"
- href "https://stac.dataspace.copernicus.eu/v1/"
- type "application/json"
- title "cdse-stac"
3
- rel "self"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503"
- type "application/geo+json"
4
- rel "version-history"
- href "https://trace.dataspace.copernicus.eu/api/v1/traces/name/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE.zip"
- type "application/json"
- title "Product history record from the CDSE traceability service"
assets
AOT_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R10m/T32TPT_20210423T101021_AOT_10m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210423T101021_AOT_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 5758725
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620ca55afac909a7bd595bb76c10d622a9b67984ceed85e65bd27bb532e5363f569"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R10m/T32TPT_20210423T101021_AOT_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
AOT_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R20m/T32TPT_20210423T101021_AOT_20m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210423T101021_AOT_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 4111440
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620a5f5c6de061fbe6b4db9a1ee223a9c43cd70cd5746ea7ae6f921a630f7a4331e"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R20m/T32TPT_20210423T101021_AOT_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
AOT_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R60m/T32TPT_20210423T101021_AOT_60m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210423T101021_AOT_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 907747
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620d44a0e4e2f2c2a01442ad9a88938e3aacb82e205431ce80ed213b13448d23665"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R60m/T32TPT_20210423T101021_AOT_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
B01_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R20m/T32TPT_20210423T101021_B01_20m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.443
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210423T101021_B01_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 27639352
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.146686265768
- file:checksum "16209f3c137f4ef0f10f91cbda114fbc5cbf56df232c099ca5b1665fc07d569dafc9"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R20m/T32TPT_20210423T101021_B01_20m.jp2"
- view:incidence_angle 8.05510251900587
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:upsampled"
- 3 "gsd:20m"
B01_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R60m/T32TPT_20210423T101021_B01_60m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.443
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210423T101021_B01_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3757766
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.146686265768
- file:checksum "16208cdf8a959a2ccde47685f9afbfee38ad5c8267da278cd0042c9a587fdf2d077f"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R60m/T32TPT_20210423T101021_B01_60m.jp2"
- view:incidence_angle 8.05510251900587
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B02_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R10m/T32TPT_20210423T101021_B02_10m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210423T101021_B02_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135349473
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.301871755272
- file:checksum "1620bc57bd2d3f0f5584383122b46c54ca1634518a906e40e27f520d97786b7ec8a4"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R10m/T32TPT_20210423T101021_B02_10m.jp2"
- view:incidence_angle 7.8631117348923
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B02_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R20m/T32TPT_20210423T101021_B02_20m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210423T101021_B02_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33874632
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.301871755272
- file:checksum "1620ec7825046e501d36885ad3908a4bbf516120b79d143700a3a829a6829787adc8"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R20m/T32TPT_20210423T101021_B02_20m.jp2"
- view:incidence_angle 7.8631117348923
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B02_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R60m/T32TPT_20210423T101021_B02_60m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210423T101021_B02_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3739585
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.301871755272
- file:checksum "16203c6d801a034de11e5a657029964f3bb435d7fc170d7fe5e5d5c2c2b5911aa19b"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R60m/T32TPT_20210423T101021_B02_60m.jp2"
- view:incidence_angle 7.8631117348923
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B03_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R10m/T32TPT_20210423T101021_B03_10m.jp2"
- type "image/jp2"
- title "Green (band 3) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210423T101021_B03_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135069322
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.28538662961
- file:checksum "1620274e8b2ef7941a7ce99fb5a0df5ac000156effac84677672d0397050b653aecd"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R10m/T32TPT_20210423T101021_B03_10m.jp2"
- view:incidence_angle 7.88191839878188
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B03_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R20m/T32TPT_20210423T101021_B03_20m.jp2"
- type "image/jp2"
- title "Green (band 3) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210423T101021_B03_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33729966
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.28538662961
- file:checksum "1620d955f6cccbef28d7f27247969b2e862fff7bcdceff1c43e08e6e7482a32e8af3"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R20m/T32TPT_20210423T101021_B03_20m.jp2"
- view:incidence_angle 7.88191839878188
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B03_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R60m/T32TPT_20210423T101021_B03_60m.jp2"
- type "image/jp2"
- title "Green (band 3) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210423T101021_B03_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3738939
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.28538662961
- file:checksum "1620ba5ed6c059151530c1e8ba71597fea3f2bb5a0673270c3bf02bcee7d86aab36b"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R60m/T32TPT_20210423T101021_B03_60m.jp2"
- view:incidence_angle 7.88191839878188
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B04_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R10m/T32TPT_20210423T101021_B04_10m.jp2"
- type "image/jp2"
- title "Red (band 4) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210423T101021_B04_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 134962769
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.225909177239
- file:checksum "1620480a490f5bbe2ed67a3be0894cdff93c66a4f1875cddc419fafc4c3eae6b214f"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R10m/T32TPT_20210423T101021_B04_10m.jp2"
- view:incidence_angle 7.92368332570252
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B04_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R20m/T32TPT_20210423T101021_B04_20m.jp2"
- type "image/jp2"
- title "Red (band 4) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210423T101021_B04_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33815662
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.225909177239
- file:checksum "16208ec861471e382366c0308c77770b20a4f4369e28c53c3a8373f61f7d00ab77de"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R20m/T32TPT_20210423T101021_B04_20m.jp2"
- view:incidence_angle 7.92368332570252
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B04_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R60m/T32TPT_20210423T101021_B04_60m.jp2"
- type "image/jp2"
- title "Red (band 4) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210423T101021_B04_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3767866
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.225909177239
- file:checksum "162091fea371093e7fcc901cc2b247290e1a0df399c54b1c1e1612028e3e07d37988"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R60m/T32TPT_20210423T101021_B04_60m.jp2"
- view:incidence_angle 7.92368332570252
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B05_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R20m/T32TPT_20210423T101021_B05_20m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210423T101021_B05_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33775543
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.220836554871
- file:checksum "162080b1b15753789c3cb9c6a19ced9ac92959335462791dc2b86873177999518ea2"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R20m/T32TPT_20210423T101021_B05_20m.jp2"
- view:incidence_angle 7.93819062920265
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B05_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R60m/T32TPT_20210423T101021_B05_60m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210423T101021_B05_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3764685
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.220836554871
- file:checksum "1620142950a327bbb37d0e4b616efdec0706ac278abf84cb3c0781c3c12981e56872"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R60m/T32TPT_20210423T101021_B05_60m.jp2"
- view:incidence_angle 7.93819062920265
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B06_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R20m/T32TPT_20210423T101021_B06_20m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 20m"
- description "S3 storage provided by CloudFerro Cloud and OpenTelekom Cloud (OTC). Use endpoint URL `https://eodata.dataspace.copernicus.eu`."
bands[] 1 items
0
- eo:center_wavelength 0.741
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210423T101021_B06_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33887847
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.149577571652
- file:checksum "1620e5671d8e45e4dcfb9012b46906584cd3c8a0d7161d6b7e6c64487d1bb8be5075"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R20m/T32TPT_20210423T101021_B06_20m.jp2"
- view:incidence_angle 7.96363826815574
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B06_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R60m/T32TPT_20210423T101021_B06_60m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.741
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210423T101021_B06_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3748916
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.149577571652
- file:checksum "16207087a725f6bd2e63f81cf7372b347f8c8aebdafa7b875b80cfe63ef59c794689"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R60m/T32TPT_20210423T101021_B06_60m.jp2"
- view:incidence_angle 7.96363826815574
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B07_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R20m/T32TPT_20210423T101021_B07_20m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210423T101021_B07_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33893018
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.128370338862
- file:checksum "1620f9e1ae90efdea6bd118617467b7fea006c0fe892ec65afe739a8803812e7815c"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R20m/T32TPT_20210423T101021_B07_20m.jp2"
- view:incidence_angle 7.99138739731899
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B07_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R60m/T32TPT_20210423T101021_B07_60m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210423T101021_B07_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3749200
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.128370338862
- file:checksum "1620f6158bd1e2ef5a9ff1e55178287875cb8ded3f9dd10d3a6bed56920f831d4629"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R60m/T32TPT_20210423T101021_B07_60m.jp2"
- view:incidence_angle 7.99138739731899
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B08_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R10m/T32TPT_20210423T101021_B08_10m.jp2"
- type "image/jp2"
- title "NIR 1 (band 8) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.454
- name "B08"
- eo:common_name "nir"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210423T101021_B08_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135630707
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.303272126968
- file:checksum "1620ee9bb0e8c3a80838a31076b436429ea3f513eed7ba5e57dd58f0237bbe835351"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R10m/T32TPT_20210423T101021_B08_10m.jp2"
- view:incidence_angle 7.86727410357518
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B09_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R60m/T32TPT_20210423T101021_B09_60m.jp2"
- type "image/jp2"
- title "NIR 3 (band 9) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.945
- eo:full_width_half_max 0.479
- name "B09"
- eo:common_name "nir09"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210423T101021_B09_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3739966
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.094992262482
- file:checksum "16206241b8d1cfc9f7e74dbd3cb7fcb19cb276940ae566ac371a18c62a0ffeefb41b"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R60m/T32TPT_20210423T101021_B09_60m.jp2"
- view:incidence_angle 8.09546222316292
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B11_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R20m/T32TPT_20210423T101021_B11_20m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 20m"
bands[] 1 items
0
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210423T101021_B11_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33416641
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.194427203176
- file:checksum "1620ffc15521f6a6a321ae610efb166357c90e73dc19f8a9ade69b3735da1b17a09f"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R20m/T32TPT_20210423T101021_B11_20m.jp2"
- view:incidence_angle 7.95841813353754
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B11_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R60m/T32TPT_20210423T101021_B11_60m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 60m"
bands[] 1 items
0
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210423T101021_B11_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3746375
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.194427203176
- file:checksum "1620821ca7f587f0f7b26fb0cf85e1f66810313fcb64c9d0ccffa858d0e365dd19f9"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R60m/T32TPT_20210423T101021_B11_60m.jp2"
- view:incidence_angle 7.95841813353754
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B12_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R20m/T32TPT_20210423T101021_B12_20m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 20m"
bands[] 1 items
0
- eo:center_wavelength 2.202
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210423T101021_B12_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 32556003
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.175177304436
- file:checksum "1620fb8833196b852a539631603d1fa8e824d3ce0dcb57360898417b28eff124bed7"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R20m/T32TPT_20210423T101021_B12_20m.jp2"
- view:incidence_angle 8.03555401298184
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B12_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R60m/T32TPT_20210423T101021_B12_60m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 60m"
bands[] 1 items
0
- eo:center_wavelength 2.202
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210423T101021_B12_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3738338
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.175177304436
- file:checksum "16205c07f736d1d0d394afcfe9067fd626315234d7e18899244eeba6279849211d42"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R60m/T32TPT_20210423T101021_B12_60m.jp2"
- view:incidence_angle 8.03555401298184
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B8A_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R20m/T32TPT_20210423T101021_B8A_20m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210423T101021_B8A_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33795366
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.096328904964
- file:checksum "16203c592c27aff8152e1cf70095044dd316b8314ea6d8c7b8e68c9dc053e92502c5"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R20m/T32TPT_20210423T101021_B8A_20m.jp2"
- view:incidence_angle 8.02170442975116
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B8A_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R60m/T32TPT_20210423T101021_B8A_60m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210423T101021_B8A_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3754135
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 104.096328904964
- file:checksum "1620eb7fcc90f86210b784b35b794a5f04accb7b45ff268a1ca1234b0b72992e3446"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R60m/T32TPT_20210423T101021_B8A_60m.jp2"
- view:incidence_angle 8.02170442975116
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
Product
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/$value"
- type "application/zip"
- title "Zipped product"
auth:refs[] 1 items
- 0 "oidc"
- file:size 1250975500
- storage:refs "𒍟※"
- file:checksum "d50110cf17f3c56aa35892e83bd22987332962"
- alternate:name "HTTPS"
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE.zip"
roles[] 3 items
- 0 "data"
- 1 "metadata"
- 2 "archive"
SCL_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R20m/T32TPT_20210423T101021_SCL_20m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210423T101021_SCL_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3755188
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620792d52b51dc5ecd4f318dc31c21df8ee6037889d51a5e6fca241bfd0fa141d56"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R20m/T32TPT_20210423T101021_SCL_20m.jp2"
classification:classes[] 12 items
0
- percentage 9.639984
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
- percentage 0.0
2
- percentage 5.218234
- name "dark_area_pixels"
- value 2
3
- percentage 0.704442
- name "cloud_shadows"
- value 3
4
- percentage 34.706536
- name "vegetation"
- value 4
5
- percentage 9.500962
- name "not_vegetated"
- value 5
6
- percentage 0.857674
- name "water"
- value 6
7
- percentage 0.369042
- name "unclassified"
- value 7
8
- percentage 1.8998259999999998
- name "cloud_medium_probability"
- value 8
9
- percentage 1.971015
- name "cloud_high_probability"
- value 9
10
- percentage 0.082425
- name "thin_cirrus"
- value 10
11
- percentage 44.689843
- name "snow"
- value 11
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "data"
- 1 "sampling:original"
- 2 "gsd:20m"
SCL_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R60m/T32TPT_20210423T101021_SCL_60m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210423T101021_SCL_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 871510
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16201e4899da31b626dc6b6bdf41e38f08f2e6e06862b151d91e096d78932bdc4d3a"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R60m/T32TPT_20210423T101021_SCL_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
classification:classes[] 12 items
0
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
2
- name "dark_area_pixels"
- value 2
3
- name "cloud_shadows"
- value 3
4
- name "vegetation"
- value 4
5
- name "not_vegetated"
- value 5
6
- name "water"
- value 6
7
- name "unclassified"
- value 7
8
- name "cloud_medium_probability"
- value 8
9
- name "cloud_high_probability"
- value 9
10
- name "thin_cirrus"
- value 10
11
- name "snow"
- value 11
roles[] 3 items
- 0 "data"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
TCI_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R10m/T32TPT_20210423T101021_TCI_10m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210423T101021_TCI_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135201531
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16205c59f4434ffeb6e761d1c37c6e10bb1f616ff3aec9d861717a1dd1500a406ce5"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R10m/T32TPT_20210423T101021_TCI_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 10980
- 1 10980
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:original"
- 2 "gsd:10m"
TCI_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R20m/T32TPT_20210423T101021_TCI_20m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210423T101021_TCI_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33787255
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16204d7b92eafc1a32bff8e6a9e2d204c875c858c83763b36557b06b6b7f37480a1b"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R20m/T32TPT_20210423T101021_TCI_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:20m"
TCI_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R60m/T32TPT_20210423T101021_TCI_60m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210423T101021_TCI_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3770257
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16206b7f9b9a9bd9a1f3e97ee08d4506061c3aa0a11c897757a8f8d784f14dd99a9e"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R60m/T32TPT_20210423T101021_TCI_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
WVP_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R10m/T32TPT_20210423T101021_WVP_10m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210423T101021_WVP_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 86778600
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620461eb9af25edd8af85c3c04b36e1a100fe5c94f20c78137c46051b77929aa31a"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R10m/T32TPT_20210423T101021_WVP_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
WVP_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R20m/T32TPT_20210423T101021_WVP_20m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210423T101021_WVP_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 27697521
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620913b475f9d707f44483376c60d484fdec0df016bcf206e1714e8c2888072720b"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R20m/T32TPT_20210423T101021_WVP_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
WVP_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R60m/T32TPT_20210423T101021_WVP_60m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210423T101021_WVP_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3765304
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620c6585e35ed9006eefb4b493bc7ca04929027c9dd72cc100879f7dc69c45f25a3"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/IMG_DATA/R60m/T32TPT_20210423T101021_WVP_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
thumbnail
- href "https://datahub.creodias.eu/odata/v1/Assets(956acdd1-1164-4b0a-bc3e-0366241f40ec)/$value"
- type "image/jpeg"
- title "Quicklook"
alternate
s3
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503-ql.jpg"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
auth:refs[] 1 items
- 0 "oidc"
- file:size 47206
- file:checksum "d50110d21fbc2e83d1523fe7e420f3379c190f"
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503-ql.jpg"
- data_type "uint8"
- proj:code None
proj:shape[] 2 items
- 0 343
- 1 343
- alternate:name "HTTPS"
roles[] 2 items
- 0 "thumbnail"
- 1 "overview"
safe_manifest
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/manifest.safe"
- type "application/xml"
- title "manifest.safe"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(manifest.safe)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 69206
- file:checksum "d501104a03a380ea2f4f02375ddc1b1afd09f2"
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/manifest.safe"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
granule_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/MTD_TL.xml"
- type "application/xml"
- title "MTD_TL.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes()/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030478_20210423T101704)/Nodes(MTD_TL.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 463228
- file:checksum "d5012097a1c4078658186fba1e1224e277728abb82460192cb2d1a4cdf09a740150ff3"
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/GRANULE/L2A_T32TPT_A030478_20210423T101704/MTD_TL.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
inspire_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/INSPIRE.xml"
- type "application/xml"
- title "INSPIRE.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(INSPIRE.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 18940
- file:checksum "d50120fac11b7f82af4408304d85f7d45b899302070285bfba18663768d6d2f23df342"
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/INSPIRE.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
product_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/MTD_MSIL2A.xml"
- type "application/xml"
- title "MTD_MSIL2A.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes(MTD_MSIL2A.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 55163
- file:checksum "d50120607acbef9fc7eb68ce20561337e70578cbd351737975410fcca462fa5e6daa2c"
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/MTD_MSIL2A.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
datastrip_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/23/S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/DATASTRIP/DS_S2RP_20230512T194503_S20210423T101704/MTD_DS.xml"
- type "application/xml"
- title "MTD_DS.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(12207188-437a-482a-89a5-be2d4df78d55)/Nodes(S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE)/Nodes()/Nodes(DATASTRIP)/Nodes(DS_S2RP_20230512T194503_S20210423T101704)/Nodes(MTD_DS.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 16858029
- file:checksum "d50120f4f811a7917cd1cf3b42335abdbc497f97916dbe357276611ba9b483e2f8d0a5"
- file:local_path "S2A_MSIL2A_20210423T101021_N0500_R022_T32TPT_20230512T194503.SAFE/DATASTRIP/DS_S2RP_20230512T194503_S20210423T101704/MTD_DS.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
- collection "sentinel-2-l2a"
21
- type "Feature"
- stac_version "1.1.0"
stac_extensions[] 15 items
- 0 "https://stac-extensions.github.io/eo/v2.0.0/schema.json"
- 1 "https://stac-extensions.github.io/raster/v2.0.0/schema.json"
- 2 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 3 "https://stac-extensions.github.io/projection/v2.0.0/schema.json"
- 4 "https://stac-extensions.github.io/grid/v1.1.0/schema.json"
- 5 "https://stac-extensions.github.io/view/v1.0.0/schema.json"
- 6 "https://stac-extensions.github.io/file/v2.1.0/schema.json"
- 7 "https://stac-extensions.github.io/processing/v1.2.0/schema.json"
- 8 "https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json"
- 9 "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json"
- 10 "https://stac-extensions.github.io/authentication/v1.1.0/schema.json"
- 11 "https://stac-extensions.github.io/classification/v2.0.0/schema.json"
- 12 "https://stac-extensions.github.io/product/v0.1.0/schema.json"
- 13 "https://cs-si.github.io/eopf-stac-extension/v1.2.0/schema.json"
- 14 "https://stac-extensions.github.io/storage/v2.0.0/schema.json"
- id "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 10.33660021997006
- 1 47.84592105208886
1[] 2 items
- 0 11.802846682924509
- 1 47.81947440295927
2[] 2 items
- 0 11.751084998620154
- 1 46.83262831925138
3[] 2 items
- 0 10.31188688551243
- 1 46.85818197246455
4[] 2 items
- 0 10.33660021997006
- 1 47.84592105208886
bbox[] 4 items
- 0 10.311887
- 1 46.832628
- 2 11.802847
- 3 47.845921
properties
- gsd 10
- created "2023-06-26T14:43:24.529000Z"
- updated "2024-05-06T14:03:08.843317Z"
- datetime "2021-04-16T10:20:21.024000Z"
- platform "sentinel-2a"
- grid:code "MGRS-32TPT"
- published "2023-06-26T14:58:40.550284Z"
statistics
- water 0.617732
- nodata 0.0
- dark_area 5.739467
- vegetation 11.632005
- thin_cirrus 0.249206
- cloud_shadow 0.962452
- unclassified 1.901653
- not_vegetated 8.085445
- high_proba_clouds 15.145321
- medium_proba_clouds 10.298105
- saturated_defective 0.0
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 "2021-04-16T10:20:21.024Z"
- product:type "S2MSI2A"
- view:azimuth 286.71689561514364
- constellation "sentinel-2"
- eo:snow_cover 45.37
- eo:cloud_cover 25.69
- start_datetime "2021-04-16T10:20:21.024Z"
- sat:orbit_state "descending"
storage:schemes
cdse-s3
- 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. A Global Service Load Balancer (GSLB) directs the request to either CloudFerro Cloud or OpenTelekom Cloud (OTC) S3 endpoint based on the location of the DNS resolver."
- requester_pays False
creodias-s3
- 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 "GS2A_20210416T102021_030378_N05.00"
- processing:level "L2"
- view:sun_azimuth 160.801266166943
- eopf:datastrip_id "S2A_OPER_MSI_L2A_DS_S2RP_20230519T131855_S20210416T102600_N05.00"
- processing:version "05.00"
- product:timeliness "PT24H"
- sat:absolute_orbit 30378
- sat:relative_orbit 65
- view:sun_elevation 51.577257510763
- processing:datetime "2023-05-19T13:18:55.000000Z"
- processing:facility "ESA"
- eopf:instrument_mode "INS-NOBS"
- eopf:origin_datetime "2023-06-26T14:43:24.529000Z"
- view:incidence_angle 6.560318130030057
- product:timeliness_category "NRT"
- sat:platform_international_designator "2015-028A"
links[] 5 items
0
- rel "collection"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
1
- rel "parent"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
2
- rel "root"
- href "https://stac.dataspace.copernicus.eu/v1/"
- type "application/json"
- title "cdse-stac"
3
- rel "self"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855"
- type "application/geo+json"
4
- rel "version-history"
- href "https://trace.dataspace.copernicus.eu/api/v1/traces/name/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE.zip"
- type "application/json"
- title "Product history record from the CDSE traceability service"
assets
AOT_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R10m/T32TPT_20210416T102021_AOT_10m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210416T102021_AOT_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 6445197
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620b17e0465e1960f75543a62fc38e6296cb64a5a66ab541276b10fa04f7564d154"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R10m/T32TPT_20210416T102021_AOT_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
AOT_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R20m/T32TPT_20210416T102021_AOT_20m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210416T102021_AOT_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 4504251
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162004be8e8bdbe95be6156b0d0573c25f011f07fe3aaf00feb3c9fe9cd8f3ca6b6a"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R20m/T32TPT_20210416T102021_AOT_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
AOT_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R60m/T32TPT_20210416T102021_AOT_60m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210416T102021_AOT_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 969449
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620ca42db3c74a4830c29c2805df94be17b9dc710c8ecc08f7954c920ccf026bc8f"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R60m/T32TPT_20210416T102021_AOT_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
B01_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R20m/T32TPT_20210416T102021_B01_20m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.443
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210416T102021_B01_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33068079
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 287.238346719698
- file:checksum "1620a4927def07d3606dc8af667c0a550dc799d83486969546b4f1349def31c0b9cd"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R20m/T32TPT_20210416T102021_B01_20m.jp2"
- view:incidence_angle 6.68439248270373
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:upsampled"
- 3 "gsd:20m"
B01_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R60m/T32TPT_20210416T102021_B01_60m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.443
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210416T102021_B01_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3752375
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 287.238346719698
- file:checksum "1620c4b1d9429de5389ee63fcc6c13cf66427cfe29eb60edac4ac464486711248f62"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R60m/T32TPT_20210416T102021_B01_60m.jp2"
- view:incidence_angle 6.68439248270373
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B02_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R10m/T32TPT_20210416T102021_B02_10m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210416T102021_B02_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135094687
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.951020698499
- file:checksum "16203187e2c50b75fb96dde8789de9b8beeab52bc2f3fd5f1f413787ceabd4286937"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R10m/T32TPT_20210416T102021_B02_10m.jp2"
- view:incidence_angle 6.41878223975569
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B02_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R20m/T32TPT_20210416T102021_B02_20m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210416T102021_B02_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33850121
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.951020698499
- file:checksum "1620921d40d6a453b1a01a00aa34b6a3f88d46e75b66ba28e613dc45d8fa70050baa"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R20m/T32TPT_20210416T102021_B02_20m.jp2"
- view:incidence_angle 6.41878223975569
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B02_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R60m/T32TPT_20210416T102021_B02_60m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210416T102021_B02_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3747232
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.951020698499
- file:checksum "162054d9fcf43ae59825ac5a3dfdf10abaf564a53ab33f292abbf878cb8da071d032"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R60m/T32TPT_20210416T102021_B02_60m.jp2"
- view:incidence_angle 6.41878223975569
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B03_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R10m/T32TPT_20210416T102021_B03_10m.jp2"
- type "image/jp2"
- title "Green (band 3) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210416T102021_B03_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135566862
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.241748085459
- file:checksum "1620d0428a5aae2c1bbb1dd2e64217cec6548243eed2f3f41858d85abf49289de7d7"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R10m/T32TPT_20210416T102021_B03_10m.jp2"
- view:incidence_angle 6.46097109501607
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B03_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R20m/T32TPT_20210416T102021_B03_20m.jp2"
- type "image/jp2"
- title "Green (band 3) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210416T102021_B03_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33892681
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.241748085459
- file:checksum "1620a606f17e352ae5e72d0f5f12eca000f547cc8c67b5a944400d5a576133f66a9d"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R20m/T32TPT_20210416T102021_B03_20m.jp2"
- view:incidence_angle 6.46097109501607
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B03_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R60m/T32TPT_20210416T102021_B03_60m.jp2"
- type "image/jp2"
- title "Green (band 3) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210416T102021_B03_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3745553
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.241748085459
- file:checksum "162016788376e9ddf54005136c946f585178f6f9f6bba95c5a9fe8c0569988cc9aff"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R60m/T32TPT_20210416T102021_B03_60m.jp2"
- view:incidence_angle 6.46097109501607
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B04_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R10m/T32TPT_20210416T102021_B04_10m.jp2"
- type "image/jp2"
- title "Red (band 4) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210416T102021_B04_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135471031
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.526038973173
- file:checksum "1620cd3c3659bee42d3f9a1a42877467ad26e75d4de1cc37e5da7b56e2523a765d56"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R10m/T32TPT_20210416T102021_B04_10m.jp2"
- view:incidence_angle 6.50828709806089
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B04_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R20m/T32TPT_20210416T102021_B04_20m.jp2"
- type "image/jp2"
- title "Red (band 4) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210416T102021_B04_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33906398
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.526038973173
- file:checksum "16201df35477df1680b3c5bf0228b839efdd0045ed1b6749c9dda1541db0b1d7d00e"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R20m/T32TPT_20210416T102021_B04_20m.jp2"
- view:incidence_angle 6.50828709806089
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B04_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R60m/T32TPT_20210416T102021_B04_60m.jp2"
- type "image/jp2"
- title "Red (band 4) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210416T102021_B04_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3746979
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.526038973173
- file:checksum "162022805490267db8de74559de246d20cc0791ba58c9469c8c56c84bd392e8ab3b3"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R60m/T32TPT_20210416T102021_B04_60m.jp2"
- view:incidence_angle 6.50828709806089
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B05_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R20m/T32TPT_20210416T102021_B05_20m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210416T102021_B05_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33809441
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.677292209542
- file:checksum "1620356fc12db69d90882d7f166b327294a314dfe4dab60c1c458daf3686f7f0b628"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R20m/T32TPT_20210416T102021_B05_20m.jp2"
- view:incidence_angle 6.53424655612746
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B05_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R60m/T32TPT_20210416T102021_B05_60m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210416T102021_B05_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3748549
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.677292209542
- file:checksum "1620fdbf106bd5c83929888432183083cfcd738d62180d8e2946cbf89d5072d6e144"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R60m/T32TPT_20210416T102021_B05_60m.jp2"
- view:incidence_angle 6.53424655612746
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B06_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R20m/T32TPT_20210416T102021_B06_20m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 20m"
- description "S3 storage provided by CloudFerro Cloud and OpenTelekom Cloud (OTC). Use endpoint URL `https://eodata.dataspace.copernicus.eu`."
bands[] 1 items
0
- eo:center_wavelength 0.741
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210416T102021_B06_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33790850
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.839579142883
- file:checksum "1620b9a9cb263eb4e44c9aa9ae0305ebf082fe2652f2e095acfd61b2718a0a3b927d"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R20m/T32TPT_20210416T102021_B06_20m.jp2"
- view:incidence_angle 6.56830461858323
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B06_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R60m/T32TPT_20210416T102021_B06_60m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.741
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210416T102021_B06_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3750585
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.839579142883
- file:checksum "1620ab57a90f63be6b639f3fac3214d35abe573cb3179741584a1815886dd383e5d7"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R60m/T32TPT_20210416T102021_B06_60m.jp2"
- view:incidence_angle 6.56830461858323
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B07_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R20m/T32TPT_20210416T102021_B07_20m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210416T102021_B07_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33782785
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.955622269899
- file:checksum "162078c730c5d2241199d35b9a6d57c265853a0f9df18e0d3ffb5165c4de01b8dc6d"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R20m/T32TPT_20210416T102021_B07_20m.jp2"
- view:incidence_angle 6.59539291148341
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B07_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R60m/T32TPT_20210416T102021_B07_60m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210416T102021_B07_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3747730
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.955622269899
- file:checksum "162079549f9b043d454ffda82188f3e7d7321ea879c851b8b88fde662a51935633a9"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R60m/T32TPT_20210416T102021_B07_60m.jp2"
- view:incidence_angle 6.59539291148341
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B08_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R10m/T32TPT_20210416T102021_B08_10m.jp2"
- type "image/jp2"
- title "NIR 1 (band 8) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.454
- name "B08"
- eo:common_name "nir"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210416T102021_B08_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135621535
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.093887732515
- file:checksum "1620231a241ef31b8947f2692fd2632dbcdf29632d225b0914466a081b3243d40e07"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R10m/T32TPT_20210416T102021_B08_10m.jp2"
- view:incidence_angle 6.44037860200064
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B09_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R60m/T32TPT_20210416T102021_B09_60m.jp2"
- type "image/jp2"
- title "NIR 3 (band 9) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.945
- eo:full_width_half_max 0.479
- name "B09"
- eo:common_name "nir09"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210416T102021_B09_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3745894
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 287.401609470767
- file:checksum "1620747aca506dda9cd2433243e664ccc19ebbd27b6f04977d3eaaea733a68911af6"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R60m/T32TPT_20210416T102021_B09_60m.jp2"
- view:incidence_angle 6.72751431596695
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B11_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R20m/T32TPT_20210416T102021_B11_20m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 20m"
bands[] 1 items
0
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210416T102021_B11_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33750974
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.75349846751
- file:checksum "16201958e2cb369bd0dfad319242d9e602c3ccd5d158fb3e2aad70540307f30d5e69"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R20m/T32TPT_20210416T102021_B11_20m.jp2"
- view:incidence_angle 6.56165140936019
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B11_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R60m/T32TPT_20210416T102021_B11_60m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 60m"
bands[] 1 items
0
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210416T102021_B11_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3750976
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.75349846751
- file:checksum "16207edbead43c21ce27a07f89e0f2a028e82ccc2f60f38df7b090bd970140131a65"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R60m/T32TPT_20210416T102021_B11_60m.jp2"
- view:incidence_angle 6.56165140936019
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B12_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R20m/T32TPT_20210416T102021_B12_20m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 20m"
bands[] 1 items
0
- eo:center_wavelength 2.202
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210416T102021_B12_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33801938
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 287.112319825064
- file:checksum "162060cc1a0dfe6e6bedd83a7b33d8859145ba49b6f45840f82bed7268cbb66934cc"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R20m/T32TPT_20210416T102021_B12_20m.jp2"
- view:incidence_angle 6.65461586965733
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B12_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R60m/T32TPT_20210416T102021_B12_60m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 60m"
bands[] 1 items
0
- eo:center_wavelength 2.202
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210416T102021_B12_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3739417
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 287.112319825064
- file:checksum "16208bf23a38d5924f0ab66d326eb6301e6a013e722d99b47248186d74972ae02450"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R60m/T32TPT_20210416T102021_B12_60m.jp2"
- view:incidence_angle 6.65461586965733
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B8A_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R20m/T32TPT_20210416T102021_B8A_20m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210416T102021_B8A_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33867481
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 287.157653092727
- file:checksum "162024d23dd4a4e81303bb917e59b354303a12193b481882403ca4b766cdecc7f366"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R20m/T32TPT_20210416T102021_B8A_20m.jp2"
- view:incidence_angle 6.64041050172684
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B8A_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R60m/T32TPT_20210416T102021_B8A_60m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210416T102021_B8A_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3744038
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 287.157653092727
- file:checksum "1620287c66ad792089f57022ffbf8e61c62c100afc97b586168ce7e4e0f81ef979cd"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R60m/T32TPT_20210416T102021_B8A_60m.jp2"
- view:incidence_angle 6.64041050172684
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
Product
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/$value"
- type "application/zip"
- title "Zipped product"
auth:refs[] 1 items
- 0 "oidc"
- file:size 1242295566
- storage:refs "𒍟※"
- file:checksum "d5011024179439729d3dd18b8cca2c45e7be60"
- alternate:name "HTTPS"
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE.zip"
roles[] 3 items
- 0 "data"
- 1 "metadata"
- 2 "archive"
SCL_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R20m/T32TPT_20210416T102021_SCL_20m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210416T102021_SCL_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 4270916
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162049f8d5023771eaa7283dd646baa579aa86fd9cef37c4a7c7b005ca6632eeac4c"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R20m/T32TPT_20210416T102021_SCL_20m.jp2"
classification:classes[] 12 items
0
- percentage 0.0
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
- percentage 0.0
2
- percentage 5.739467
- name "dark_area_pixels"
- value 2
3
- percentage 0.962452
- name "cloud_shadows"
- value 3
4
- percentage 11.632005
- name "vegetation"
- value 4
5
- percentage 8.085445
- name "not_vegetated"
- value 5
6
- percentage 0.617732
- name "water"
- value 6
7
- percentage 1.901653
- name "unclassified"
- value 7
8
- percentage 10.298105
- name "cloud_medium_probability"
- value 8
9
- percentage 15.145321
- name "cloud_high_probability"
- value 9
10
- percentage 0.249206
- name "thin_cirrus"
- value 10
11
- percentage 45.368615
- name "snow"
- value 11
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "data"
- 1 "sampling:original"
- 2 "gsd:20m"
SCL_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R60m/T32TPT_20210416T102021_SCL_60m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210416T102021_SCL_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 1027995
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162029581566341ff39db06d0679200234b06efeb2dd5e79ae90b88167b97ee7f80e"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R60m/T32TPT_20210416T102021_SCL_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
classification:classes[] 12 items
0
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
2
- name "dark_area_pixels"
- value 2
3
- name "cloud_shadows"
- value 3
4
- name "vegetation"
- value 4
5
- name "not_vegetated"
- value 5
6
- name "water"
- value 6
7
- name "unclassified"
- value 7
8
- name "cloud_medium_probability"
- value 8
9
- name "cloud_high_probability"
- value 9
10
- name "thin_cirrus"
- value 10
11
- name "snow"
- value 11
roles[] 3 items
- 0 "data"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
TCI_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R10m/T32TPT_20210416T102021_TCI_10m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210416T102021_TCI_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 127025279
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16201807a9dcc4e9f3521b588651ba22c2f972c9fc1bcb47d57eb1a61638f7509694"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R10m/T32TPT_20210416T102021_TCI_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 10980
- 1 10980
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:original"
- 2 "gsd:10m"
TCI_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R20m/T32TPT_20210416T102021_TCI_20m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210416T102021_TCI_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 32169611
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16205e7af319404e175bc48a93d1817b7d9c8a387dea630a772e47ab5a5af479e3fe"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R20m/T32TPT_20210416T102021_TCI_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:20m"
TCI_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R60m/T32TPT_20210416T102021_TCI_60m.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://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210416T102021_TCI_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3754804
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16202ee28faabf8c507391a62b572cc4601fb0d0668f36f0711302e86a73b992ba4a"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R60m/T32TPT_20210416T102021_TCI_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
WVP_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R10m/T32TPT_20210416T102021_WVP_10m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210416T102021_WVP_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 69139159
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620e3d969e66dfd394b54c871a577e52781216517cbf94ac263882eab54dbe95f82"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R10m/T32TPT_20210416T102021_WVP_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
WVP_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R20m/T32TPT_20210416T102021_WVP_20m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210416T102021_WVP_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 22926008
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16208f9d8c746c841ac58efde3d2ec556c45c9f00aebc6af1d3817ac404db1a6f2e6"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R20m/T32TPT_20210416T102021_WVP_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
WVP_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R60m/T32TPT_20210416T102021_WVP_60m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210416T102021_WVP_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3513420
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162014067d89a65ef4abe0a8e4a4ded90487f216608dcfab2c4ba4e5df1e65589f78"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/IMG_DATA/R60m/T32TPT_20210416T102021_WVP_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
thumbnail
- href "https://datahub.creodias.eu/odata/v1/Assets(5d717c22-d397-45f3-b2d9-aa0b6c08afa8)/$value"
- type "image/jpeg"
- title "Quicklook"
alternate
s3
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855-ql.jpg"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
auth:refs[] 1 items
- 0 "oidc"
- file:size 49378
- file:checksum "d5011079aed5d67a644f37f39d00ec73ac9bad"
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855-ql.jpg"
- data_type "uint8"
- proj:code None
proj:shape[] 2 items
- 0 343
- 1 343
- alternate:name "HTTPS"
roles[] 2 items
- 0 "thumbnail"
- 1 "overview"
safe_manifest
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/manifest.safe"
- type "application/xml"
- title "manifest.safe"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(manifest.safe)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 68915
- file:checksum "d501103e5363cfaa18b1fcebbea95e5c42dc17"
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/manifest.safe"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
granule_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/MTD_TL.xml"
- type "application/xml"
- title "MTD_TL.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes()/Nodes(GRANULE)/Nodes(L2A_T32TPT_A030378_20210416T102600)/Nodes(MTD_TL.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 547818
- file:checksum "d501203d49c8dc6651a6653f270d0d37858051952935e51bd3ebca433d3bb1830fecc9"
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/GRANULE/L2A_T32TPT_A030378_20210416T102600/MTD_TL.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
inspire_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/INSPIRE.xml"
- type "application/xml"
- title "INSPIRE.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(INSPIRE.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 18644
- file:checksum "d50120926158636a6a633197236fd0660f4a6eec231ce9c0de742db5604231bdf47ce2"
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/INSPIRE.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
product_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/MTD_MSIL2A.xml"
- type "application/xml"
- title "MTD_MSIL2A.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes(MTD_MSIL2A.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 55055
- file:checksum "d50120d97d5d7797371e7577210158e306b7f1ec6c71383fa0c9e431af9d91aeae110f"
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/MTD_MSIL2A.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
datastrip_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/16/S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/DATASTRIP/DS_S2RP_20230519T131855_S20210416T102600/MTD_DS.xml"
- type "application/xml"
- title "MTD_DS.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(588c040e-4652-4f42-b9a4-961878faf980)/Nodes(S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE)/Nodes()/Nodes(DATASTRIP)/Nodes(DS_S2RP_20230519T131855_S20210416T102600)/Nodes(MTD_DS.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 24438137
- file:checksum "d5012065a10e0054e9a15ab73ba69998a32d896c4294b2951673b861ab6e95e69b0d65"
- file:local_path "S2A_MSIL2A_20210416T102021_N0500_R065_T32TPT_20230519T131855.SAFE/DATASTRIP/DS_S2RP_20230519T131855_S20210416T102600/MTD_DS.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
- collection "sentinel-2-l2a"
22
- type "Feature"
- stac_version "1.1.0"
stac_extensions[] 15 items
- 0 "https://stac-extensions.github.io/eo/v2.0.0/schema.json"
- 1 "https://stac-extensions.github.io/raster/v2.0.0/schema.json"
- 2 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 3 "https://stac-extensions.github.io/projection/v2.0.0/schema.json"
- 4 "https://stac-extensions.github.io/grid/v1.1.0/schema.json"
- 5 "https://stac-extensions.github.io/view/v1.0.0/schema.json"
- 6 "https://stac-extensions.github.io/file/v2.1.0/schema.json"
- 7 "https://stac-extensions.github.io/processing/v1.2.0/schema.json"
- 8 "https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json"
- 9 "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json"
- 10 "https://stac-extensions.github.io/authentication/v1.1.0/schema.json"
- 11 "https://stac-extensions.github.io/classification/v2.0.0/schema.json"
- 12 "https://stac-extensions.github.io/product/v0.1.0/schema.json"
- 13 "https://cs-si.github.io/eopf-stac-extension/v1.2.0/schema.json"
- 14 "https://stac-extensions.github.io/storage/v2.0.0/schema.json"
- id "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 12 items
0[] 2 items
- 0 10.314609234453332
- 1 46.96698843247145
1[] 2 items
- 0 10.33690520388764
- 1 47.03110383654987
2[] 2 items
- 0 10.391102120790672
- 1 47.1771816211147
3[] 2 items
- 0 10.443858908624788
- 1 47.32374015070285
4[] 2 items
- 0 10.49474445452516
- 1 47.47085646441504
5[] 2 items
- 0 10.546903837963772
- 1 47.61764836535704
6[] 2 items
- 0 10.600184988239072
- 1 47.76415168950686
7[] 2 items
- 0 10.628224919539646
- 1 47.840661025004806
8[] 2 items
- 0 11.802846682924509
- 1 47.81947440295927
9[] 2 items
- 0 11.751084998620154
- 1 46.83262831925138
10[] 2 items
- 0 10.31188688551243
- 1 46.85818197246455
11[] 2 items
- 0 10.314609234453332
- 1 46.96698843247145
bbox[] 4 items
- 0 10.311887
- 1 46.832628
- 2 11.802847
- 3 47.840661
properties
- gsd 10
- created "2023-06-13T01:16:43.995000Z"
- updated "2024-05-06T08:44:08.264358Z"
- datetime "2021-04-08T10:05:49.024000Z"
- platform "sentinel-2b"
- grid:code "MGRS-32TPT"
- published "2023-06-13T01:42:56.977609Z"
statistics
- water 0.313168
- nodata 9.284004
- dark_area 3.489247
- vegetation 3.007327
- thin_cirrus 0.44747099999999995
- cloud_shadow 0.48767299999999997
- unclassified 1.249116
- not_vegetated 4.727299
- high_proba_clouds 28.840071
- medium_proba_clouds 16.504081
- saturated_defective 0.0
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 "2021-04-08T10:05:49.024Z"
- product:type "S2MSI2A"
- view:azimuth 105.13987432920938
- constellation "sentinel-2"
- eo:snow_cover 40.93
- eo:cloud_cover 45.79
- start_datetime "2021-04-08T10:05:49.024Z"
- sat:orbit_state "descending"
storage:schemes
cdse-s3
- 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. A Global Service Load Balancer (GSLB) directs the request to either CloudFerro Cloud or OpenTelekom Cloud (OTC) S3 endpoint based on the location of the DNS resolver."
- requester_pays False
creodias-s3
- 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 "GS2B_20210408T100549_021355_N05.00"
- processing:level "L2"
- view:sun_azimuth 157.466455156874
- eopf:datastrip_id "S2B_OPER_MSI_L2A_DS_S2RP_20230513T124455_S20210408T101148_N05.00"
- processing:version "05.00"
- product:timeliness "PT24H"
- sat:absolute_orbit 21355
- sat:relative_orbit 22
- view:sun_elevation 48.0296644567354
- processing:datetime "2023-05-13T12:44:55.000000Z"
- processing:facility "ESA"
- eopf:instrument_mode "INS-NOBS"
- eopf:origin_datetime "2023-06-13T01:16:43.995000Z"
- view:incidence_angle 7.932118965086502
- product:timeliness_category "NRT"
- sat:platform_international_designator "2017-013A"
links[] 5 items
0
- rel "collection"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
1
- rel "parent"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
2
- rel "root"
- href "https://stac.dataspace.copernicus.eu/v1/"
- type "application/json"
- title "cdse-stac"
3
- rel "self"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455"
- type "application/geo+json"
4
- rel "version-history"
- href "https://trace.dataspace.copernicus.eu/api/v1/traces/name/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE.zip"
- type "application/json"
- title "Product history record from the CDSE traceability service"
assets
AOT_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R10m/T32TPT_20210408T100549_AOT_10m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210408T100549_AOT_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 1880039
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620549aaa5286b689b6eba5724789e02a7ded47943bb1a4691db9f58ba6ad6741b1"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R10m/T32TPT_20210408T100549_AOT_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
AOT_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R20m/T32TPT_20210408T100549_AOT_20m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210408T100549_AOT_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 1667814
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620c7e6d383d8822f4da327c4012c895652a8ba9cc7f956ee918e85ff0485109cb0"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R20m/T32TPT_20210408T100549_AOT_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
AOT_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R60m/T32TPT_20210408T100549_AOT_60m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210408T100549_AOT_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 562002
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620a31da467288109c6aac93232d331c40a9e5e3a2435006037a4c095d2bfeffd5d"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R60m/T32TPT_20210408T100549_AOT_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
B01_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R20m/T32TPT_20210408T100549_B01_20m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.442
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210408T100549_B01_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 29305181
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.069917235859
- file:checksum "16200bc114bbf74b13765ee21f08cad703c50ce3d4e9e5e9114450163e491ba08fd8"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R20m/T32TPT_20210408T100549_B01_20m.jp2"
- view:incidence_angle 8.03260475050222
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:upsampled"
- 3 "gsd:20m"
B01_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R60m/T32TPT_20210408T100549_B01_60m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.442
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210408T100549_B01_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3760698
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.069917235859
- file:checksum "1620b4d4e17d6894a359b86f3daa0c505801afa028de7706bf8a536ef0da09f82fe8"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R60m/T32TPT_20210408T100549_B01_60m.jp2"
- view:incidence_angle 8.03260475050222
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B02_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R10m/T32TPT_20210408T100549_B02_10m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210408T100549_B02_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135468430
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.232926413496
- file:checksum "1620b43f25b1b4384e4f0f650cbccb9d85dbf30f1d683d211c9e32973561cc25b3cf"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R10m/T32TPT_20210408T100549_B02_10m.jp2"
- view:incidence_angle 7.82866985669758
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B02_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R20m/T32TPT_20210408T100549_B02_20m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210408T100549_B02_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33906082
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.232926413496
- file:checksum "16207b029a8ee8d9aca651330353fb4072795d594cb460ffbe8b7bac1f3f65da26cc"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R20m/T32TPT_20210408T100549_B02_20m.jp2"
- view:incidence_angle 7.82866985669758
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B02_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R60m/T32TPT_20210408T100549_B02_60m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210408T100549_B02_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3747165
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.232926413496
- file:checksum "162056ce407687dbe37fc2d368f50c2c9e354bf1468c9eb0f076a190f634dec9ed0e"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R60m/T32TPT_20210408T100549_B02_60m.jp2"
- view:incidence_angle 7.82866985669758
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B03_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R10m/T32TPT_20210408T100549_B03_10m.jp2"
- type "image/jp2"
- title "Green (band 3) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210408T100549_B03_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135591449
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.206952615297
- file:checksum "16205d5ee1812f4843840eb7a162b385522722bf8fc356310b0e9b98167bca433ff2"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R10m/T32TPT_20210408T100549_B03_10m.jp2"
- view:incidence_angle 7.85113289208427
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B03_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R20m/T32TPT_20210408T100549_B03_20m.jp2"
- type "image/jp2"
- title "Green (band 3) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210408T100549_B03_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33714374
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.206952615297
- file:checksum "1620c8ae22717f8d5ffe4026046a63e1a4ad2862d2c1e43a39f0b2d63978431b275e"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R20m/T32TPT_20210408T100549_B03_20m.jp2"
- view:incidence_angle 7.85113289208427
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B03_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R60m/T32TPT_20210408T100549_B03_60m.jp2"
- type "image/jp2"
- title "Green (band 3) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210408T100549_B03_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3746757
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.206952615297
- file:checksum "1620795f87baa0f3fe67cae2320855db51b4f83b34a3033a875ab6c924a8d7d1d604"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R60m/T32TPT_20210408T100549_B03_60m.jp2"
- view:incidence_angle 7.85113289208427
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B04_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R10m/T32TPT_20210408T100549_B04_10m.jp2"
- type "image/jp2"
- title "Red (band 4) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210408T100549_B04_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135021420
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.160876117016
- file:checksum "162062f9658fa4da72b95820d0a920aa7178d6f76b38d78b257c67700a7f1b571d73"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R10m/T32TPT_20210408T100549_B04_10m.jp2"
- view:incidence_angle 7.88522204648636
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B04_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R20m/T32TPT_20210408T100549_B04_20m.jp2"
- type "image/jp2"
- title "Red (band 4) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210408T100549_B04_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33731846
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.160876117016
- file:checksum "1620675b9ce79f82138a74b1ef0dc15babee4842d3db19f006b2600d11656d524376"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R20m/T32TPT_20210408T100549_B04_20m.jp2"
- view:incidence_angle 7.88522204648636
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B04_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R60m/T32TPT_20210408T100549_B04_60m.jp2"
- type "image/jp2"
- title "Red (band 4) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210408T100549_B04_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3748060
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.160876117016
- file:checksum "1620b50e2dc3410c23194bf7825206304ebd302c91b4954d449973320ffd2bba9f7d"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R60m/T32TPT_20210408T100549_B04_60m.jp2"
- view:incidence_angle 7.88522204648636
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B05_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R20m/T32TPT_20210408T100549_B05_20m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210408T100549_B05_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33741806
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.143625941992
- file:checksum "16209089ac3f1bcf142486b56affad2f795f077284e1365bcd70743c30d95048f506"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R20m/T32TPT_20210408T100549_B05_20m.jp2"
- view:incidence_angle 7.90766022683819
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B05_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R60m/T32TPT_20210408T100549_B05_60m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210408T100549_B05_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3748288
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.143625941992
- file:checksum "162035f073f8f33e3282e0db1ee3dfa8f9ccd6b84f2318644c339e328413a0efb384"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R60m/T32TPT_20210408T100549_B05_60m.jp2"
- view:incidence_angle 7.90766022683819
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B06_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R20m/T32TPT_20210408T100549_B06_20m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 20m"
- description "S3 storage provided by CloudFerro Cloud and OpenTelekom Cloud (OTC). Use endpoint URL `https://eodata.dataspace.copernicus.eu`."
bands[] 1 items
0
- eo:center_wavelength 0.739
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210408T100549_B06_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33773204
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.109918215533
- file:checksum "162029ad0c239fe031bce4c79a650db22b4252607abd1636a20bb030628bc290a78f"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R20m/T32TPT_20210408T100549_B06_20m.jp2"
- view:incidence_angle 7.93278090639248
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B06_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R60m/T32TPT_20210408T100549_B06_60m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.739
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210408T100549_B06_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3747557
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.109918215533
- file:checksum "16201def390b4991e4997614fcf959d10416d8e4ebc9b4641f354c638503f857bf38"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R60m/T32TPT_20210408T100549_B06_60m.jp2"
- view:incidence_angle 7.93278090639248
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B07_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R20m/T32TPT_20210408T100549_B07_20m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.78
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210408T100549_B07_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33777154
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.068714319705
- file:checksum "1620053e3a1c5afc39dbe7dc35b76d663306bcb92a085d9e23f2f999a5b1dc124c83"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R20m/T32TPT_20210408T100549_B07_20m.jp2"
- view:incidence_angle 7.96467300933156
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B07_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R60m/T32TPT_20210408T100549_B07_60m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.78
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210408T100549_B07_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3747596
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.068714319705
- file:checksum "16201122fa924103aa5415ed5a69bd7c0ce2a354f9ed3982588cc6497a97d8eb66b3"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R60m/T32TPT_20210408T100549_B07_60m.jp2"
- view:incidence_angle 7.96467300933156
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B08_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R10m/T32TPT_20210408T100549_B08_10m.jp2"
- type "image/jp2"
- title "NIR 1 (band 8) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.454
- name "B08"
- eo:common_name "nir"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210408T100549_B08_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 134917978
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.212195208759
- file:checksum "16203bddd335494d4e8faeee069620a77f98f2ca3e9cbcdb8f4cc7e1d57b023cc56a"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R10m/T32TPT_20210408T100549_B08_10m.jp2"
- view:incidence_angle 7.84047641212898
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B09_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R60m/T32TPT_20210408T100549_B09_60m.jp2"
- type "image/jp2"
- title "NIR 3 (band 9) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.943
- eo:full_width_half_max 0.479
- name "B09"
- eo:common_name "nir09"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210408T100549_B09_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3742246
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.01319296322
- file:checksum "16201071a3626f6310a337a0421bf46a1948d36907e8219b0e4e4e76a08bc405e96f"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R60m/T32TPT_20210408T100549_B09_60m.jp2"
- view:incidence_angle 8.07314378027379
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B11_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R20m/T32TPT_20210408T100549_B11_20m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 20m"
bands[] 1 items
0
- eo:center_wavelength 1.61
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210408T100549_B11_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33199960
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.182784875473
- file:checksum "1620b91e86d9525a7eec521494de9eaa8ed6a6c9a0200334f443079e4172268438b6"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R20m/T32TPT_20210408T100549_B11_20m.jp2"
- view:incidence_angle 7.92901210898996
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B11_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R60m/T32TPT_20210408T100549_B11_60m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 60m"
bands[] 1 items
0
- eo:center_wavelength 1.61
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210408T100549_B11_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3748997
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.182784875473
- file:checksum "1620719268d8d5f9946593faa674e0e966e03f8cf8a0ce5ee8ebbaefa4af9d1f8f60"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R60m/T32TPT_20210408T100549_B11_60m.jp2"
- view:incidence_angle 7.92901210898996
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B12_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R20m/T32TPT_20210408T100549_B12_20m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 20m"
bands[] 1 items
0
- eo:center_wavelength 2.186
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210408T100549_B12_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 32886467
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.116889376672
- file:checksum "16205057845737301526d987d4c9875ca67160cb1fa59a3b26ab380c1624f2772de8"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R20m/T32TPT_20210408T100549_B12_20m.jp2"
- view:incidence_angle 7.99852624993412
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B12_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R60m/T32TPT_20210408T100549_B12_60m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 60m"
bands[] 1 items
0
- eo:center_wavelength 2.186
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210408T100549_B12_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3746598
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.116889376672
- file:checksum "1620011bc56bd6612969f68380db0cf5215e24a2f38656d10dff0cf04f67d044064d"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R60m/T32TPT_20210408T100549_B12_60m.jp2"
- view:incidence_angle 7.99852624993412
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B8A_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R20m/T32TPT_20210408T100549_B8A_20m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.864
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210408T100549_B8A_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33765056
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.058414579906
- file:checksum "162040ee4915bb69437e49c2812389fce282b78a93bfff9b1f0e5f7953637af41d2d"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R20m/T32TPT_20210408T100549_B8A_20m.jp2"
- view:incidence_angle 7.99514020044334
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B8A_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R60m/T32TPT_20210408T100549_B8A_60m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.864
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210408T100549_B8A_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3747767
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 105.058414579906
- file:checksum "1620cba259ca37be8015cbe507921d782b3f351508d9259457395259617626e90765"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R60m/T32TPT_20210408T100549_B8A_60m.jp2"
- view:incidence_angle 7.99514020044334
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
Product
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/$value"
- type "application/zip"
- title "Zipped product"
auth:refs[] 1 items
- 0 "oidc"
- file:size 1114868473
- storage:refs "𒍟※"
- file:checksum "d50110751893ab74c03026557622ba3f355052"
- alternate:name "HTTPS"
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE.zip"
roles[] 3 items
- 0 "data"
- 1 "metadata"
- 2 "archive"
SCL_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R20m/T32TPT_20210408T100549_SCL_20m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210408T100549_SCL_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 2905098
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16207177add7fc3664929f0812221715212aa7f27173d68e2c9d66c5af8f56799700"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R20m/T32TPT_20210408T100549_SCL_20m.jp2"
classification:classes[] 12 items
0
- percentage 9.284004
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
- percentage 0.0
2
- percentage 3.489247
- name "dark_area_pixels"
- value 2
3
- percentage 0.48767299999999997
- name "cloud_shadows"
- value 3
4
- percentage 3.007327
- name "vegetation"
- value 4
5
- percentage 4.727299
- name "not_vegetated"
- value 5
6
- percentage 0.313168
- name "water"
- value 6
7
- percentage 1.249116
- name "unclassified"
- value 7
8
- percentage 16.504081
- name "cloud_medium_probability"
- value 8
9
- percentage 28.840071
- name "cloud_high_probability"
- value 9
10
- percentage 0.44747099999999995
- name "thin_cirrus"
- value 10
11
- percentage 40.934548
- name "snow"
- value 11
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "data"
- 1 "sampling:original"
- 2 "gsd:20m"
SCL_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R60m/T32TPT_20210408T100549_SCL_60m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210408T100549_SCL_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 752195
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162054b8ce27add90577c1e0743ddc502c2210e90ca123d5ac62829b2ca5c9945173"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R60m/T32TPT_20210408T100549_SCL_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
classification:classes[] 12 items
0
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
2
- name "dark_area_pixels"
- value 2
3
- name "cloud_shadows"
- value 3
4
- name "vegetation"
- value 4
5
- name "not_vegetated"
- value 5
6
- name "water"
- value 6
7
- name "unclassified"
- value 7
8
- name "cloud_medium_probability"
- value 8
9
- name "cloud_high_probability"
- value 9
10
- name "thin_cirrus"
- value 10
11
- name "snow"
- value 11
roles[] 3 items
- 0 "data"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
TCI_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R10m/T32TPT_20210408T100549_TCI_10m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210408T100549_TCI_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 70044995
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162021663f8ed1990083a93d1870fc2b10774a31eb9a8e2f2f59debce73a0b88971d"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R10m/T32TPT_20210408T100549_TCI_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 10980
- 1 10980
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:original"
- 2 "gsd:10m"
TCI_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R20m/T32TPT_20210408T100549_TCI_20m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210408T100549_TCI_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 19218461
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620e097ce1aea4d63759c11375c627314f2cf301cec1d167c9a5bdcf7ae2160398f"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R20m/T32TPT_20210408T100549_TCI_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:20m"
TCI_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R60m/T32TPT_20210408T100549_TCI_60m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210408T100549_TCI_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 2636262
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620a4792471ac1cd7922d471aa717d1e58cf5b76fe81aab9a7b1b7a4732a235426f"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R60m/T32TPT_20210408T100549_TCI_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
WVP_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R10m/T32TPT_20210408T100549_WVP_10m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210408T100549_WVP_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 46502262
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16202037798f64ec3d56e89666e68a0cf5f124683b1be833cc650dcf8fc4e29ef5fb"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R10m/T32TPT_20210408T100549_WVP_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
WVP_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R20m/T32TPT_20210408T100549_WVP_20m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210408T100549_WVP_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 15389201
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620d2dbb5f53ed6650ed847dbd2a074aed5af9f77f413014368090517d859e37771"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R20m/T32TPT_20210408T100549_WVP_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
WVP_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R60m/T32TPT_20210408T100549_WVP_60m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210408T100549_WVP_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 2387672
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620dfdd40d5381655e63c80ad48fe7358c6c37715015dfc1e0a6ed510a1ac6d12af"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/IMG_DATA/R60m/T32TPT_20210408T100549_WVP_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
thumbnail
- href "https://datahub.creodias.eu/odata/v1/Assets(aae80ebd-ebd5-487b-9901-463a2559d645)/$value"
- type "image/jpeg"
- title "Quicklook"
alternate
s3
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455-ql.jpg"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
auth:refs[] 1 items
- 0 "oidc"
- file:size 31284
- file:checksum "d501105a05e847eb03fec74019344bbeeb66dd"
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455-ql.jpg"
- data_type "uint8"
- proj:code None
proj:shape[] 2 items
- 0 343
- 1 343
- alternate:name "HTTPS"
roles[] 2 items
- 0 "thumbnail"
- 1 "overview"
safe_manifest
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/manifest.safe"
- type "application/xml"
- title "manifest.safe"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(manifest.safe)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 69172
- file:checksum "d501100b0c37dc9981d1f1698fdf3d1417a47f"
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/manifest.safe"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
granule_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/MTD_TL.xml"
- type "application/xml"
- title "MTD_TL.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes()/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021355_20210408T101148)/Nodes(MTD_TL.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 463298
- file:checksum "d5012029c9f691521fc8dccbc00e1e0e9759cb21851a974edad00edaf2befb929ce525"
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/GRANULE/L2A_T32TPT_A021355_20210408T101148/MTD_TL.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
inspire_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/INSPIRE.xml"
- type "application/xml"
- title "INSPIRE.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(INSPIRE.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 18904
- file:checksum "d5012062140aa61b4ce3dfd8e14b186fcb9a18e573377c3dae398bf6958248e81d549c"
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/INSPIRE.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
product_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/MTD_MSIL2A.xml"
- type "application/xml"
- title "MTD_MSIL2A.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes(MTD_MSIL2A.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 55091
- file:checksum "d50120731f71579e6320e9e0a21fd3724fa79e8a9f69c5bc45384f4febeb5f6dca3a4d"
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/MTD_MSIL2A.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
datastrip_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/08/S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/DATASTRIP/DS_S2RP_20230513T124455_S20210408T101148/MTD_DS.xml"
- type "application/xml"
- title "MTD_DS.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(af0aaf3f-dc19-407d-b6a6-345d48634b7a)/Nodes(S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE)/Nodes()/Nodes(DATASTRIP)/Nodes(DS_S2RP_20230513T124455_S20210408T101148)/Nodes(MTD_DS.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 15381490
- file:checksum "d50120201ff012f3745c1840e28f67bd3afdc0b95818723eee0a0cf374cc21f6a0c777"
- file:local_path "S2B_MSIL2A_20210408T100549_N0500_R022_T32TPT_20230513T124455.SAFE/DATASTRIP/DS_S2RP_20230513T124455_S20210408T101148/MTD_DS.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
- collection "sentinel-2-l2a"
23
- type "Feature"
- stac_version "1.1.0"
stac_extensions[] 15 items
- 0 "https://stac-extensions.github.io/eo/v2.0.0/schema.json"
- 1 "https://stac-extensions.github.io/raster/v2.0.0/schema.json"
- 2 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 3 "https://stac-extensions.github.io/projection/v2.0.0/schema.json"
- 4 "https://stac-extensions.github.io/grid/v1.1.0/schema.json"
- 5 "https://stac-extensions.github.io/view/v1.0.0/schema.json"
- 6 "https://stac-extensions.github.io/file/v2.1.0/schema.json"
- 7 "https://stac-extensions.github.io/processing/v1.2.0/schema.json"
- 8 "https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json"
- 9 "https://stac-extensions.github.io/timestamps/v1.1.0/schema.json"
- 10 "https://stac-extensions.github.io/authentication/v1.1.0/schema.json"
- 11 "https://stac-extensions.github.io/classification/v2.0.0/schema.json"
- 12 "https://stac-extensions.github.io/product/v0.1.0/schema.json"
- 13 "https://cs-si.github.io/eopf-stac-extension/v1.2.0/schema.json"
- 14 "https://stac-extensions.github.io/storage/v2.0.0/schema.json"
- id "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 6 items
0[] 2 items
- 0 11.751963084392472
- 1 46.849369186887685
1[] 2 items
- 0 11.74482040205913
- 1 46.83273955016989
2[] 2 items
- 0 10.31188688551243
- 1 46.85818197246455
3[] 2 items
- 0 10.33660021997006
- 1 47.84592105208886
4[] 2 items
- 0 11.802846682924509
- 1 47.81947440295927
5[] 2 items
- 0 11.751963084392472
- 1 46.849369186887685
bbox[] 4 items
- 0 10.311887
- 1 46.83274
- 2 11.802847
- 3 47.845921
properties
- gsd 10
- created "2023-06-29T00:05:08.371000Z"
- updated "2024-05-07T09:47:58.777778Z"
- datetime "2021-04-01T10:15:59.024000Z"
- platform "sentinel-2b"
- grid:code "MGRS-32TPT"
- published "2023-06-29T00:18:25.291448Z"
statistics
- water 0.730444
- nodata 0.00848
- dark_area 11.445066000000002
- vegetation 24.547213
- thin_cirrus 0.662459
- cloud_shadow 1.843246
- unclassified 1.329684
- not_vegetated 9.428353
- high_proba_clouds 3.920867
- medium_proba_clouds 3.422525
- saturated_defective 0.0
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 "2021-04-01T10:15:59.024Z"
- product:type "S2MSI2A"
- view:azimuth 285.76769089446293
- constellation "sentinel-2"
- eo:snow_cover 42.67
- eo:cloud_cover 8.01
- start_datetime "2021-04-01T10:15:59.024Z"
- sat:orbit_state "descending"
storage:schemes
cdse-s3
- 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. A Global Service Load Balancer (GSLB) directs the request to either CloudFerro Cloud or OpenTelekom Cloud (OTC) S3 endpoint based on the location of the DNS resolver."
- requester_pays False
creodias-s3
- 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 "GS2B_20210401T101559_021255_N05.00"
- processing:level "L2"
- view:sun_azimuth 161.223825320652
- eopf:datastrip_id "S2B_OPER_MSI_L2A_DS_S2RP_20230520T032614_S20210401T102326_N05.00"
- processing:version "05.00"
- product:timeliness "PT24H"
- sat:absolute_orbit 21255
- sat:relative_orbit 65
- view:sun_elevation 45.9289101270251
- processing:datetime "2023-05-20T03:26:14.000000Z"
- processing:facility "ESA"
- eopf:instrument_mode "INS-NOBS"
- eopf:origin_datetime "2023-06-29T00:05:08.371000Z"
- view:incidence_angle 6.642728649332101
- product:timeliness_category "NRT"
- sat:platform_international_designator "2017-013A"
links[] 5 items
0
- rel "collection"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
1
- rel "parent"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a"
- type "application/json"
2
- rel "root"
- href "https://stac.dataspace.copernicus.eu/v1/"
- type "application/json"
- title "cdse-stac"
3
- rel "self"
- href "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614"
- type "application/geo+json"
4
- rel "version-history"
- href "https://trace.dataspace.copernicus.eu/api/v1/traces/name/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE.zip"
- type "application/json"
- title "Product history record from the CDSE traceability service"
assets
AOT_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R10m/T32TPT_20210401T101559_AOT_10m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210401T101559_AOT_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 5778349
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620b216c676d2956322131a10d890249864cdfb613008b02a89efe3899ddd0137ec"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R10m/T32TPT_20210401T101559_AOT_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
AOT_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R20m/T32TPT_20210401T101559_AOT_20m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210401T101559_AOT_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 4202603
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162030cdf77c41e24bd7f711b9a94c49a6a4551f3896bde8139b732a2775b4c44047"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R20m/T32TPT_20210401T101559_AOT_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
AOT_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R60m/T32TPT_20210401T101559_AOT_60m.jp2"
- type "image/jp2"
- title "Aerosol optical thickness (AOT) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210401T101559_AOT_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 950764
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620f8786da76096742ed9b51eadf5132feec6d8f5b2b725f59bb0104c7e91238c36"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R60m/T32TPT_20210401T101559_AOT_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
B01_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R20m/T32TPT_20210401T101559_B01_20m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.442
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210401T101559_B01_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 30947169
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.401874453159
- file:checksum "16203e63e59da9ff7af4cfec892a62ecee0619e0339eff6cfda825e354da053b0562"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R20m/T32TPT_20210401T101559_B01_20m.jp2"
- view:incidence_angle 6.76371999624898
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:upsampled"
- 3 "gsd:20m"
B01_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R60m/T32TPT_20210401T101559_B01_60m.jp2"
- type "image/jp2"
- title "Coastal aerosol (band 1) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.442
- eo:full_width_half_max 0.228
- name "B01"
- eo:common_name "coastal"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210401T101559_B01_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3737946
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.401874453159
- file:checksum "1620503da3536e64a569bdde738988b62127e7c1b8466e26baf0026d21046440dd75"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R60m/T32TPT_20210401T101559_B01_60m.jp2"
- view:incidence_angle 6.76371999624898
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B02_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R10m/T32TPT_20210401T101559_B02_10m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210401T101559_B02_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 134964793
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 284.872411196178
- file:checksum "16205df77b9c97cc7a3e25061890bf17bd69231aeeee9c7822a6a31e7b5e4c1f006f"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R10m/T32TPT_20210401T101559_B02_10m.jp2"
- view:incidence_angle 6.50715058357683
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B02_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R20m/T32TPT_20210401T101559_B02_20m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210401T101559_B02_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33835492
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 284.872411196178
- file:checksum "1620613d0d159c0c87f55f630ac573b9b5eaebe5f42cef5bafc70223a4f7d9336fc7"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R20m/T32TPT_20210401T101559_B02_20m.jp2"
- view:incidence_angle 6.50715058357683
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B02_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R60m/T32TPT_20210401T101559_B02_60m.jp2"
- type "image/jp2"
- title "Blue (band 2) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.267
- name "B02"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210401T101559_B02_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3751069
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 284.872411196178
- file:checksum "1620a12c4b6ad4b9a34dc14b8e57d65d5a7614a8ed834f1cfe9e82266818286a435f"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R60m/T32TPT_20210401T101559_B02_60m.jp2"
- view:incidence_angle 6.50715058357683
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B03_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R10m/T32TPT_20210401T101559_B03_10m.jp2"
- type "image/jp2"
- title "Green (band 3) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210401T101559_B03_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135096762
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.219195227504
- file:checksum "16200a92e6407e18413732f6cc1237b820a522e1bc4e04ff9dbc7743273e67a561bc"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R10m/T32TPT_20210401T101559_B03_10m.jp2"
- view:incidence_angle 6.54506864149024
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B03_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R20m/T32TPT_20210401T101559_B03_20m.jp2"
- type "image/jp2"
- title "Green (band 3) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210401T101559_B03_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33824406
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.219195227504
- file:checksum "1620d17584c6f096bce9540a39d2d306dbcc639833602b893cabba00834d1ca9f68b"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R20m/T32TPT_20210401T101559_B03_20m.jp2"
- view:incidence_angle 6.54506864149024
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B03_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R60m/T32TPT_20210401T101559_B03_60m.jp2"
- type "image/jp2"
- title "Green (band 3) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- eo:common_name "green"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210401T101559_B03_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3747880
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.219195227504
- file:checksum "1620c3acded0f8efb593fcb18c6bf414bce14f04918b3fb31e70287219d389c7fa70"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R60m/T32TPT_20210401T101559_B03_60m.jp2"
- view:incidence_angle 6.54506864149024
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B04_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R10m/T32TPT_20210401T101559_B04_10m.jp2"
- type "image/jp2"
- title "Red (band 4) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210401T101559_B04_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135581243
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.548022627959
- file:checksum "162088d6d669ff3d3472e1ad8d797832aa11ee6c7f60009ab27fc3c22add35e609cb"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R10m/T32TPT_20210401T101559_B04_10m.jp2"
- view:incidence_angle 6.58511609654489
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B04_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R20m/T32TPT_20210401T101559_B04_20m.jp2"
- type "image/jp2"
- title "Red (band 4) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210401T101559_B04_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33776350
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.548022627959
- file:checksum "1620317bd18a50749aca4966bb19cfa255e94b36fee316e8a5989c2230b5e41e5bff"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R20m/T32TPT_20210401T101559_B04_20m.jp2"
- view:incidence_angle 6.58511609654489
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:20m"
B04_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R60m/T32TPT_20210401T101559_B04_60m.jp2"
- type "image/jp2"
- title "Red (band 4) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.342
- name "B04"
- eo:common_name "red"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210401T101559_B04_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3745087
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.548022627959
- file:checksum "16205b1e61f4a0c9db59d52813251eb7638f95dfb90f5b6969434fb7e3903fbf7094"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R60m/T32TPT_20210401T101559_B04_60m.jp2"
- view:incidence_angle 6.58511609654489
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B05_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R20m/T32TPT_20210401T101559_B05_20m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210401T101559_B05_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33806621
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.720686336677
- file:checksum "1620293ab85b071ea29aa9b3601229425d5d0d360278766dcc4d27c75d0ecf2ca7a6"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R20m/T32TPT_20210401T101559_B05_20m.jp2"
- view:incidence_angle 6.61484203552727
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B05_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R60m/T32TPT_20210401T101559_B05_60m.jp2"
- type "image/jp2"
- title "Red edge 1 (band 5) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.357
- name "B05"
- eo:common_name "rededge071"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210401T101559_B05_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3743881
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.720686336677
- file:checksum "1620debb28949568ac0648d5160dc76e4795837409196094eec00fb5ce19f4c8d815"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R60m/T32TPT_20210401T101559_B05_60m.jp2"
- view:incidence_angle 6.61484203552727
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B06_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R20m/T32TPT_20210401T101559_B06_20m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 20m"
- description "S3 storage provided by CloudFerro Cloud and OpenTelekom Cloud (OTC). Use endpoint URL `https://eodata.dataspace.copernicus.eu`."
bands[] 1 items
0
- eo:center_wavelength 0.739
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210401T101559_B06_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33782254
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.912235252143
- file:checksum "1620f35f97e498fd3c9d6a6923ff1968600d5d4a72f68d2ca1465cde3470f77d57b4"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R20m/T32TPT_20210401T101559_B06_20m.jp2"
- view:incidence_angle 6.64796044773236
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B06_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R60m/T32TPT_20210401T101559_B06_60m.jp2"
- type "image/jp2"
- title "Red edge 2 (band 6) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.739
- eo:full_width_half_max 0.374
- name "B06"
- eo:common_name "rededge075"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210401T101559_B06_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3741045
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.912235252143
- file:checksum "1620776cec82f5838f53af36050e7fa5dec11dcfd04dbac056fd325eabb1aee7271a"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R60m/T32TPT_20210401T101559_B06_60m.jp2"
- view:incidence_angle 6.64796044773236
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B07_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R20m/T32TPT_20210401T101559_B07_20m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.78
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210401T101559_B07_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33889552
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.060327418253
- file:checksum "162012d1a581df9c9302482143264b62ff3a152973e492b5a269bcfcb5c055203671"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R20m/T32TPT_20210401T101559_B07_20m.jp2"
- view:incidence_angle 6.68578743672147
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B07_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R60m/T32TPT_20210401T101559_B07_60m.jp2"
- type "image/jp2"
- title "Red edge 3 (band 7) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.78
- eo:full_width_half_max 0.399
- name "B07"
- eo:common_name "rededge078"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210401T101559_B07_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3740463
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.060327418253
- file:checksum "162032cdb963942b47d614134c05109f6d6d24e4f61c2123538f708ec711e2a48710"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R60m/T32TPT_20210401T101559_B07_60m.jp2"
- view:incidence_angle 6.68578743672147
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B08_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R10m/T32TPT_20210401T101559_B08_10m.jp2"
- type "image/jp2"
- title "NIR 1 (band 8) - 10m"
bands[] 1 items
0
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.454
- name "B08"
- eo:common_name "nir"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210401T101559_B08_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 135375274
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.038878870743
- file:checksum "162050723619f11edf73859f50dff0a254e2c2e4903f8901fa744ae72e5f951d3f2f"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R10m/T32TPT_20210401T101559_B08_10m.jp2"
- view:incidence_angle 6.52534956196605
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:10m"
B09_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R60m/T32TPT_20210401T101559_B09_60m.jp2"
- type "image/jp2"
- title "NIR 3 (band 9) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.943
- eo:full_width_half_max 0.479
- name "B09"
- eo:common_name "nir09"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210401T101559_B09_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3746173
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.600730747698
- file:checksum "1620fa511fdba246b3628fdd1cb3009e9a16bbd75d96d34cad86dd3f206b5c30e476"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R60m/T32TPT_20210401T101559_B09_60m.jp2"
- view:incidence_angle 6.81271264289747
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:60m"
B11_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R20m/T32TPT_20210401T101559_B11_20m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 20m"
bands[] 1 items
0
- eo:center_wavelength 1.61
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210401T101559_B11_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33779711
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.78247786903
- file:checksum "162040bd7011ca2c7e90f69c4ecf90c024a3d33fb6aec68a13acfd9af9a6f2f8f238"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R20m/T32TPT_20210401T101559_B11_20m.jp2"
- view:incidence_angle 6.64287753485254
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B11_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R60m/T32TPT_20210401T101559_B11_60m.jp2"
- type "image/jp2"
- title "SWIR 1 (band 11) - 60m"
bands[] 1 items
0
- eo:center_wavelength 1.61
- eo:full_width_half_max 0.841
- name "B11"
- eo:common_name "swir16"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210401T101559_B11_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3748101
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 285.78247786903
- file:checksum "16209f3a49d03b40ef339706a191f6a78783ddecb357e73d64a0d8241f68980a1e75"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R60m/T32TPT_20210401T101559_B11_60m.jp2"
- view:incidence_angle 6.64287753485254
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B12_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R20m/T32TPT_20210401T101559_B12_20m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 20m"
bands[] 1 items
0
- eo:center_wavelength 2.186
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210401T101559_B12_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33760175
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.237545670033
- file:checksum "1620327f478c555829eac0256f05bb8d658ea5a99f3599b52952cfbe59dedbb3abfa"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R20m/T32TPT_20210401T101559_B12_20m.jp2"
- view:incidence_angle 6.73237708074428
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B12_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R60m/T32TPT_20210401T101559_B12_60m.jp2"
- type "image/jp2"
- title "SWIR 2 (band 12) - 60m"
bands[] 1 items
0
- eo:center_wavelength 2.186
- eo:full_width_half_max 1.16
- name "B12"
- eo:common_name "swir22"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210401T101559_B12_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3746005
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.237545670033
- file:checksum "1620b643c3d2caeb056d8c96df5061e9fb419769043d0b50a418f23c4fb512e37efa"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R60m/T32TPT_20210401T101559_B12_60m.jp2"
- view:incidence_angle 6.73237708074428
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
B8A_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R20m/T32TPT_20210401T101559_B8A_20m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 20m"
bands[] 1 items
0
- eo:center_wavelength 0.864
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210401T101559_B8A_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33910838
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.260435779888
- file:checksum "1620d9252223f5ffa9e40de84ed86eae5de6ed7a46ae542c619fc1e9b108af1c68b4"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R20m/T32TPT_20210401T101559_B8A_20m.jp2"
- view:incidence_angle 6.72747363457667
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:original"
- 3 "gsd:20m"
B8A_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R60m/T32TPT_20210401T101559_B8A_60m.jp2"
- type "image/jp2"
- title "NIR 2 (band 8A) - 60m"
bands[] 1 items
0
- eo:center_wavelength 0.864
- eo:full_width_half_max 0.441
- name "B8A"
- eo:common_name "nir08"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210401T101559_B8A_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3741040
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- view:azimuth 286.260435779888
- file:checksum "16206bf33b28638c086e954c3930b26d882929f195d0ff77f5fccaa9a9f26bfaa257"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R60m/T32TPT_20210401T101559_B8A_60m.jp2"
- view:incidence_angle 6.72747363457667
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 4 items
- 0 "data"
- 1 "reflectance"
- 2 "sampling:downsampled"
- 3 "gsd:60m"
Product
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/$value"
- type "application/zip"
- title "Zipped product"
auth:refs[] 1 items
- 0 "oidc"
- file:size 1274334181
- storage:refs "𒍟※"
- file:checksum "d501105292da5d05074de1a8167cd2c025a67e"
- alternate:name "HTTPS"
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE.zip"
roles[] 3 items
- 0 "data"
- 1 "metadata"
- 2 "archive"
SCL_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R20m/T32TPT_20210401T101559_SCL_20m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210401T101559_SCL_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 4847323
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620b21ac44df7183d8ec29916300fc0b067d14e400e06f9e5891c08baab39436d68"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R20m/T32TPT_20210401T101559_SCL_20m.jp2"
classification:classes[] 12 items
0
- percentage 0.00848
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
- percentage 0.0
2
- percentage 11.445066000000002
- name "dark_area_pixels"
- value 2
3
- percentage 1.843246
- name "cloud_shadows"
- value 3
4
- percentage 24.547213
- name "vegetation"
- value 4
5
- percentage 9.428353
- name "not_vegetated"
- value 5
6
- percentage 0.730444
- name "water"
- value 6
7
- percentage 1.329684
- name "unclassified"
- value 7
8
- percentage 3.422525
- name "cloud_medium_probability"
- value 8
9
- percentage 3.920867
- name "cloud_high_probability"
- value 9
10
- percentage 0.662459
- name "thin_cirrus"
- value 10
11
- percentage 42.670143
- name "snow"
- value 11
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "data"
- 1 "sampling:original"
- 2 "gsd:20m"
SCL_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R60m/T32TPT_20210401T101559_SCL_60m.jp2"
- type "image/jp2"
- title "Scene classfication map (SCL) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210401T101559_SCL_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 1157041
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162051adfac0920eebe733f000e37c7bbe5f5984e2da0e37500277b87e48ea35bb66"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R60m/T32TPT_20210401T101559_SCL_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
classification:classes[] 12 items
0
- name "no_data"
- value 0
- nodata True
1
- name "saturated_or_defective"
- value 1
2
- name "dark_area_pixels"
- value 2
3
- name "cloud_shadows"
- value 3
4
- name "vegetation"
- value 4
5
- name "not_vegetated"
- value 5
6
- name "water"
- value 6
7
- name "unclassified"
- value 7
8
- name "cloud_medium_probability"
- value 8
9
- name "cloud_high_probability"
- value 9
10
- name "thin_cirrus"
- value 10
11
- name "snow"
- value 11
roles[] 3 items
- 0 "data"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
TCI_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R10m/T32TPT_20210401T101559_TCI_10m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210401T101559_TCI_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 134382924
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620040a7e475f603aa2da2e7b7bc49bb54ad7776ab9ac56c8a0c39cb9d4cb271479"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R10m/T32TPT_20210401T101559_TCI_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 10980
- 1 10980
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:original"
- 2 "gsd:10m"
TCI_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R20m/T32TPT_20210401T101559_TCI_20m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210401T101559_TCI_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 33853538
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162001365a791b25424ac484e8c6a33eeeac70eaf5fd93eae61064c7681ca04644eb"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R20m/T32TPT_20210401T101559_TCI_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 5490
- 1 5490
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:20m"
TCI_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R60m/T32TPT_20210401T101559_TCI_60m.jp2"
- type "image/jp2"
- title "True color image"
bands[] 3 items
0
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.343
- name "B04"
- description "Red (band 4)"
- eo:common_name "red"
1
- eo:center_wavelength 0.559
- eo:full_width_half_max 0.291
- name "B03"
- description "Green (band 3)"
- eo:common_name "green"
2
- eo:center_wavelength 0.492
- eo:full_width_half_max 0.266
- name "B02"
- description "Blue (band 2)"
- eo:common_name "blue"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210401T101559_TCI_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3775513
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240.0
- 2 709800.0
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "16204c95b4d7f7346829a8cf147df9cb40bed4d5d5fbfa7be7f021b6870f2697519a"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R60m/T32TPT_20210401T101559_TCI_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint8"
proj:shape[] 2 items
- 0 1830
- 1 1830
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 3 items
- 0 "visual"
- 1 "sampling:downsampled"
- 2 "gsd:60m"
WVP_10m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R10m/T32TPT_20210401T101559_WVP_10m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 10m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R10m)/Nodes(T32TPT_20210401T101559_WVP_10m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 91894327
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "1620513509f79aa64b2f9c78d767c9c4f49caff42820d086a2803b5d5d2becae1e51"
proj:transform[] 6 items
- 0 10.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -10.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R10m/T32TPT_20210401T101559_WVP_10m.jp2"
- gsd 10
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 10980
- 1 10980
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:10m"
WVP_20m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R20m/T32TPT_20210401T101559_WVP_20m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 20m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R20m)/Nodes(T32TPT_20210401T101559_WVP_20m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 29528245
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162032ad3af1d8e67864a48f0efc4c6cb1ed2d118d6d15bd3f210b36b53838ef5cd8"
proj:transform[] 6 items
- 0 20.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -20.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R20m/T32TPT_20210401T101559_WVP_20m.jp2"
- gsd 20
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 5490
- 1 5490
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:20m"
WVP_60m
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R60m/T32TPT_20210401T101559_WVP_60m.jp2"
- type "image/jp2"
- title "Water vapour (WVP) - 60m"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(IMG_DATA)/Nodes(R60m)/Nodes(T32TPT_20210401T101559_WVP_60m.jp2)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 3742054
proj:bbox[] 4 items
- 0 600000.0
- 1 5190240
- 2 709800
- 3 5300040.0
- proj:code "EPSG:32632"
- file:checksum "162090e599679cb42a07d0ade4586f2d714a2695bf9fc03a608c1d951466a4d2f61b"
proj:transform[] 6 items
- 0 60.0
- 1 0.0
- 2 600000.0
- 3 0.0
- 4 -60.0
- 5 5300040.0
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/IMG_DATA/R60m/T32TPT_20210401T101559_WVP_60m.jp2"
- gsd 60
- nodata 0
auth:refs[] 1 items
- 0 "s3"
- data_type "uint16"
proj:shape[] 2 items
- 0 1830
- 1 1830
- raster:scale 0.0001
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- raster:offset -0.1
- alternate:name "S3"
roles[] 2 items
- 0 "data"
- 1 "gsd:60m"
thumbnail
- href "https://datahub.creodias.eu/odata/v1/Assets(56c2a104-d1f2-4ea8-b0b5-a070cd9a0654)/$value"
- type "image/jpeg"
- title "Quicklook"
alternate
s3
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614-ql.jpg"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
auth:refs[] 1 items
- 0 "oidc"
- file:size 50727
- file:checksum "d50110c6e45ebaa769479e92777f09f99761b4"
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614-ql.jpg"
- data_type "uint8"
- proj:code None
proj:shape[] 2 items
- 0 343
- 1 343
- alternate:name "HTTPS"
roles[] 2 items
- 0 "thumbnail"
- 1 "overview"
safe_manifest
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/manifest.safe"
- type "application/xml"
- title "manifest.safe"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(manifest.safe)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 68952
- file:checksum "d50110021b0b1c6551aeea0b3ae54c16cbd742"
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/manifest.safe"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
granule_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/MTD_TL.xml"
- type "application/xml"
- title "MTD_TL.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes()/Nodes(GRANULE)/Nodes(L2A_T32TPT_A021255_20210401T102326)/Nodes(MTD_TL.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 547731
- file:checksum "d50120149509558c0b052cbe59ba84f4e2a6df987f2da796d55048b190013a3a02d715"
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/GRANULE/L2A_T32TPT_A021255_20210401T102326/MTD_TL.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
inspire_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/INSPIRE.xml"
- type "application/xml"
- title "INSPIRE.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(INSPIRE.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 18683
- file:checksum "d50120ed8f9c6cd4049931551691f8fc178a97d3813903ff5db2bd10824788abd6bc7e"
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/INSPIRE.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
product_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/MTD_MSIL2A.xml"
- type "application/xml"
- title "MTD_MSIL2A.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes(MTD_MSIL2A.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 55060
- file:checksum "d5012047a094055a84d4cf0a59dec2a8a354efee69dda912cad4d88b00902edba5f534"
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/MTD_MSIL2A.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
datastrip_metadata
- href "s3://eodata/Sentinel-2/MSI/L2A_N0500/2021/04/01/S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/DATASTRIP/DS_S2RP_20230520T032614_S20210401T102326/MTD_DS.xml"
- type "application/xml"
- title "MTD_DS.xml"
alternate
https
- href "https://zipper.dataspace.copernicus.eu/odata/v1/Products(3d225806-c0ec-4e33-9d9e-90368b735e99)/Nodes(S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE)/Nodes()/Nodes(DATASTRIP)/Nodes(DS_S2RP_20230520T032614_S20210401T102326)/Nodes(MTD_DS.xml)/$value"
auth:refs[] 1 items
- 0 "oidc"
storage:refs[] 0 items
- alternate:name "HTTPS"
- file:size 24429289
- file:checksum "d501200bfe4eaf14b038e5365908f2561676bf88d8e0a8b0ffc825263f800c51c34f39"
- file:local_path "S2B_MSIL2A_20210401T101559_N0500_R065_T32TPT_20230520T032614.SAFE/DATASTRIP/DS_S2RP_20230520T032614_S20210401T102326/MTD_DS.xml"
auth:refs[] 1 items
- 0 "s3"
storage:refs[] 2 items
- 0 "cdse-s3"
- 1 "creodias-s3"
- alternate:name "S3"
roles[] 1 items
- 0 "metadata"
- collection "sentinel-2-l2a"
Let's see which area the items (from different orbits) cover.
import geopandas as gpd
items_gdf = gpd.GeoDataFrame.from_features(items.to_dict(), crs="epsg:4326")
items_gdf.explore(column='sat:relative_orbit', style_kwds={"fill": False}, categorical=True)
Stack the items into a DataArray and define a subset¶
Use stackstac
to turn those STAC items into a lazy xarray. Without specifying anything, this makes use of dask and reads the data in chunks, with one chunk shaped (1, 1, 1024, 1024) in the time, band, y, x dimensions (Read more about chunk sizes here, here, and here.). Using all the defaults, our data will be in its native coordinate reference system, at the finest resolution of all the assets. If this metadata is not set on all the items/assets or if you want a different CRS/resolution, specify this.
%time stack = stackstac.stack(items, epsg=32632, resolution=10)
CPU times: total: 156 ms Wall time: 143 ms
Now print info about this xarray.DataArray called 'stack'. Note that everything has run quickly so far, despite the large data volume covered by our query. Up to now, we are only working with metadata, no download or processing of any pixel values.
stack
<xarray.DataArray 'stackstac-0c897e1e7d23a4b88e6617cf1192e0ff' (time: 24, band: 36, y: 11558, x: 11560)> Size: 924GB dask.array<fetch_raster_window, shape=(24, 36, 11558, 11560), dtype=float64, chunksize=(1, 1, 1024, 1024), chunktype=numpy.ndarray> Coordinates: (12/53) * time (time) datetime64[ns] 192B 2021-04... id (time) <U60 6kB 'S2B_MSIL2A_202104... * band (band) <U7 1kB 'AOT_10m' ... 'WVP_... * x (x) float64 92kB 5.982e+05 ... 7.1... * y (y) float64 92kB 5.303e+06 ... 5.1... sat:relative_orbit (time) int32 96B 65 22 65 ... 65 22 ... ... title (band) <U37 5kB 'Aerosol optical t... storage:refs object 8B {'creodias-s3', 'cdse-s3'} bands (band) object 288B None None ... None description (band) object 288B None None ... None classification:classes (band) object 288B None None ... None epsg int32 4B 32632 Attributes: spec: RasterSpec(epsg=32632, bounds=(598150, 5187400, 713750, 5302... crs: epsg:32632 transform: | 10.00, 0.00, 598150.00|\n| 0.00,-10.00, 5302980.00|\n| 0.0... resolution: 10
We are only interested in a relatively small area around our main point of interest (defined above for intersection). So we convert the coordinates of this point into the native CRS of the satellite data, add a buffer and then use this rectangle to slice ("clip") the stacked array spatially.
x_utm, y_utm = pyproj.Proj(stack.crs)(lon, lat) # Re-project the geographic point coordinates to the sat data CRS (i.e. EPSG:32632)
buffer = 5000 # meters
Now we have a much smaller DataArray (with 1000 by 1000 cells in x/y) called 'stack_aoi'.
stack_aoi = stack.loc[..., y_utm+buffer:y_utm-buffer, x_utm-buffer:x_utm+buffer]
stack_aoi
<xarray.DataArray 'stackstac-0c897e1e7d23a4b88e6617cf1192e0ff' (time: 24, band: 36, y: 1000, x: 1000)> Size: 7GB dask.array<getitem, shape=(24, 36, 1000, 1000), dtype=float64, chunksize=(1, 1, 972, 575), chunktype=numpy.ndarray> Coordinates: (12/53) * time (time) datetime64[ns] 192B 2021-04... id (time) <U60 6kB 'S2B_MSIL2A_202104... * band (band) <U7 1kB 'AOT_10m' ... 'WVP_... * x (x) float64 8kB 6.758e+05 ... 6.85... * y (y) float64 8kB 5.242e+06 ... 5.23... sat:relative_orbit (time) int32 96B 65 22 65 ... 65 22 ... ... title (band) <U37 5kB 'Aerosol optical t... storage:refs object 8B {'creodias-s3', 'cdse-s3'} bands (band) object 288B None None ... None description (band) object 288B None None ... None classification:classes (band) object 288B None None ... None epsg int32 4B 32632 Attributes: spec: RasterSpec(epsg=32632, bounds=(598150, 5187400, 713750, 5302... crs: epsg:32632 transform: | 10.00, 0.00, 598150.00|\n| 0.00,-10.00, 5302980.00|\n| 0.0... resolution: 10
We want only the four 10-m bands and the Scene Classification (SCL) layer.
#stack_aoi = stack_aoi.sel(band = ['blue', 'green', 'red', 'nir', 'scl']) # band names in the collection retreived via the element84/AWS endpoint
stack_aoi = stack_aoi.sel(band = ['B02_10m', 'B03_10m', 'B04_10m', 'B08_10m', 'SCL_20m']) # band names in the collection retreived via the CDSE endpoint
stack_aoi
<xarray.DataArray 'stackstac-0c897e1e7d23a4b88e6617cf1192e0ff' (time: 24, band: 5, y: 1000, x: 1000)> Size: 960MB dask.array<getitem, shape=(24, 5, 1000, 1000), dtype=float64, chunksize=(1, 1, 972, 575), chunktype=numpy.ndarray> Coordinates: (12/53) * time (time) datetime64[ns] 192B 2021-04... id (time) <U60 6kB 'S2B_MSIL2A_202104... * band (band) <U7 140B 'B02_10m' ... 'SCL... * x (x) float64 8kB 6.758e+05 ... 6.85... * y (y) float64 8kB 5.242e+06 ... 5.23... sat:relative_orbit (time) int32 96B 65 22 65 ... 65 22 ... ... title (band) <U37 740B 'Blue (band 2) - ... storage:refs object 8B {'creodias-s3', 'cdse-s3'} bands (band) object 40B None None ... None description (band) object 40B None None ... None classification:classes (band) object 40B None None ... None epsg int32 4B 32632 Attributes: spec: RasterSpec(epsg=32632, bounds=(598150, 5187400, 713750, 5302... crs: epsg:32632 transform: | 10.00, 0.00, 598150.00|\n| 0.00,-10.00, 5302980.00|\n| 0.0... resolution: 10
Load data¶
Now we trigger the stacking of these selected bands for our area-of-interest by calling compute()
, i.e. we load the data into memory. This may take some minutes but then enables us to analyse and plot the data faster. Alternatively (also for larger datasets), we could continue with the lazy array and in subsequent steps only load what is needed.
%%time
data = stack_aoi.compute();
CPU times: total: 4min 31s Wall time: 16min 25s
c:\Users\Andi\mambaforge\envs\etrainee_m1_25-1\Lib\site-packages\dask\array\numpy_compat.py:57: RuntimeWarning: invalid value encountered in divide x = np.divide(x1, x2, out) c:\Users\Andi\mambaforge\envs\etrainee_m1_25-1\Lib\site-packages\dask\_task_spec.py:741: RuntimeWarning: invalid value encountered in divide return self.func(*new_argspec) c:\Users\Andi\mambaforge\envs\etrainee_m1_25-1\Lib\site-packages\dask\_task_spec.py:741: RuntimeWarning: divide by zero encountered in divide return self.func(*new_argspec) c:\Users\Andi\mambaforge\envs\etrainee_m1_25-1\Lib\site-packages\dask\array\numpy_compat.py:57: RuntimeWarning: invalid value encountered in divide x = np.divide(x1, x2, out) c:\Users\Andi\mambaforge\envs\etrainee_m1_25-1\Lib\site-packages\dask\_task_spec.py:741: RuntimeWarning: invalid value encountered in divide return self.func(*new_argspec)
data
<xarray.DataArray 'stackstac-0c897e1e7d23a4b88e6617cf1192e0ff' (time: 24, band: 5, y: 1000, x: 1000)> Size: 960MB array([[[[1.3528e+04, 1.2521e+04, 1.2416e+04, ..., 1.1580e+03, 1.1790e+03, 1.1710e+03], [1.2551e+04, 1.2690e+04, 1.2697e+04, ..., 1.1720e+03, 1.1860e+03, 1.1850e+03], [1.1873e+04, 1.2207e+04, 1.2695e+04, ..., 1.1870e+03, 1.1860e+03, 1.1880e+03], ..., [1.1030e+03, 1.1210e+03, 1.3670e+03, ..., 2.2940e+03, 2.7770e+03, 3.2320e+03], [1.1070e+03, 1.0640e+03, 1.1740e+03, ..., 2.7150e+03, 2.6980e+03, 3.0950e+03], [1.2290e+03, 1.0570e+03, 1.0750e+03, ..., 2.8710e+03, 2.4590e+03, 2.3510e+03]], [[1.3537e+04, 1.2488e+04, 1.2287e+04, ..., 1.1580e+03, 1.2030e+03, 1.1840e+03], [1.2631e+04, 1.2695e+04, 1.2686e+04, ..., 1.1600e+03, 1.2660e+03, 1.2140e+03], [1.1856e+04, 1.2240e+04, 1.2855e+04, ..., 1.1960e+03, 1.2610e+03, 1.2210e+03], ... [3.5140e+03, 3.7280e+03, 3.4360e+03, ..., 4.3960e+03, 4.8440e+03, 5.7480e+03], [3.6240e+03, 3.5140e+03, 3.4100e+03, ..., 4.0880e+03, 4.0420e+03, 4.2040e+03], [3.0260e+03, 3.0700e+03, 3.3040e+03, ..., 4.2960e+03, 4.2720e+03, 3.4620e+03]], [[2.0000e+00, 2.0000e+00, 2.0000e+00, ..., 4.0000e+00, 4.0000e+00, 4.0000e+00], [2.0000e+00, 2.0000e+00, 2.0000e+00, ..., 4.0000e+00, 4.0000e+00, 4.0000e+00], [2.0000e+00, 2.0000e+00, 2.0000e+00, ..., 4.0000e+00, 4.0000e+00, 4.0000e+00], ..., [4.0000e+00, 4.0000e+00, 4.0000e+00, ..., 4.0000e+00, 4.0000e+00, 4.0000e+00], [4.0000e+00, 4.0000e+00, 4.0000e+00, ..., 4.0000e+00, 4.0000e+00, 4.0000e+00], [4.0000e+00, 4.0000e+00, 4.0000e+00, ..., 4.0000e+00, 4.0000e+00, 4.0000e+00]]]]) Coordinates: (12/53) * time (time) datetime64[ns] 192B 2021-04... id (time) <U60 6kB 'S2B_MSIL2A_202104... * band (band) <U7 140B 'B02_10m' ... 'SCL... * x (x) float64 8kB 6.758e+05 ... 6.85... * y (y) float64 8kB 5.242e+06 ... 5.23... sat:relative_orbit (time) int32 96B 65 22 65 ... 65 22 ... ... title (band) <U37 740B 'Blue (band 2) - ... storage:refs object 8B {'creodias-s3', 'cdse-s3'} bands (band) object 40B None None ... None description (band) object 40B None None ... None classification:classes (band) object 40B None None ... None epsg int32 4B 32632 Attributes: spec: RasterSpec(epsg=32632, bounds=(598150, 5187400, 713750, 5302... crs: epsg:32632 transform: | 10.00, 0.00, 598150.00|\n| 0.00,-10.00, 5302980.00|\n| 0.0... resolution: 10
Try plotting some data (July 2021 only):
data.sel(band='B08_10m').sel(time='2021-07').plot.imshow(col='time', robust=True, cbar_kwargs = {'label': 'B08 reflectance'})
<xarray.plot.facetgrid.FacetGrid at 0x18bca291cd0>
Do you remember why the reflectance is not within 0-1 but has much larger values?
Cloud masking¶
We use the scene classification provided by ESA via the SCL band as a simple (but not the best) means to mask clouds and other problematic pixels.
import dask.array as da
scl = data.sel(band=["SCL_20m"])
# Sentinel-2 Scene Classification Map: nodata, saturated/defective, dark, cloud shadow, cloud med. prob., cloud high prob., cirrus
invalid_data = da.isin(scl, [0, 1, 2, 3, 8, 9, 10])
valid_data = data.where(~invalid_data)
# Show some of the cloud masked data
valid_data.sel(band='B08_10m').sel(time='2021-07').plot.imshow(col='time', robust=True)
<xarray.plot.facetgrid.FacetGrid at 0x18b801f8ec0>
Let's show cloud-masked RGB true color composites.
valid_data.sel(time='2021-07').sel(band=['B04_10m', 'B03_10m', 'B02_10m']).plot.imshow(col='time', robust=True)
<xarray.plot.facetgrid.FacetGrid at 0x18bcc027dd0>
# Compute the NDVI from the NIR (B8) and red (B4) bands
nir, red = valid_data.sel(band='B08_10m'), valid_data.sel(band='B04_10m')
NDVI = (nir - red) / (nir + red)
NDVI
is a new DataArray. Let's plot one month of NDVI rasters.
NDVI.sel(time='2021-07').plot.imshow(col='time', cmap="PRGn", robust=True, cbar_kwargs = {'label': 'NDVI'})
<xarray.plot.facetgrid.FacetGrid at 0x18b83808d40>
Write data to disk¶
If you want to select the NDVI raster closest to a specific date and export it as a GeoTIFF, just run this line:
NDVI.sel(time='2021-07-15', method='nearest').rio.to_raster(r"C:\work\etrainee\stac_exports/S2-NDVI_midjuly.tif")
Now let's write all NDVI rasters of one selected month to a netCDF file (see also the xarray user guide for other formats and more details). We drop all non-index coordinates in this dataset.
NDVI.sel(time='2021-07').reset_coords(drop=True).to_netcdf(r"C:\work\etrainee\stac_exports/S2-NDVI_2021-07.nc", engine="netcdf4")
We can use one of xarray’s open methods such as xarray.open_dataset
to load netCDF files with the default engine, it is recommended to use decode_coords=”all”. This will load the grid mapping variable into coordinates for compatibility with rioxarray.
xds = xarray.open_dataset(r"C:\work\etrainee\stac_exports/S2-NDVI_2021-07.nc", decode_coords="all")
xds
<xarray.Dataset> Size: 40MB Dimensions: (time: 5, x: 1000, y: 1000) Coordinates: * time (time) datetime64[ns] 40B 202... * x (x) float64 8kB 6.758e+05 ...... * y (y) float64 8kB 5.242e+06 ...... Data variables: stackstac-0c897e1e7d23a4b88e6617cf1192e0ff (time, y, x) float64 40MB ...
We can rename the variable(s) of a Dataset according to a dictionary. Let's do so if we want to be able to call NDVI easily as xds['NDVI']
in the following.
xds = xds.rename(name_dict = {'stackstac-0c897e1e7d23a4b88e6617cf1192e0ff': 'NDVI'})
xds
<xarray.Dataset> Size: 40MB Dimensions: (time: 5, x: 1000, y: 1000) Coordinates: * time (time) datetime64[ns] 40B 2021-07-02T10:10:31.024000 ... 2021-07... * x (x) float64 8kB 6.758e+05 6.758e+05 ... 6.858e+05 6.858e+05 * y (y) float64 8kB 5.242e+06 5.242e+06 ... 5.232e+06 5.232e+06 Data variables: NDVI (time, y, x) float64 40MB ...
xds['NDVI'].plot.imshow(col='time', cmap="PRGn", robust=True, cbar_kwargs = {'label': 'NDVI'})
<xarray.plot.facetgrid.FacetGrid at 0x18b858d1fd0>
NDVI.sel(time='2021-07').interpolate_na(dim='time').plot(col='time', cmap="PRGn", robust=True, cbar_kwargs = {'label': 'NDVI'})
<xarray.plot.facetgrid.FacetGrid at 0x18b874504d0>
Resampling¶
We resample/aggregate to one month temporal resolution by computing the mean for each month. Other aggregations (e.g. maximum) can be achieved similarly. Note how we can absolutely define the range of values to be displayed (important for visual comparisons).
NDVI.resample(time='1ME').mean().plot(col='time', cmap="PRGn", robust=True, vmin=-0.2, vmax=0.6, cbar_kwargs = {'label': 'Monthly mean NDVI'})
<xarray.plot.facetgrid.FacetGrid at 0x18b89cced20>
Trend analysis¶
The xarrayutils package contains a convenient linear_trend()
function. We use this to fit a linear least-squares trendline to our NDVI time series.
from xarrayutils import linear_trend
NDVI_regressed = linear_trend(NDVI, 'time')
Plot maps (with default colormaps) for the resulting slope of the estimated linear trend along with r-value (Pearson correlation coefficient), p-value (for a hypothesis test whose null hypothesis is that the slope is zero), and standard error (of the estimated slope). We use matplotlib syntax and functions to configure the plot.
from matplotlib import pyplot as plt
fig, axes = plt.subplots(2,2, figsize=(15,10), sharex=True, sharey=True)
NDVI_regressed.slope.plot(robust=True, ax=axes[0,0])
NDVI_regressed.r_value.plot(robust=True, ax=axes[0,1])
NDVI_regressed.p_value.plot(robust=True, ax=axes[1,0])
NDVI_regressed.std_err.plot(robust=True, ax=axes[1,1])
for ax, param in zip(axes.flat, ['slope', 'r-value', 'p-value', 'std error']):
ax.set_title(f'NDVI trend 04-08/2021: {param}')
fig.tight_layout()
Create an interactive map to inspect the slope of the trend in more detail.
import hvplot.xarray
import holoviews as hv
NDVI_regressed.slope.hvplot(x='x', y='y', aspect=1, clim=(-0.02,0.02), cmap='coolwarm', title='NDVI slope April - Aug')