L1C_COLLECTION_URL = "https://stac.dataspace.copernicus.eu/v1/collections/sentinel-2-l1c"
STAC_ROOT_URL = "https://stac.dataspace.copernicus.eu/v1"
w,s,e,n = 10.386, 44.437, 11.423, 44.973
spatial_extent = { "west": w, "south": s, "east": e, "north": n}
# ATTENTION: Inclusion of the second date in the search depends on the query method (see below).
temporal_extent=["2026-04-17", "2026-05-01"]FORCE Time Series Analysis
Recap
You should use pystac_client based querying if your inputs encompass more than just a handful of items
import getpass
from openeo.rest.stac_resource import StacResource
from openeo.internal.graph_building import PGNode
# Make sure to choose a unique name
processing_name = "Modena"
force_l2_stac_resource = StacResource(
graph=PGNode(
process_id="force_level2",
arguments={
"stac_document": query_pg,
"name": processing_name,
"do_brdf": True,
}
),
connection=connection,
)
merge = f"{getpass.getuser()}/experiments/{processing_name}"
force_l2_stac_resource.export_workspace(
workspace="apex-force-results-workspace",
merge=merge,
);from openeo.internal.graph_building import PGNode
from openeo.rest.stac_resource import StacResource
query_catalog = transform_item_collection_to_catalog_with_links(item_collection)
processing_name = "Modena"
force_l2_stac_resource = StacResource(
graph=PGNode(
process_id="force_level2",
arguments={
"stac_document": query_catalog.to_dict(),
"name": processing_name,
"do_brdf": True,
# level 2 parameters
}
),
connection=connection,
)
merge = f"{getpass.getuser()}/experiments/{processing_name}"
print(merge)
force_l2_stac_resource.export_workspace(
workspace="apex-force-results-workspace",
merge=merge,
)hannes/experiments/Modena
Time Series Analysis
The openEO process for FORCE Time Series Analysis (TSA) is called force_tsa. Like the level 2 process, it takes most of the parameters usually passed to the TSA module of FORCE using the parameter file. Parameters use snake_case format instead of SCREAMING_SNAKE_CASE (used in FORCE parameter files).
Details of parametrization are discussed in the dedicated article.
Authenticated using refresh token.
Authenticated using refresh token.
Using FORCE level 2 results as an input
The process graph for FORCE TSA built in the same way as the level 2 process graph is built. The main input for FORCE TSA is the STAC catalog (or item) from the level 2 processing.
We can access the STAC catalog produced by our level 2 job in the workspace, described in level 2 processing article.
It is important to remember the merge parameter passed to export_workspace, this is the path under which we can find the catalog later.
hannes/experiments/Modena
Remember, the dedicated workspace for FORCE has the URL
TSA Parameters
Some parameters can be set a-priori or from prior knowledge of our level 2 processing parameters
For other parameters, we may want to inspect the metadata of the level 2 processing. For example, we can extract the tiles from the asset names of the STAC item describing the level 2 datacube.
https://s3.waw4-1.cloudferro.com/apex-force-results-waw4-1-exotc5yuexi2c5tvwqhoivj62fz8v0uupy0me/hannes/experiments/Modena/catalog.json
- type "Feature"
- stac_version "1.1.0"
stac_extensions[] 6 items
- 0 "https://stac-extensions.github.io/file/v2.1.0/schema.json"
- 1 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v2.0.0/schema.json"
- 3 "https://stac-extensions.github.io/product/v1.0.0/schema.json"
- 4 "https://stac-extensions.github.io/processing/v1.2.0/schema.json"
- 5 "https://stac-extensions.github.io/eo/v2.0.0/schema.json"
- id "Modena-level2"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.209079193633594
- 1 45.72002962622761
1[] 2 items
- 0 13.209079193633594
- 1 42.70226423204237
2[] 2 items
- 0 9.066749794325904
- 1 42.70226423204237
3[] 2 items
- 0 9.066749794325904
- 1 45.72002962622761
4[] 2 items
- 0 13.209079193633594
- 1 45.72002962622761
bbox[] 4 items
- 0 9.066749794325904
- 1 42.70226423204237
- 2 13.209079193633594
- 3 45.72002962622761
properties
- created "2026-08-19T12:30:17.237112+00:00Z"
- updated "2026-08-19T12:30:17.237112+00:00Z"
- proj:wkt2 "PROJCS["BU MEaSUREs Lambert Azimuthal Equal Area - EU - V01",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["degree",0.0174532925199433]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["false_easting",0.0],PARAMETER["false_northing",0.0],PARAMETER["longitude_of_center",20],PARAMETER["latitude_of_center",55],UNIT["meter",1.0]]"
- processing:level "L2"
processing:software
- apex-force-openeo "0.5.6"
- product:type "FORCE_L2_ARD"
bands[] 10 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.065
- name "B2"
- eo:common_name "blue"
1
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.035
- name "B3"
- eo:common_name "green"
2
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.031
- name "B4"
- eo:common_name "red"
3
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.015
- name "B5"
- eo:common_name "rededge071"
4
- eo:center_wavelength 0.74
- eo:full_width_half_max 0.014
- name "B6"
- eo:common_name "rededge075"
5
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.02
- name "B7"
- eo:common_name "rededge078"
6
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.115
- name "B8"
- eo:common_name "nir08"
7
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.02
- name "B8A"
- eo:common_name "nir"
8
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.093
- name "B11"
- eo:common_name "swir16"
9
- eo:center_wavelength 2.202
- eo:full_width_half_max 0.181
- name "B12"
- eo:common_name "swir22"
- datetime "2026-08-19T12:30:17.237112Z"
links[] 3 items
0
- rel "root"
- href "https://s3.waw4-1.cloudferro.com/apex-force-results-waw4-1-exotc5yuexi2c5tvwqhoivj62fz8v0uupy0me/hannes/experiments/Modena/catalog.json"
- type "application/json"
1
- rel "self"
- href "https://s3.waw4-1.cloudferro.com/apex-force-results-waw4-1-exotc5yuexi2c5tvwqhoivj62fz8v0uupy0me/hannes/experiments/Modena/Modena-level2.json"
- type "application/json"
2
- rel "parent"
- href "https://s3.waw4-1.cloudferro.com/apex-force-results-waw4-1-exotc5yuexi2c5tvwqhoivj62fz8v0uupy0me/hannes/experiments/Modena/catalog.json"
- type "application/json"
assets
datacube-definition.prj
- href "./datacube-definition.prj"
- type "text/plain"
- title "Data Cube Definition"
- file:local_path "datacube-definition.prj"
roles[] 1 items
- 0 "metadata"
CITEME_0x6e.txt
- href "./CITEME_0x6e.txt"
- type "text/plain"
- title "CITEME"
- file:local_path "CITEME_0x6e.txt"
roles[] 1 items
- 0 "metadata"
X0031_Y0029.20260417_LEVEL2_SEN2C_BOA
- href "./X0031_Y0029/20260417_LEVEL2_SEN2C_BOA.tif"
- type "image/tiff; application=geotiff"
- title "X0031 Y0029 20260417 LEVEL2 SEN2C BOA"
- file:size 263545206
- file:local_path "X0031_Y0029/20260417_LEVEL2_SEN2C_BOA.tif"
- file:checksum "12208a6104a6d343e1d4f20ca2db9f6daa1b3c795d089ec70bd259993c88af8b7e50"
- acquisition_date "2026-04-17T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2C"
- sensor_id "Sentinel-2C MultiSpectral Instrument"
- product_type_key "BOA"
- product_type "Bottom-of-Atmosphere Reflectance"
bands[] 10 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.065
- name "B2"
- eo:common_name "blue"
1
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.035
- name "B3"
- eo:common_name "green"
2
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.031
- name "B4"
- eo:common_name "red"
3
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.015
- name "B5"
- eo:common_name "rededge071"
4
- eo:center_wavelength 0.74
- eo:full_width_half_max 0.014
- name "B6"
- eo:common_name "rededge075"
5
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.02
- name "B7"
- eo:common_name "rededge078"
6
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.115
- name "B8"
- eo:common_name "nir08"
7
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.02
- name "B8A"
- eo:common_name "nir"
8
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.093
- name "B11"
- eo:common_name "swir16"
9
- eo:center_wavelength 2.202
- eo:full_width_half_max 0.181
- name "B12"
- eo:common_name "swir22"
- proj:code "EPSG:10596"
- proj:wkt2 "PROJCS["BU MEaSUREs Lambert Azimuthal Equal Area - EU - V01",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",55],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1],AXIS["Easting",EAST],AXIS["Northing",NORTH]]"
proj:bbox[] 4 items
- 0 -855560.0
- 1 -1153755.0
- 2 -705560.0
- 3 -1003755.0
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 -705560.0
- 1 -1153755.0
1[] 2 items
- 0 -705560.0
- 1 -1003755.0
2[] 2 items
- 0 -855560.0
- 1 -1003755.0
3[] 2 items
- 0 -855560.0
- 1 -1153755.0
4[] 2 items
- 0 -705560.0
- 1 -1153755.0
proj:transform[] 9 items
- 0 20.0
- 1 0.0
- 2 -855560.0
- 3 0.0
- 4 -20.0
- 5 -1003755.0
- 6 0.0
- 7 0.0
- 8 1.0
proj:shape[] 2 items
- 0 7500
- 1 7500
proj:centroid
- lat 44.809435294304556
- lon 10.13642482433122
roles[] 1 items
- 0 "data"
X0031_Y0029.20260417_LEVEL2_SEN2C_OVV
- href "./X0031_Y0029/20260417_LEVEL2_SEN2C_OVV.jpg"
- type "image/jpeg"
- title "X0031 Y0029 20260417 LEVEL2 SEN2C OVV"
- file:size 149276
- file:local_path "X0031_Y0029/20260417_LEVEL2_SEN2C_OVV.jpg"
- file:checksum "12200e9fb161c9d20736650076450748cd09297603a38b67a4c99b7ea6318e1bde38"
- acquisition_date "2026-04-17T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2C"
- sensor_id "Sentinel-2C MultiSpectral Instrument"
- product_type_key "OVV"
roles[] 1 items
- 0 "thumbnail"
X0031_Y0029.20260417_LEVEL2_SEN2C_QAI
- href "./X0031_Y0029/20260417_LEVEL2_SEN2C_QAI.tif"
- type "image/tiff; application=geotiff"
- title "X0031 Y0029 20260417 LEVEL2 SEN2C QAI"
- file:size 2055168
- file:local_path "X0031_Y0029/20260417_LEVEL2_SEN2C_QAI.tif"
- file:checksum "122041340c8df9798ca98e80df6c5cd5b3bcdadc52134475fc968ef162059f62fe53"
- acquisition_date "2026-04-17T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2C"
- sensor_id "Sentinel-2C MultiSpectral Instrument"
- product_type_key "QAI"
- product_type "Quality Assurance Information"
- proj:code "EPSG:10596"
- proj:wkt2 "PROJCS["BU MEaSUREs Lambert Azimuthal Equal Area - EU - V01",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",55],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1],AXIS["Easting",EAST],AXIS["Northing",NORTH]]"
proj:bbox[] 4 items
- 0 -855560.0
- 1 -1153755.0
- 2 -705560.0
- 3 -1003755.0
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 -705560.0
- 1 -1153755.0
1[] 2 items
- 0 -705560.0
- 1 -1003755.0
2[] 2 items
- 0 -855560.0
- 1 -1003755.0
3[] 2 items
- 0 -855560.0
- 1 -1153755.0
4[] 2 items
- 0 -705560.0
- 1 -1153755.0
proj:transform[] 9 items
- 0 20.0
- 1 0.0
- 2 -855560.0
- 3 0.0
- 4 -20.0
- 5 -1003755.0
- 6 0.0
- 7 0.0
- 8 1.0
proj:shape[] 2 items
- 0 7500
- 1 7500
proj:centroid
- lat 44.809435294304556
- lon 10.13642482433122
roles[] 4 items
- 0 "data-mask"
- 1 "water-mask"
- 2 "data-mask"
- 3 "land-water"
X0031_Y0029.20260419_LEVEL2_SEN2A_BOA
- href "./X0031_Y0029/20260419_LEVEL2_SEN2A_BOA.tif"
- type "image/tiff; application=geotiff"
- title "X0031 Y0029 20260419 LEVEL2 SEN2A BOA"
- file:size 264833878
- file:local_path "X0031_Y0029/20260419_LEVEL2_SEN2A_BOA.tif"
- file:checksum "12203e23dfd03f13bce1284017624750867deb1d24f6ed972fa618dd53b07295ef47"
- acquisition_date "2026-04-19T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2A"
- sensor_id "Sentinel-2A MultiSpectral Instrument"
- product_type_key "BOA"
- product_type "Bottom-of-Atmosphere Reflectance"
bands[] 10 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.065
- name "B2"
- eo:common_name "blue"
1
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.035
- name "B3"
- eo:common_name "green"
2
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.031
- name "B4"
- eo:common_name "red"
3
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.015
- name "B5"
- eo:common_name "rededge071"
4
- eo:center_wavelength 0.74
- eo:full_width_half_max 0.014
- name "B6"
- eo:common_name "rededge075"
5
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.02
- name "B7"
- eo:common_name "rededge078"
6
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.115
- name "B8"
- eo:common_name "nir08"
7
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.02
- name "B8A"
- eo:common_name "nir"
8
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.093
- name "B11"
- eo:common_name "swir16"
9
- eo:center_wavelength 2.202
- eo:full_width_half_max 0.181
- name "B12"
- eo:common_name "swir22"
- proj:code "EPSG:10596"
- proj:wkt2 "PROJCS["BU MEaSUREs Lambert Azimuthal Equal Area - EU - V01",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",55],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1],AXIS["Easting",EAST],AXIS["Northing",NORTH]]"
proj:bbox[] 4 items
- 0 -855560.0
- 1 -1153755.0
- 2 -705560.0
- 3 -1003755.0
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 -705560.0
- 1 -1153755.0
1[] 2 items
- 0 -705560.0
- 1 -1003755.0
2[] 2 items
- 0 -855560.0
- 1 -1003755.0
3[] 2 items
- 0 -855560.0
- 1 -1153755.0
4[] 2 items
- 0 -705560.0
- 1 -1153755.0
proj:transform[] 9 items
- 0 20.0
- 1 0.0
- 2 -855560.0
- 3 0.0
- 4 -20.0
- 5 -1003755.0
- 6 0.0
- 7 0.0
- 8 1.0
proj:shape[] 2 items
- 0 7500
- 1 7500
proj:centroid
- lat 44.809435294304556
- lon 10.13642482433122
roles[] 1 items
- 0 "data"
X0031_Y0029.20260419_LEVEL2_SEN2A_OVV
- href "./X0031_Y0029/20260419_LEVEL2_SEN2A_OVV.jpg"
- type "image/jpeg"
- title "X0031 Y0029 20260419 LEVEL2 SEN2A OVV"
- file:size 99812
- file:local_path "X0031_Y0029/20260419_LEVEL2_SEN2A_OVV.jpg"
- file:checksum "12208ebb5a3c33231f746046446ecd4863a9ed1229842cd0b18f523e87156facbe8c"
- acquisition_date "2026-04-19T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2A"
- sensor_id "Sentinel-2A MultiSpectral Instrument"
- product_type_key "OVV"
roles[] 1 items
- 0 "thumbnail"
X0031_Y0029.20260419_LEVEL2_SEN2A_QAI
- href "./X0031_Y0029/20260419_LEVEL2_SEN2A_QAI.tif"
- type "image/tiff; application=geotiff"
- title "X0031 Y0029 20260419 LEVEL2 SEN2A QAI"
- file:size 2678452
- file:local_path "X0031_Y0029/20260419_LEVEL2_SEN2A_QAI.tif"
- file:checksum "12203d4e855f265be77ecb366c65d06f2cc63ab4b25b85ce588c75fb798aa5a3ad77"
- acquisition_date "2026-04-19T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2A"
- sensor_id "Sentinel-2A MultiSpectral Instrument"
- product_type_key "QAI"
- product_type "Quality Assurance Information"
- proj:code "EPSG:10596"
- proj:wkt2 "PROJCS["BU MEaSUREs Lambert Azimuthal Equal Area - EU - V01",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",55],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1],AXIS["Easting",EAST],AXIS["Northing",NORTH]]"
proj:bbox[] 4 items
- 0 -855560.0
- 1 -1153755.0
- 2 -705560.0
- 3 -1003755.0
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 -705560.0
- 1 -1153755.0
1[] 2 items
- 0 -705560.0
- 1 -1003755.0
2[] 2 items
- 0 -855560.0
- 1 -1003755.0
3[] 2 items
- 0 -855560.0
- 1 -1153755.0
4[] 2 items
- 0 -705560.0
- 1 -1153755.0
proj:transform[] 9 items
- 0 20.0
- 1 0.0
- 2 -855560.0
- 3 0.0
- 4 -20.0
- 5 -1003755.0
- 6 0.0
- 7 0.0
- 8 1.0
proj:shape[] 2 items
- 0 7500
- 1 7500
proj:centroid
- lat 44.809435294304556
- lon 10.13642482433122
roles[] 4 items
- 0 "data-mask"
- 1 "water-mask"
- 2 "data-mask"
- 3 "land-water"
X0031_Y0029.20260422_LEVEL2_SEN2B_BOA
- href "./X0031_Y0029/20260422_LEVEL2_SEN2B_BOA.tif"
- type "image/tiff; application=geotiff"
- title "X0031 Y0029 20260422 LEVEL2 SEN2B BOA"
- file:size 273897846
- file:local_path "X0031_Y0029/20260422_LEVEL2_SEN2B_BOA.tif"
- file:checksum "1220d6a3355870d5de065d33e6068405331c9b555151636290765b4d41d006782d17"
- acquisition_date "2026-04-22T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2B"
- sensor_id "Sentinel-2B MultiSpectral Instrument"
- product_type_key "BOA"
- product_type "Bottom-of-Atmosphere Reflectance"
bands[] 10 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.065
- name "B2"
- eo:common_name "blue"
1
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.035
- name "B3"
- eo:common_name "green"
2
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.031
- name "B4"
- eo:common_name "red"
3
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.015
- name "B5"
- eo:common_name "rededge071"
4
- eo:center_wavelength 0.74
- eo:full_width_half_max 0.014
- name "B6"
- eo:common_name "rededge075"
5
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.02
- name "B7"
- eo:common_name "rededge078"
6
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.115
- name "B8"
- eo:common_name "nir08"
7
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.02
- name "B8A"
- eo:common_name "nir"
8
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.093
- name "B11"
- eo:common_name "swir16"
9
- eo:center_wavelength 2.202
- eo:full_width_half_max 0.181
- name "B12"
- eo:common_name "swir22"
- proj:code "EPSG:10596"
- proj:wkt2 "PROJCS["BU MEaSUREs Lambert Azimuthal Equal Area - EU - V01",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",55],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1],AXIS["Easting",EAST],AXIS["Northing",NORTH]]"
proj:bbox[] 4 items
- 0 -855560.0
- 1 -1153755.0
- 2 -705560.0
- 3 -1003755.0
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 -705560.0
- 1 -1153755.0
1[] 2 items
- 0 -705560.0
- 1 -1003755.0
2[] 2 items
- 0 -855560.0
- 1 -1003755.0
3[] 2 items
- 0 -855560.0
- 1 -1153755.0
4[] 2 items
- 0 -705560.0
- 1 -1153755.0
proj:transform[] 9 items
- 0 20.0
- 1 0.0
- 2 -855560.0
- 3 0.0
- 4 -20.0
- 5 -1003755.0
- 6 0.0
- 7 0.0
- 8 1.0
proj:shape[] 2 items
- 0 7500
- 1 7500
proj:centroid
- lat 44.809435294304556
- lon 10.13642482433122
roles[] 1 items
- 0 "data"
X0031_Y0029.20260422_LEVEL2_SEN2B_OVV
- href "./X0031_Y0029/20260422_LEVEL2_SEN2B_OVV.jpg"
- type "image/jpeg"
- title "X0031 Y0029 20260422 LEVEL2 SEN2B OVV"
- file:size 117722
- file:local_path "X0031_Y0029/20260422_LEVEL2_SEN2B_OVV.jpg"
- file:checksum "12207d82e954411f3aceadb235f96aee47b4e1a09427054cf3c847ca2c58e8665f31"
- acquisition_date "2026-04-22T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2B"
- sensor_id "Sentinel-2B MultiSpectral Instrument"
- product_type_key "OVV"
roles[] 1 items
- 0 "thumbnail"
X0031_Y0029.20260422_LEVEL2_SEN2B_QAI
- href "./X0031_Y0029/20260422_LEVEL2_SEN2B_QAI.tif"
- type "image/tiff; application=geotiff"
- title "X0031 Y0029 20260422 LEVEL2 SEN2B QAI"
- file:size 2776072
- file:local_path "X0031_Y0029/20260422_LEVEL2_SEN2B_QAI.tif"
- file:checksum "1220c0910f6f8d4b9a5d35b5fe1342c19fd0cbcee61af962ddb22efea12409937519"
- acquisition_date "2026-04-22T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2B"
- sensor_id "Sentinel-2B MultiSpectral Instrument"
- product_type_key "QAI"
- product_type "Quality Assurance Information"
- proj:code "EPSG:10596"
- proj:wkt2 "PROJCS["BU MEaSUREs Lambert Azimuthal Equal Area - EU - V01",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",55],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1],AXIS["Easting",EAST],AXIS["Northing",NORTH]]"
proj:bbox[] 4 items
- 0 -855560.0
- 1 -1153755.0
- 2 -705560.0
- 3 -1003755.0
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 -705560.0
- 1 -1153755.0
1[] 2 items
- 0 -705560.0
- 1 -1003755.0
2[] 2 items
- 0 -855560.0
- 1 -1003755.0
3[] 2 items
- 0 -855560.0
- 1 -1153755.0
4[] 2 items
- 0 -705560.0
- 1 -1153755.0
proj:transform[] 9 items
- 0 20.0
- 1 0.0
- 2 -855560.0
- 3 0.0
- 4 -20.0
- 5 -1003755.0
- 6 0.0
- 7 0.0
- 8 1.0
proj:shape[] 2 items
- 0 7500
- 1 7500
proj:centroid
- lat 44.809435294304556
- lon 10.13642482433122
roles[] 4 items
- 0 "data-mask"
- 1 "water-mask"
- 2 "data-mask"
- 3 "land-water"
X0031_Y0029.20260427_LEVEL2_SEN2C_BOA
- href "./X0031_Y0029/20260427_LEVEL2_SEN2C_BOA.tif"
- type "image/tiff; application=geotiff"
- title "X0031 Y0029 20260427 LEVEL2 SEN2C BOA"
- file:size 263700368
- file:local_path "X0031_Y0029/20260427_LEVEL2_SEN2C_BOA.tif"
- file:checksum "1220f2f91037bf6be9f89c1b2ef0a597986ddd8cd57b462a55c7f6313e0592e561e8"
- acquisition_date "2026-04-27T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2C"
- sensor_id "Sentinel-2C MultiSpectral Instrument"
- product_type_key "BOA"
- product_type "Bottom-of-Atmosphere Reflectance"
bands[] 10 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.065
- name "B2"
- eo:common_name "blue"
1
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.035
- name "B3"
- eo:common_name "green"
2
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.031
- name "B4"
- eo:common_name "red"
3
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.015
- name "B5"
- eo:common_name "rededge071"
4
- eo:center_wavelength 0.74
- eo:full_width_half_max 0.014
- name "B6"
- eo:common_name "rededge075"
5
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.02
- name "B7"
- eo:common_name "rededge078"
6
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.115
- name "B8"
- eo:common_name "nir08"
7
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.02
- name "B8A"
- eo:common_name "nir"
8
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.093
- name "B11"
- eo:common_name "swir16"
9
- eo:center_wavelength 2.202
- eo:full_width_half_max 0.181
- name "B12"
- eo:common_name "swir22"
- proj:code "EPSG:10596"
- proj:wkt2 "PROJCS["BU MEaSUREs Lambert Azimuthal Equal Area - EU - V01",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",55],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1],AXIS["Easting",EAST],AXIS["Northing",NORTH]]"
proj:bbox[] 4 items
- 0 -855560.0
- 1 -1153755.0
- 2 -705560.0
- 3 -1003755.0
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 -705560.0
- 1 -1153755.0
1[] 2 items
- 0 -705560.0
- 1 -1003755.0
2[] 2 items
- 0 -855560.0
- 1 -1003755.0
3[] 2 items
- 0 -855560.0
- 1 -1153755.0
4[] 2 items
- 0 -705560.0
- 1 -1153755.0
proj:transform[] 9 items
- 0 20.0
- 1 0.0
- 2 -855560.0
- 3 0.0
- 4 -20.0
- 5 -1003755.0
- 6 0.0
- 7 0.0
- 8 1.0
proj:shape[] 2 items
- 0 7500
- 1 7500
proj:centroid
- lat 44.809435294304556
- lon 10.13642482433122
roles[] 1 items
- 0 "data"
X0031_Y0029.20260427_LEVEL2_SEN2C_OVV
- href "./X0031_Y0029/20260427_LEVEL2_SEN2C_OVV.jpg"
- type "image/jpeg"
- title "X0031 Y0029 20260427 LEVEL2 SEN2C OVV"
- file:size 157443
- file:local_path "X0031_Y0029/20260427_LEVEL2_SEN2C_OVV.jpg"
- file:checksum "12204119d878e0d2b9f11543eb37c2dbc73ce0a589fbf911e117543ca5d1e98cf466"
- acquisition_date "2026-04-27T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2C"
- sensor_id "Sentinel-2C MultiSpectral Instrument"
- product_type_key "OVV"
roles[] 1 items
- 0 "thumbnail"
X0031_Y0029.20260427_LEVEL2_SEN2C_QAI
- href "./X0031_Y0029/20260427_LEVEL2_SEN2C_QAI.tif"
- type "image/tiff; application=geotiff"
- title "X0031 Y0029 20260427 LEVEL2 SEN2C QAI"
- file:size 1577712
- file:local_path "X0031_Y0029/20260427_LEVEL2_SEN2C_QAI.tif"
- file:checksum "1220ef97fe4b64579986a206dce43dfe7f94cbe4d22dcc6febe8cc9bc9147eed6273"
- acquisition_date "2026-04-27T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2C"
- sensor_id "Sentinel-2C MultiSpectral Instrument"
- product_type_key "QAI"
- product_type "Quality Assurance Information"
- proj:code "EPSG:10596"
- proj:wkt2 "PROJCS["BU MEaSUREs Lambert Azimuthal Equal Area - EU - V01",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",55],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1],AXIS["Easting",EAST],AXIS["Northing",NORTH]]"
proj:bbox[] 4 items
- 0 -855560.0
- 1 -1153755.0
- 2 -705560.0
- 3 -1003755.0
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 -705560.0
- 1 -1153755.0
1[] 2 items
- 0 -705560.0
- 1 -1003755.0
2[] 2 items
- 0 -855560.0
- 1 -1003755.0
3[] 2 items
- 0 -855560.0
- 1 -1153755.0
4[] 2 items
- 0 -705560.0
- 1 -1153755.0
proj:transform[] 9 items
- 0 20.0
- 1 0.0
- 2 -855560.0
- 3 0.0
- 4 -20.0
- 5 -1003755.0
- 6 0.0
- 7 0.0
- 8 1.0
proj:shape[] 2 items
- 0 7500
- 1 7500
proj:centroid
- lat 44.809435294304556
- lon 10.13642482433122
roles[] 4 items
- 0 "data-mask"
- 1 "water-mask"
- 2 "data-mask"
- 3 "land-water"
X0031_Y0030.20260417_LEVEL2_SEN2C_BOA
- href "./X0031_Y0030/20260417_LEVEL2_SEN2C_BOA.tif"
- type "image/tiff; application=geotiff"
- title "X0031 Y0030 20260417 LEVEL2 SEN2C BOA"
- file:size 10710640
- file:local_path "X0031_Y0030/20260417_LEVEL2_SEN2C_BOA.tif"
- file:checksum "12200fd24cb02394db08208073fc4967757428d519963180b6d9145f3db0f937503c"
- acquisition_date "2026-04-17T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2C"
- sensor_id "Sentinel-2C MultiSpectral Instrument"
- product_type_key "BOA"
- product_type "Bottom-of-Atmosphere Reflectance"
bands[] 10 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.065
- name "B2"
- eo:common_name "blue"
1
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.035
- name "B3"
- eo:common_name "green"
2
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.031
- name "B4"
- eo:common_name "red"
3
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.015
- name "B5"
- eo:common_name "rededge071"
4
- eo:center_wavelength 0.74
- eo:full_width_half_max 0.014
- name "B6"
- eo:common_name "rededge075"
5
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.02
- name "B7"
- eo:common_name "rededge078"
6
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.115
- name "B8"
- eo:common_name "nir08"
7
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.02
- name "B8A"
- eo:common_name "nir"
8
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.093
- name "B11"
- eo:common_name "swir16"
9
- eo:center_wavelength 2.202
- eo:full_width_half_max 0.181
- name "B12"
- eo:common_name "swir22"
- proj:code "EPSG:10596"
- proj:wkt2 "PROJCS["BU MEaSUREs Lambert Azimuthal Equal Area - EU - V01",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",55],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1],AXIS["Easting",EAST],AXIS["Northing",NORTH]]"
proj:bbox[] 4 items
- 0 -855560.0
- 1 -1303755.0
- 2 -705560.0
- 3 -1153755.0
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 -705560.0
- 1 -1303755.0
1[] 2 items
- 0 -705560.0
- 1 -1153755.0
2[] 2 items
- 0 -855560.0
- 1 -1153755.0
3[] 2 items
- 0 -855560.0
- 1 -1303755.0
4[] 2 items
- 0 -705560.0
- 1 -1303755.0
proj:transform[] 9 items
- 0 20.0
- 1 0.0
- 2 -855560.0
- 3 0.0
- 4 -20.0
- 5 -1153755.0
- 6 0.0
- 7 0.0
- 8 1.0
proj:shape[] 2 items
- 0 7500
- 1 7500
proj:centroid
- lat 43.46713711824024
- lon 10.369768945260667
roles[] 1 items
- 0 "data"
X0031_Y0030.20260417_LEVEL2_SEN2C_OVV
- href "./X0031_Y0030/20260417_LEVEL2_SEN2C_OVV.jpg"
- type "image/jpeg"
- title "X0031 Y0030 20260417 LEVEL2 SEN2C OVV"
- file:size 12835
- file:local_path "X0031_Y0030/20260417_LEVEL2_SEN2C_OVV.jpg"
- file:checksum "12205d80d5828c94a44a88845b73d4119f95ba4c4b4b14c6b9252252bd0319a472a9"
- acquisition_date "2026-04-17T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2C"
- sensor_id "Sentinel-2C MultiSpectral Instrument"
- product_type_key "OVV"
roles[] 1 items
- 0 "thumbnail"
X0031_Y0030.20260417_LEVEL2_SEN2C_QAI
- href "./X0031_Y0030/20260417_LEVEL2_SEN2C_QAI.tif"
- type "image/tiff; application=geotiff"
- title "X0031 Y0030 20260417 LEVEL2 SEN2C QAI"
- file:size 148224
- file:local_path "X0031_Y0030/20260417_LEVEL2_SEN2C_QAI.tif"
- file:checksum "1220667f1b217b78b1ac093609373d3547b6b9f5363511724f5cead304f29012293c"
- acquisition_date "2026-04-17T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2C"
- sensor_id "Sentinel-2C MultiSpectral Instrument"
- product_type_key "QAI"
- product_type "Quality Assurance Information"
- proj:code "EPSG:10596"
- proj:wkt2 "PROJCS["BU MEaSUREs Lambert Azimuthal Equal Area - EU - V01",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",55],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1],AXIS["Easting",EAST],AXIS["Northing",NORTH]]"
proj:bbox[] 4 items
- 0 -855560.0
- 1 -1303755.0
- 2 -705560.0
- 3 -1153755.0
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 -705560.0
- 1 -1303755.0
1[] 2 items
- 0 -705560.0
- 1 -1153755.0
2[] 2 items
- 0 -855560.0
- 1 -1153755.0
3[] 2 items
- 0 -855560.0
- 1 -1303755.0
4[] 2 items
- 0 -705560.0
- 1 -1303755.0
proj:transform[] 9 items
- 0 20.0
- 1 0.0
- 2 -855560.0
- 3 0.0
- 4 -20.0
- 5 -1153755.0
- 6 0.0
- 7 0.0
- 8 1.0
proj:shape[] 2 items
- 0 7500
- 1 7500
proj:centroid
- lat 43.46713711824024
- lon 10.369768945260667
roles[] 4 items
- 0 "data-mask"
- 1 "water-mask"
- 2 "data-mask"
- 3 "land-water"
X0031_Y0030.20260419_LEVEL2_SEN2A_BOA
- href "./X0031_Y0030/20260419_LEVEL2_SEN2A_BOA.tif"
- type "image/tiff; application=geotiff"
- title "X0031 Y0030 20260419 LEVEL2 SEN2A BOA"
- file:size 10909736
- file:local_path "X0031_Y0030/20260419_LEVEL2_SEN2A_BOA.tif"
- file:checksum "1220a4a1626d853a50974288045a0b9608a8f82d158e195cb9eaa72a64bed8c0aabf"
- acquisition_date "2026-04-19T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2A"
- sensor_id "Sentinel-2A MultiSpectral Instrument"
- product_type_key "BOA"
- product_type "Bottom-of-Atmosphere Reflectance"
bands[] 10 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.065
- name "B2"
- eo:common_name "blue"
1
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.035
- name "B3"
- eo:common_name "green"
2
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.031
- name "B4"
- eo:common_name "red"
3
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.015
- name "B5"
- eo:common_name "rededge071"
4
- eo:center_wavelength 0.74
- eo:full_width_half_max 0.014
- name "B6"
- eo:common_name "rededge075"
5
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.02
- name "B7"
- eo:common_name "rededge078"
6
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.115
- name "B8"
- eo:common_name "nir08"
7
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.02
- name "B8A"
- eo:common_name "nir"
8
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.093
- name "B11"
- eo:common_name "swir16"
9
- eo:center_wavelength 2.202
- eo:full_width_half_max 0.181
- name "B12"
- eo:common_name "swir22"
- proj:code "EPSG:10596"
- proj:wkt2 "PROJCS["BU MEaSUREs Lambert Azimuthal Equal Area - EU - V01",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",55],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1],AXIS["Easting",EAST],AXIS["Northing",NORTH]]"
proj:bbox[] 4 items
- 0 -855560.0
- 1 -1303755.0
- 2 -705560.0
- 3 -1153755.0
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 -705560.0
- 1 -1303755.0
1[] 2 items
- 0 -705560.0
- 1 -1153755.0
2[] 2 items
- 0 -855560.0
- 1 -1153755.0
3[] 2 items
- 0 -855560.0
- 1 -1303755.0
4[] 2 items
- 0 -705560.0
- 1 -1303755.0
proj:transform[] 9 items
- 0 20.0
- 1 0.0
- 2 -855560.0
- 3 0.0
- 4 -20.0
- 5 -1153755.0
- 6 0.0
- 7 0.0
- 8 1.0
proj:shape[] 2 items
- 0 7500
- 1 7500
proj:centroid
- lat 43.46713711824024
- lon 10.369768945260667
roles[] 1 items
- 0 "data"
X0031_Y0030.20260419_LEVEL2_SEN2A_OVV
- href "./X0031_Y0030/20260419_LEVEL2_SEN2A_OVV.jpg"
- type "image/jpeg"
- title "X0031 Y0030 20260419 LEVEL2 SEN2A OVV"
- file:size 10297
- file:local_path "X0031_Y0030/20260419_LEVEL2_SEN2A_OVV.jpg"
- file:checksum "1220da3661f3b3d91c7a88b6c2bae40a04b4efbef6a125b258e241e7c9a5551ea1d4"
- acquisition_date "2026-04-19T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2A"
- sensor_id "Sentinel-2A MultiSpectral Instrument"
- product_type_key "OVV"
roles[] 1 items
- 0 "thumbnail"
X0031_Y0030.20260419_LEVEL2_SEN2A_QAI
- href "./X0031_Y0030/20260419_LEVEL2_SEN2A_QAI.tif"
- type "image/tiff; application=geotiff"
- title "X0031 Y0030 20260419 LEVEL2 SEN2A QAI"
- file:size 143946
- file:local_path "X0031_Y0030/20260419_LEVEL2_SEN2A_QAI.tif"
- file:checksum "1220a95ef2ae98fd0935e301fc20544c98debb295cf99d83f501963526ce82d086c7"
- acquisition_date "2026-04-19T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2A"
- sensor_id "Sentinel-2A MultiSpectral Instrument"
- product_type_key "QAI"
- product_type "Quality Assurance Information"
- proj:code "EPSG:10596"
- proj:wkt2 "PROJCS["BU MEaSUREs Lambert Azimuthal Equal Area - EU - V01",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",55],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1],AXIS["Easting",EAST],AXIS["Northing",NORTH]]"
proj:bbox[] 4 items
- 0 -855560.0
- 1 -1303755.0
- 2 -705560.0
- 3 -1153755.0
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 -705560.0
- 1 -1303755.0
1[] 2 items
- 0 -705560.0
- 1 -1153755.0
2[] 2 items
- 0 -855560.0
- 1 -1153755.0
3[] 2 items
- 0 -855560.0
- 1 -1303755.0
4[] 2 items
- 0 -705560.0
- 1 -1303755.0
proj:transform[] 9 items
- 0 20.0
- 1 0.0
- 2 -855560.0
- 3 0.0
- 4 -20.0
- 5 -1153755.0
- 6 0.0
- 7 0.0
- 8 1.0
proj:shape[] 2 items
- 0 7500
- 1 7500
proj:centroid
- lat 43.46713711824024
- lon 10.369768945260667
roles[] 4 items
- 0 "data-mask"
- 1 "water-mask"
- 2 "data-mask"
- 3 "land-water"
X0031_Y0030.20260427_LEVEL2_SEN2C_BOA
- href "./X0031_Y0030/20260427_LEVEL2_SEN2C_BOA.tif"
- type "image/tiff; application=geotiff"
- title "X0031 Y0030 20260427 LEVEL2 SEN2C BOA"
- file:size 10435666
- file:local_path "X0031_Y0030/20260427_LEVEL2_SEN2C_BOA.tif"
- file:checksum "122067e245bc9694c0ef92f83fce0b45642034f67da871f6d17563f6d1c114272dff"
- acquisition_date "2026-04-27T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2C"
- sensor_id "Sentinel-2C MultiSpectral Instrument"
- product_type_key "BOA"
- product_type "Bottom-of-Atmosphere Reflectance"
bands[] 10 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.065
- name "B2"
- eo:common_name "blue"
1
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.035
- name "B3"
- eo:common_name "green"
2
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.031
- name "B4"
- eo:common_name "red"
3
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.015
- name "B5"
- eo:common_name "rededge071"
4
- eo:center_wavelength 0.74
- eo:full_width_half_max 0.014
- name "B6"
- eo:common_name "rededge075"
5
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.02
- name "B7"
- eo:common_name "rededge078"
6
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.115
- name "B8"
- eo:common_name "nir08"
7
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.02
- name "B8A"
- eo:common_name "nir"
8
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.093
- name "B11"
- eo:common_name "swir16"
9
- eo:center_wavelength 2.202
- eo:full_width_half_max 0.181
- name "B12"
- eo:common_name "swir22"
- proj:code "EPSG:10596"
- proj:wkt2 "PROJCS["BU MEaSUREs Lambert Azimuthal Equal Area - EU - V01",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",55],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1],AXIS["Easting",EAST],AXIS["Northing",NORTH]]"
proj:bbox[] 4 items
- 0 -855560.0
- 1 -1303755.0
- 2 -705560.0
- 3 -1153755.0
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 -705560.0
- 1 -1303755.0
1[] 2 items
- 0 -705560.0
- 1 -1153755.0
2[] 2 items
- 0 -855560.0
- 1 -1153755.0
3[] 2 items
- 0 -855560.0
- 1 -1303755.0
4[] 2 items
- 0 -705560.0
- 1 -1303755.0
proj:transform[] 9 items
- 0 20.0
- 1 0.0
- 2 -855560.0
- 3 0.0
- 4 -20.0
- 5 -1153755.0
- 6 0.0
- 7 0.0
- 8 1.0
proj:shape[] 2 items
- 0 7500
- 1 7500
proj:centroid
- lat 43.46713711824024
- lon 10.369768945260667
roles[] 1 items
- 0 "data"
X0031_Y0030.20260427_LEVEL2_SEN2C_OVV
- href "./X0031_Y0030/20260427_LEVEL2_SEN2C_OVV.jpg"
- type "image/jpeg"
- title "X0031 Y0030 20260427 LEVEL2 SEN2C OVV"
- file:size 12361
- file:local_path "X0031_Y0030/20260427_LEVEL2_SEN2C_OVV.jpg"
- file:checksum "1220ad9698084c73b14a841112d5e0e5070936c3303e5f311551397bc0de380e2a6c"
- acquisition_date "2026-04-27T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2C"
- sensor_id "Sentinel-2C MultiSpectral Instrument"
- product_type_key "OVV"
roles[] 1 items
- 0 "thumbnail"
X0031_Y0030.20260427_LEVEL2_SEN2C_QAI
- href "./X0031_Y0030/20260427_LEVEL2_SEN2C_QAI.tif"
- type "image/tiff; application=geotiff"
- title "X0031 Y0030 20260427 LEVEL2 SEN2C QAI"
- file:size 105496
- file:local_path "X0031_Y0030/20260427_LEVEL2_SEN2C_QAI.tif"
- file:checksum "1220294846b91456e9d0ca20076ad32274cdd3c817e61c4f31d22da2fefe5e037c59"
- acquisition_date "2026-04-27T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2C"
- sensor_id "Sentinel-2C MultiSpectral Instrument"
- product_type_key "QAI"
- product_type "Quality Assurance Information"
- proj:code "EPSG:10596"
- proj:wkt2 "PROJCS["BU MEaSUREs Lambert Azimuthal Equal Area - EU - V01",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",55],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1],AXIS["Easting",EAST],AXIS["Northing",NORTH]]"
proj:bbox[] 4 items
- 0 -855560.0
- 1 -1303755.0
- 2 -705560.0
- 3 -1153755.0
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 -705560.0
- 1 -1303755.0
1[] 2 items
- 0 -705560.0
- 1 -1153755.0
2[] 2 items
- 0 -855560.0
- 1 -1153755.0
3[] 2 items
- 0 -855560.0
- 1 -1303755.0
4[] 2 items
- 0 -705560.0
- 1 -1303755.0
proj:transform[] 9 items
- 0 20.0
- 1 0.0
- 2 -855560.0
- 3 0.0
- 4 -20.0
- 5 -1153755.0
- 6 0.0
- 7 0.0
- 8 1.0
proj:shape[] 2 items
- 0 7500
- 1 7500
proj:centroid
- lat 43.46713711824024
- lon 10.369768945260667
roles[] 4 items
- 0 "data-mask"
- 1 "water-mask"
- 2 "data-mask"
- 3 "land-water"
X0032_Y0029.20260417_LEVEL2_SEN2C_BOA
- href "./X0032_Y0029/20260417_LEVEL2_SEN2C_BOA.tif"
- type "image/tiff; application=geotiff"
- title "X0032 Y0029 20260417 LEVEL2 SEN2C BOA"
- file:size 153912358
- file:local_path "X0032_Y0029/20260417_LEVEL2_SEN2C_BOA.tif"
- file:checksum "12200becb0934182430b565da0af3daadaf705dce4bc5a4da05725bc782a52221102"
- acquisition_date "2026-04-17T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2C"
- sensor_id "Sentinel-2C MultiSpectral Instrument"
- product_type_key "BOA"
- product_type "Bottom-of-Atmosphere Reflectance"
bands[] 10 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.065
- name "B2"
- eo:common_name "blue"
1
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.035
- name "B3"
- eo:common_name "green"
2
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.031
- name "B4"
- eo:common_name "red"
3
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.015
- name "B5"
- eo:common_name "rededge071"
4
- eo:center_wavelength 0.74
- eo:full_width_half_max 0.014
- name "B6"
- eo:common_name "rededge075"
5
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.02
- name "B7"
- eo:common_name "rededge078"
6
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.115
- name "B8"
- eo:common_name "nir08"
7
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.02
- name "B8A"
- eo:common_name "nir"
8
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.093
- name "B11"
- eo:common_name "swir16"
9
- eo:center_wavelength 2.202
- eo:full_width_half_max 0.181
- name "B12"
- eo:common_name "swir22"
- proj:code "EPSG:10596"
- proj:wkt2 "PROJCS["BU MEaSUREs Lambert Azimuthal Equal Area - EU - V01",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",55],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1],AXIS["Easting",EAST],AXIS["Northing",NORTH]]"
proj:bbox[] 4 items
- 0 -705560.0
- 1 -1153755.0
- 2 -555560.0
- 3 -1003755.0
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 -555560.0
- 1 -1153755.0
1[] 2 items
- 0 -555560.0
- 1 -1003755.0
2[] 2 items
- 0 -705560.0
- 1 -1003755.0
3[] 2 items
- 0 -705560.0
- 1 -1153755.0
4[] 2 items
- 0 -555560.0
- 1 -1153755.0
proj:transform[] 9 items
- 0 20.0
- 1 0.0
- 2 -705560.0
- 3 0.0
- 4 -20.0
- 5 -1003755.0
- 6 0.0
- 7 0.0
- 8 1.0
proj:shape[] 2 items
- 0 7500
- 1 7500
proj:centroid
- lat 44.97626825623468
- lon 12.017237670164008
roles[] 1 items
- 0 "data"
X0032_Y0029.20260417_LEVEL2_SEN2C_OVV
- href "./X0032_Y0029/20260417_LEVEL2_SEN2C_OVV.jpg"
- type "image/jpeg"
- title "X0032 Y0029 20260417 LEVEL2 SEN2C OVV"
- file:size 106655
- file:local_path "X0032_Y0029/20260417_LEVEL2_SEN2C_OVV.jpg"
- file:checksum "1220409ae3e3e1dada9c48fbb03366a0867c1c75e1849157129f3dee880c456f9132"
- acquisition_date "2026-04-17T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2C"
- sensor_id "Sentinel-2C MultiSpectral Instrument"
- product_type_key "OVV"
roles[] 1 items
- 0 "thumbnail"
X0032_Y0029.20260417_LEVEL2_SEN2C_QAI
- href "./X0032_Y0029/20260417_LEVEL2_SEN2C_QAI.tif"
- type "image/tiff; application=geotiff"
- title "X0032 Y0029 20260417 LEVEL2 SEN2C QAI"
- file:size 990780
- file:local_path "X0032_Y0029/20260417_LEVEL2_SEN2C_QAI.tif"
- file:checksum "1220a237881a33a37e2e45c3095161ca56c17775d050bef32098a688ddf3661794e1"
- acquisition_date "2026-04-17T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2C"
- sensor_id "Sentinel-2C MultiSpectral Instrument"
- product_type_key "QAI"
- product_type "Quality Assurance Information"
- proj:code "EPSG:10596"
- proj:wkt2 "PROJCS["BU MEaSUREs Lambert Azimuthal Equal Area - EU - V01",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",55],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1],AXIS["Easting",EAST],AXIS["Northing",NORTH]]"
proj:bbox[] 4 items
- 0 -705560.0
- 1 -1153755.0
- 2 -555560.0
- 3 -1003755.0
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 -555560.0
- 1 -1153755.0
1[] 2 items
- 0 -555560.0
- 1 -1003755.0
2[] 2 items
- 0 -705560.0
- 1 -1003755.0
3[] 2 items
- 0 -705560.0
- 1 -1153755.0
4[] 2 items
- 0 -555560.0
- 1 -1153755.0
proj:transform[] 9 items
- 0 20.0
- 1 0.0
- 2 -705560.0
- 3 0.0
- 4 -20.0
- 5 -1003755.0
- 6 0.0
- 7 0.0
- 8 1.0
proj:shape[] 2 items
- 0 7500
- 1 7500
proj:centroid
- lat 44.97626825623468
- lon 12.017237670164008
roles[] 4 items
- 0 "data-mask"
- 1 "water-mask"
- 2 "data-mask"
- 3 "land-water"
X0032_Y0029.20260419_LEVEL2_SEN2A_BOA
- href "./X0032_Y0029/20260419_LEVEL2_SEN2A_BOA.tif"
- type "image/tiff; application=geotiff"
- title "X0032 Y0029 20260419 LEVEL2 SEN2A BOA"
- file:size 147199426
- file:local_path "X0032_Y0029/20260419_LEVEL2_SEN2A_BOA.tif"
- file:checksum "12209c8b25429f8be33fa88cd00d8bb1a9a0b67e8da49953834fdbf183941d1f147d"
- acquisition_date "2026-04-19T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2A"
- sensor_id "Sentinel-2A MultiSpectral Instrument"
- product_type_key "BOA"
- product_type "Bottom-of-Atmosphere Reflectance"
bands[] 10 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.065
- name "B2"
- eo:common_name "blue"
1
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.035
- name "B3"
- eo:common_name "green"
2
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.031
- name "B4"
- eo:common_name "red"
3
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.015
- name "B5"
- eo:common_name "rededge071"
4
- eo:center_wavelength 0.74
- eo:full_width_half_max 0.014
- name "B6"
- eo:common_name "rededge075"
5
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.02
- name "B7"
- eo:common_name "rededge078"
6
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.115
- name "B8"
- eo:common_name "nir08"
7
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.02
- name "B8A"
- eo:common_name "nir"
8
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.093
- name "B11"
- eo:common_name "swir16"
9
- eo:center_wavelength 2.202
- eo:full_width_half_max 0.181
- name "B12"
- eo:common_name "swir22"
- proj:code "EPSG:10596"
- proj:wkt2 "PROJCS["BU MEaSUREs Lambert Azimuthal Equal Area - EU - V01",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",55],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1],AXIS["Easting",EAST],AXIS["Northing",NORTH]]"
proj:bbox[] 4 items
- 0 -705560.0
- 1 -1153755.0
- 2 -555560.0
- 3 -1003755.0
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 -555560.0
- 1 -1153755.0
1[] 2 items
- 0 -555560.0
- 1 -1003755.0
2[] 2 items
- 0 -705560.0
- 1 -1003755.0
3[] 2 items
- 0 -705560.0
- 1 -1153755.0
4[] 2 items
- 0 -555560.0
- 1 -1153755.0
proj:transform[] 9 items
- 0 20.0
- 1 0.0
- 2 -705560.0
- 3 0.0
- 4 -20.0
- 5 -1003755.0
- 6 0.0
- 7 0.0
- 8 1.0
proj:shape[] 2 items
- 0 7500
- 1 7500
proj:centroid
- lat 44.97626825623468
- lon 12.017237670164008
roles[] 1 items
- 0 "data"
X0032_Y0029.20260419_LEVEL2_SEN2A_OVV
- href "./X0032_Y0029/20260419_LEVEL2_SEN2A_OVV.jpg"
- type "image/jpeg"
- title "X0032 Y0029 20260419 LEVEL2 SEN2A OVV"
- file:size 54429
- file:local_path "X0032_Y0029/20260419_LEVEL2_SEN2A_OVV.jpg"
- file:checksum "12207ea589b9b1f4c15a3cb51128de7c1e96a6f5a561a0f39ebcfed429714afd804d"
- acquisition_date "2026-04-19T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2A"
- sensor_id "Sentinel-2A MultiSpectral Instrument"
- product_type_key "OVV"
roles[] 1 items
- 0 "thumbnail"
X0032_Y0029.20260419_LEVEL2_SEN2A_QAI
- href "./X0032_Y0029/20260419_LEVEL2_SEN2A_QAI.tif"
- type "image/tiff; application=geotiff"
- title "X0032 Y0029 20260419 LEVEL2 SEN2A QAI"
- file:size 1428386
- file:local_path "X0032_Y0029/20260419_LEVEL2_SEN2A_QAI.tif"
- file:checksum "12208716b3f24d80ddc7b01fb4b3b55164b905021bc86c24b79281210600ccb85145"
- acquisition_date "2026-04-19T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2A"
- sensor_id "Sentinel-2A MultiSpectral Instrument"
- product_type_key "QAI"
- product_type "Quality Assurance Information"
- proj:code "EPSG:10596"
- proj:wkt2 "PROJCS["BU MEaSUREs Lambert Azimuthal Equal Area - EU - V01",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",55],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1],AXIS["Easting",EAST],AXIS["Northing",NORTH]]"
proj:bbox[] 4 items
- 0 -705560.0
- 1 -1153755.0
- 2 -555560.0
- 3 -1003755.0
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 -555560.0
- 1 -1153755.0
1[] 2 items
- 0 -555560.0
- 1 -1003755.0
2[] 2 items
- 0 -705560.0
- 1 -1003755.0
3[] 2 items
- 0 -705560.0
- 1 -1153755.0
4[] 2 items
- 0 -555560.0
- 1 -1153755.0
proj:transform[] 9 items
- 0 20.0
- 1 0.0
- 2 -705560.0
- 3 0.0
- 4 -20.0
- 5 -1003755.0
- 6 0.0
- 7 0.0
- 8 1.0
proj:shape[] 2 items
- 0 7500
- 1 7500
proj:centroid
- lat 44.97626825623468
- lon 12.017237670164008
roles[] 4 items
- 0 "data-mask"
- 1 "water-mask"
- 2 "data-mask"
- 3 "land-water"
X0032_Y0029.20260422_LEVEL2_SEN2B_BOA
- href "./X0032_Y0029/20260422_LEVEL2_SEN2B_BOA.tif"
- type "image/tiff; application=geotiff"
- title "X0032 Y0029 20260422 LEVEL2 SEN2B BOA"
- file:size 156946522
- file:local_path "X0032_Y0029/20260422_LEVEL2_SEN2B_BOA.tif"
- file:checksum "122080c62acb3d8359623db48dc99e587c0826c88d1d3e60a70f041504345c60f975"
- acquisition_date "2026-04-22T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2B"
- sensor_id "Sentinel-2B MultiSpectral Instrument"
- product_type_key "BOA"
- product_type "Bottom-of-Atmosphere Reflectance"
bands[] 10 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.065
- name "B2"
- eo:common_name "blue"
1
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.035
- name "B3"
- eo:common_name "green"
2
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.031
- name "B4"
- eo:common_name "red"
3
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.015
- name "B5"
- eo:common_name "rededge071"
4
- eo:center_wavelength 0.74
- eo:full_width_half_max 0.014
- name "B6"
- eo:common_name "rededge075"
5
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.02
- name "B7"
- eo:common_name "rededge078"
6
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.115
- name "B8"
- eo:common_name "nir08"
7
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.02
- name "B8A"
- eo:common_name "nir"
8
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.093
- name "B11"
- eo:common_name "swir16"
9
- eo:center_wavelength 2.202
- eo:full_width_half_max 0.181
- name "B12"
- eo:common_name "swir22"
- proj:code "EPSG:10596"
- proj:wkt2 "PROJCS["BU MEaSUREs Lambert Azimuthal Equal Area - EU - V01",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",55],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1],AXIS["Easting",EAST],AXIS["Northing",NORTH]]"
proj:bbox[] 4 items
- 0 -705560.0
- 1 -1153755.0
- 2 -555560.0
- 3 -1003755.0
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 -555560.0
- 1 -1153755.0
1[] 2 items
- 0 -555560.0
- 1 -1003755.0
2[] 2 items
- 0 -705560.0
- 1 -1003755.0
3[] 2 items
- 0 -705560.0
- 1 -1153755.0
4[] 2 items
- 0 -555560.0
- 1 -1153755.0
proj:transform[] 9 items
- 0 20.0
- 1 0.0
- 2 -705560.0
- 3 0.0
- 4 -20.0
- 5 -1003755.0
- 6 0.0
- 7 0.0
- 8 1.0
proj:shape[] 2 items
- 0 7500
- 1 7500
proj:centroid
- lat 44.97626825623468
- lon 12.017237670164008
roles[] 1 items
- 0 "data"
X0032_Y0029.20260422_LEVEL2_SEN2B_OVV
- href "./X0032_Y0029/20260422_LEVEL2_SEN2B_OVV.jpg"
- type "image/jpeg"
- title "X0032 Y0029 20260422 LEVEL2 SEN2B OVV"
- file:size 83980
- file:local_path "X0032_Y0029/20260422_LEVEL2_SEN2B_OVV.jpg"
- file:checksum "122007229e5869e1cb014b351d16f1c3394934e116150646d0e95919ff1298f9a9f9"
- acquisition_date "2026-04-22T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2B"
- sensor_id "Sentinel-2B MultiSpectral Instrument"
- product_type_key "OVV"
roles[] 1 items
- 0 "thumbnail"
X0032_Y0029.20260422_LEVEL2_SEN2B_QAI
- href "./X0032_Y0029/20260422_LEVEL2_SEN2B_QAI.tif"
- type "image/tiff; application=geotiff"
- title "X0032 Y0029 20260422 LEVEL2 SEN2B QAI"
- file:size 1359476
- file:local_path "X0032_Y0029/20260422_LEVEL2_SEN2B_QAI.tif"
- file:checksum "12200ba5584c75dfaf7b955fe64039357dcdc64b78423e3ceaa469307aafc01e596d"
- acquisition_date "2026-04-22T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2B"
- sensor_id "Sentinel-2B MultiSpectral Instrument"
- product_type_key "QAI"
- product_type "Quality Assurance Information"
- proj:code "EPSG:10596"
- proj:wkt2 "PROJCS["BU MEaSUREs Lambert Azimuthal Equal Area - EU - V01",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",55],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1],AXIS["Easting",EAST],AXIS["Northing",NORTH]]"
proj:bbox[] 4 items
- 0 -705560.0
- 1 -1153755.0
- 2 -555560.0
- 3 -1003755.0
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 -555560.0
- 1 -1153755.0
1[] 2 items
- 0 -555560.0
- 1 -1003755.0
2[] 2 items
- 0 -705560.0
- 1 -1003755.0
3[] 2 items
- 0 -705560.0
- 1 -1153755.0
4[] 2 items
- 0 -555560.0
- 1 -1153755.0
proj:transform[] 9 items
- 0 20.0
- 1 0.0
- 2 -705560.0
- 3 0.0
- 4 -20.0
- 5 -1003755.0
- 6 0.0
- 7 0.0
- 8 1.0
proj:shape[] 2 items
- 0 7500
- 1 7500
proj:centroid
- lat 44.97626825623468
- lon 12.017237670164008
roles[] 4 items
- 0 "data-mask"
- 1 "water-mask"
- 2 "data-mask"
- 3 "land-water"
X0032_Y0029.20260427_LEVEL2_SEN2C_BOA
- href "./X0032_Y0029/20260427_LEVEL2_SEN2C_BOA.tif"
- type "image/tiff; application=geotiff"
- title "X0032 Y0029 20260427 LEVEL2 SEN2C BOA"
- file:size 153800438
- file:local_path "X0032_Y0029/20260427_LEVEL2_SEN2C_BOA.tif"
- file:checksum "122069c50ec95245670d28f473982dd07dff179923082a854d37e3acaea7cbe32a3b"
- acquisition_date "2026-04-27T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2C"
- sensor_id "Sentinel-2C MultiSpectral Instrument"
- product_type_key "BOA"
- product_type "Bottom-of-Atmosphere Reflectance"
bands[] 10 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.065
- name "B2"
- eo:common_name "blue"
1
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.035
- name "B3"
- eo:common_name "green"
2
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.031
- name "B4"
- eo:common_name "red"
3
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.015
- name "B5"
- eo:common_name "rededge071"
4
- eo:center_wavelength 0.74
- eo:full_width_half_max 0.014
- name "B6"
- eo:common_name "rededge075"
5
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.02
- name "B7"
- eo:common_name "rededge078"
6
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.115
- name "B8"
- eo:common_name "nir08"
7
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.02
- name "B8A"
- eo:common_name "nir"
8
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.093
- name "B11"
- eo:common_name "swir16"
9
- eo:center_wavelength 2.202
- eo:full_width_half_max 0.181
- name "B12"
- eo:common_name "swir22"
- proj:code "EPSG:10596"
- proj:wkt2 "PROJCS["BU MEaSUREs Lambert Azimuthal Equal Area - EU - V01",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",55],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1],AXIS["Easting",EAST],AXIS["Northing",NORTH]]"
proj:bbox[] 4 items
- 0 -705560.0
- 1 -1153755.0
- 2 -555560.0
- 3 -1003755.0
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 -555560.0
- 1 -1153755.0
1[] 2 items
- 0 -555560.0
- 1 -1003755.0
2[] 2 items
- 0 -705560.0
- 1 -1003755.0
3[] 2 items
- 0 -705560.0
- 1 -1153755.0
4[] 2 items
- 0 -555560.0
- 1 -1153755.0
proj:transform[] 9 items
- 0 20.0
- 1 0.0
- 2 -705560.0
- 3 0.0
- 4 -20.0
- 5 -1003755.0
- 6 0.0
- 7 0.0
- 8 1.0
proj:shape[] 2 items
- 0 7500
- 1 7500
proj:centroid
- lat 44.97626825623468
- lon 12.017237670164008
roles[] 1 items
- 0 "data"
X0032_Y0029.20260427_LEVEL2_SEN2C_OVV
- href "./X0032_Y0029/20260427_LEVEL2_SEN2C_OVV.jpg"
- type "image/jpeg"
- title "X0032 Y0029 20260427 LEVEL2 SEN2C OVV"
- file:size 107728
- file:local_path "X0032_Y0029/20260427_LEVEL2_SEN2C_OVV.jpg"
- file:checksum "1220d1e8aaebb9a52d3991dd8154e4ac320637d545f73be69c52e24f8c04041dff77"
- acquisition_date "2026-04-27T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2C"
- sensor_id "Sentinel-2C MultiSpectral Instrument"
- product_type_key "OVV"
roles[] 1 items
- 0 "thumbnail"
X0032_Y0029.20260427_LEVEL2_SEN2C_QAI
- href "./X0032_Y0029/20260427_LEVEL2_SEN2C_QAI.tif"
- type "image/tiff; application=geotiff"
- title "X0032 Y0029 20260427 LEVEL2 SEN2C QAI"
- file:size 791292
- file:local_path "X0032_Y0029/20260427_LEVEL2_SEN2C_QAI.tif"
- file:checksum "1220d5b45702db23abf57aa49f1b9cf09650e152e6cb82a0ed0e672cb13f67fdef99"
- acquisition_date "2026-04-27T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2C"
- sensor_id "Sentinel-2C MultiSpectral Instrument"
- product_type_key "QAI"
- product_type "Quality Assurance Information"
- proj:code "EPSG:10596"
- proj:wkt2 "PROJCS["BU MEaSUREs Lambert Azimuthal Equal Area - EU - V01",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",55],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1],AXIS["Easting",EAST],AXIS["Northing",NORTH]]"
proj:bbox[] 4 items
- 0 -705560.0
- 1 -1153755.0
- 2 -555560.0
- 3 -1003755.0
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 -555560.0
- 1 -1153755.0
1[] 2 items
- 0 -555560.0
- 1 -1003755.0
2[] 2 items
- 0 -705560.0
- 1 -1003755.0
3[] 2 items
- 0 -705560.0
- 1 -1153755.0
4[] 2 items
- 0 -555560.0
- 1 -1153755.0
proj:transform[] 9 items
- 0 20.0
- 1 0.0
- 2 -705560.0
- 3 0.0
- 4 -20.0
- 5 -1003755.0
- 6 0.0
- 7 0.0
- 8 1.0
proj:shape[] 2 items
- 0 7500
- 1 7500
proj:centroid
- lat 44.97626825623468
- lon 12.017237670164008
roles[] 4 items
- 0 "data-mask"
- 1 "water-mask"
- 2 "data-mask"
- 3 "land-water"
X0032_Y0030.20260417_LEVEL2_SEN2C_BOA
- href "./X0032_Y0030/20260417_LEVEL2_SEN2C_BOA.tif"
- type "image/tiff; application=geotiff"
- title "X0032 Y0030 20260417 LEVEL2 SEN2C BOA"
- file:size 15852188
- file:local_path "X0032_Y0030/20260417_LEVEL2_SEN2C_BOA.tif"
- file:checksum "1220218a6d94e999848e800b1225c6a59e4f12ee155d26e98c1e2afae04978f7a748"
- acquisition_date "2026-04-17T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2C"
- sensor_id "Sentinel-2C MultiSpectral Instrument"
- product_type_key "BOA"
- product_type "Bottom-of-Atmosphere Reflectance"
bands[] 10 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.065
- name "B2"
- eo:common_name "blue"
1
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.035
- name "B3"
- eo:common_name "green"
2
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.031
- name "B4"
- eo:common_name "red"
3
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.015
- name "B5"
- eo:common_name "rededge071"
4
- eo:center_wavelength 0.74
- eo:full_width_half_max 0.014
- name "B6"
- eo:common_name "rededge075"
5
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.02
- name "B7"
- eo:common_name "rededge078"
6
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.115
- name "B8"
- eo:common_name "nir08"
7
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.02
- name "B8A"
- eo:common_name "nir"
8
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.093
- name "B11"
- eo:common_name "swir16"
9
- eo:center_wavelength 2.202
- eo:full_width_half_max 0.181
- name "B12"
- eo:common_name "swir22"
- proj:code "EPSG:10596"
- proj:wkt2 "PROJCS["BU MEaSUREs Lambert Azimuthal Equal Area - EU - V01",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",55],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1],AXIS["Easting",EAST],AXIS["Northing",NORTH]]"
proj:bbox[] 4 items
- 0 -705560.0
- 1 -1303755.0
- 2 -555560.0
- 3 -1153755.0
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 -555560.0
- 1 -1303755.0
1[] 2 items
- 0 -555560.0
- 1 -1153755.0
2[] 2 items
- 0 -705560.0
- 1 -1153755.0
3[] 2 items
- 0 -705560.0
- 1 -1303755.0
4[] 2 items
- 0 -555560.0
- 1 -1303755.0
proj:transform[] 9 items
- 0 20.0
- 1 0.0
- 2 -705560.0
- 3 0.0
- 4 -20.0
- 5 -1153755.0
- 6 0.0
- 7 0.0
- 8 1.0
proj:shape[] 2 items
- 0 7500
- 1 7500
proj:centroid
- lat 43.62954827699085
- lon 12.207065033810625
roles[] 1 items
- 0 "data"
X0032_Y0030.20260417_LEVEL2_SEN2C_OVV
- href "./X0032_Y0030/20260417_LEVEL2_SEN2C_OVV.jpg"
- type "image/jpeg"
- title "X0032 Y0030 20260417 LEVEL2 SEN2C OVV"
- file:size 15180
- file:local_path "X0032_Y0030/20260417_LEVEL2_SEN2C_OVV.jpg"
- file:checksum "1220498f6ee4927d60ea44b79552c68c94f80713b8aac5f6be27618071f4497b2adc"
- acquisition_date "2026-04-17T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2C"
- sensor_id "Sentinel-2C MultiSpectral Instrument"
- product_type_key "OVV"
roles[] 1 items
- 0 "thumbnail"
X0032_Y0030.20260417_LEVEL2_SEN2C_QAI
- href "./X0032_Y0030/20260417_LEVEL2_SEN2C_QAI.tif"
- type "image/tiff; application=geotiff"
- title "X0032 Y0030 20260417 LEVEL2 SEN2C QAI"
- file:size 204144
- file:local_path "X0032_Y0030/20260417_LEVEL2_SEN2C_QAI.tif"
- file:checksum "1220c9ed2680d089fd4a11c09dbbaddc9d8f8c9ae346f4f61ef6ddbafc1543eb7352"
- acquisition_date "2026-04-17T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2C"
- sensor_id "Sentinel-2C MultiSpectral Instrument"
- product_type_key "QAI"
- product_type "Quality Assurance Information"
- proj:code "EPSG:10596"
- proj:wkt2 "PROJCS["BU MEaSUREs Lambert Azimuthal Equal Area - EU - V01",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",55],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1],AXIS["Easting",EAST],AXIS["Northing",NORTH]]"
proj:bbox[] 4 items
- 0 -705560.0
- 1 -1303755.0
- 2 -555560.0
- 3 -1153755.0
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 -555560.0
- 1 -1303755.0
1[] 2 items
- 0 -555560.0
- 1 -1153755.0
2[] 2 items
- 0 -705560.0
- 1 -1153755.0
3[] 2 items
- 0 -705560.0
- 1 -1303755.0
4[] 2 items
- 0 -555560.0
- 1 -1303755.0
proj:transform[] 9 items
- 0 20.0
- 1 0.0
- 2 -705560.0
- 3 0.0
- 4 -20.0
- 5 -1153755.0
- 6 0.0
- 7 0.0
- 8 1.0
proj:shape[] 2 items
- 0 7500
- 1 7500
proj:centroid
- lat 43.62954827699085
- lon 12.207065033810625
roles[] 4 items
- 0 "data-mask"
- 1 "water-mask"
- 2 "data-mask"
- 3 "land-water"
X0032_Y0030.20260419_LEVEL2_SEN2A_BOA
- href "./X0032_Y0030/20260419_LEVEL2_SEN2A_BOA.tif"
- type "image/tiff; application=geotiff"
- title "X0032 Y0030 20260419 LEVEL2 SEN2A BOA"
- file:size 15621344
- file:local_path "X0032_Y0030/20260419_LEVEL2_SEN2A_BOA.tif"
- file:checksum "1220c0a08ae7e137ed9a52f4573e15494842f29986aba6c52aeb8cb66cf7994218d3"
- acquisition_date "2026-04-19T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2A"
- sensor_id "Sentinel-2A MultiSpectral Instrument"
- product_type_key "BOA"
- product_type "Bottom-of-Atmosphere Reflectance"
bands[] 10 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.065
- name "B2"
- eo:common_name "blue"
1
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.035
- name "B3"
- eo:common_name "green"
2
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.031
- name "B4"
- eo:common_name "red"
3
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.015
- name "B5"
- eo:common_name "rededge071"
4
- eo:center_wavelength 0.74
- eo:full_width_half_max 0.014
- name "B6"
- eo:common_name "rededge075"
5
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.02
- name "B7"
- eo:common_name "rededge078"
6
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.115
- name "B8"
- eo:common_name "nir08"
7
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.02
- name "B8A"
- eo:common_name "nir"
8
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.093
- name "B11"
- eo:common_name "swir16"
9
- eo:center_wavelength 2.202
- eo:full_width_half_max 0.181
- name "B12"
- eo:common_name "swir22"
- proj:code "EPSG:10596"
- proj:wkt2 "PROJCS["BU MEaSUREs Lambert Azimuthal Equal Area - EU - V01",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",55],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1],AXIS["Easting",EAST],AXIS["Northing",NORTH]]"
proj:bbox[] 4 items
- 0 -705560.0
- 1 -1303755.0
- 2 -555560.0
- 3 -1153755.0
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 -555560.0
- 1 -1303755.0
1[] 2 items
- 0 -555560.0
- 1 -1153755.0
2[] 2 items
- 0 -705560.0
- 1 -1153755.0
3[] 2 items
- 0 -705560.0
- 1 -1303755.0
4[] 2 items
- 0 -555560.0
- 1 -1303755.0
proj:transform[] 9 items
- 0 20.0
- 1 0.0
- 2 -705560.0
- 3 0.0
- 4 -20.0
- 5 -1153755.0
- 6 0.0
- 7 0.0
- 8 1.0
proj:shape[] 2 items
- 0 7500
- 1 7500
proj:centroid
- lat 43.62954827699085
- lon 12.207065033810625
roles[] 1 items
- 0 "data"
X0032_Y0030.20260419_LEVEL2_SEN2A_OVV
- href "./X0032_Y0030/20260419_LEVEL2_SEN2A_OVV.jpg"
- type "image/jpeg"
- title "X0032 Y0030 20260419 LEVEL2 SEN2A OVV"
- file:size 12968
- file:local_path "X0032_Y0030/20260419_LEVEL2_SEN2A_OVV.jpg"
- file:checksum "1220a867a91854545d9f19b764403087336bf13ba2f5828330a25ae5bdeb7d567ad7"
- acquisition_date "2026-04-19T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2A"
- sensor_id "Sentinel-2A MultiSpectral Instrument"
- product_type_key "OVV"
roles[] 1 items
- 0 "thumbnail"
X0032_Y0030.20260419_LEVEL2_SEN2A_QAI
- href "./X0032_Y0030/20260419_LEVEL2_SEN2A_QAI.tif"
- type "image/tiff; application=geotiff"
- title "X0032 Y0030 20260419 LEVEL2 SEN2A QAI"
- file:size 173490
- file:local_path "X0032_Y0030/20260419_LEVEL2_SEN2A_QAI.tif"
- file:checksum "12204f0fa713f704138ec9866e1aa6a30b33de0382a6f9f6fb86139f023f0e12b6df"
- acquisition_date "2026-04-19T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2A"
- sensor_id "Sentinel-2A MultiSpectral Instrument"
- product_type_key "QAI"
- product_type "Quality Assurance Information"
- proj:code "EPSG:10596"
- proj:wkt2 "PROJCS["BU MEaSUREs Lambert Azimuthal Equal Area - EU - V01",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",55],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1],AXIS["Easting",EAST],AXIS["Northing",NORTH]]"
proj:bbox[] 4 items
- 0 -705560.0
- 1 -1303755.0
- 2 -555560.0
- 3 -1153755.0
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 -555560.0
- 1 -1303755.0
1[] 2 items
- 0 -555560.0
- 1 -1153755.0
2[] 2 items
- 0 -705560.0
- 1 -1153755.0
3[] 2 items
- 0 -705560.0
- 1 -1303755.0
4[] 2 items
- 0 -555560.0
- 1 -1303755.0
proj:transform[] 9 items
- 0 20.0
- 1 0.0
- 2 -705560.0
- 3 0.0
- 4 -20.0
- 5 -1153755.0
- 6 0.0
- 7 0.0
- 8 1.0
proj:shape[] 2 items
- 0 7500
- 1 7500
proj:centroid
- lat 43.62954827699085
- lon 12.207065033810625
roles[] 4 items
- 0 "data-mask"
- 1 "water-mask"
- 2 "data-mask"
- 3 "land-water"
X0032_Y0030.20260422_LEVEL2_SEN2B_BOA
- href "./X0032_Y0030/20260422_LEVEL2_SEN2B_BOA.tif"
- type "image/tiff; application=geotiff"
- title "X0032 Y0030 20260422 LEVEL2 SEN2B BOA"
- file:size 16448842
- file:local_path "X0032_Y0030/20260422_LEVEL2_SEN2B_BOA.tif"
- file:checksum "1220cae27cc7c4bef534418f2f6974ffb8db16ec76b57382ad681d0613bac5e32226"
- acquisition_date "2026-04-22T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2B"
- sensor_id "Sentinel-2B MultiSpectral Instrument"
- product_type_key "BOA"
- product_type "Bottom-of-Atmosphere Reflectance"
bands[] 10 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.065
- name "B2"
- eo:common_name "blue"
1
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.035
- name "B3"
- eo:common_name "green"
2
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.031
- name "B4"
- eo:common_name "red"
3
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.015
- name "B5"
- eo:common_name "rededge071"
4
- eo:center_wavelength 0.74
- eo:full_width_half_max 0.014
- name "B6"
- eo:common_name "rededge075"
5
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.02
- name "B7"
- eo:common_name "rededge078"
6
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.115
- name "B8"
- eo:common_name "nir08"
7
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.02
- name "B8A"
- eo:common_name "nir"
8
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.093
- name "B11"
- eo:common_name "swir16"
9
- eo:center_wavelength 2.202
- eo:full_width_half_max 0.181
- name "B12"
- eo:common_name "swir22"
- proj:code "EPSG:10596"
- proj:wkt2 "PROJCS["BU MEaSUREs Lambert Azimuthal Equal Area - EU - V01",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",55],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1],AXIS["Easting",EAST],AXIS["Northing",NORTH]]"
proj:bbox[] 4 items
- 0 -705560.0
- 1 -1303755.0
- 2 -555560.0
- 3 -1153755.0
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 -555560.0
- 1 -1303755.0
1[] 2 items
- 0 -555560.0
- 1 -1153755.0
2[] 2 items
- 0 -705560.0
- 1 -1153755.0
3[] 2 items
- 0 -705560.0
- 1 -1303755.0
4[] 2 items
- 0 -555560.0
- 1 -1303755.0
proj:transform[] 9 items
- 0 20.0
- 1 0.0
- 2 -705560.0
- 3 0.0
- 4 -20.0
- 5 -1153755.0
- 6 0.0
- 7 0.0
- 8 1.0
proj:shape[] 2 items
- 0 7500
- 1 7500
proj:centroid
- lat 43.62954827699085
- lon 12.207065033810625
roles[] 1 items
- 0 "data"
X0032_Y0030.20260422_LEVEL2_SEN2B_OVV
- href "./X0032_Y0030/20260422_LEVEL2_SEN2B_OVV.jpg"
- type "image/jpeg"
- title "X0032 Y0030 20260422 LEVEL2 SEN2B OVV"
- file:size 10576
- file:local_path "X0032_Y0030/20260422_LEVEL2_SEN2B_OVV.jpg"
- file:checksum "1220096edd0ddc037fafd1bae48f1f6d6e617cbe2a15d7b849e08ae6b211c830386e"
- acquisition_date "2026-04-22T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2B"
- sensor_id "Sentinel-2B MultiSpectral Instrument"
- product_type_key "OVV"
roles[] 1 items
- 0 "thumbnail"
X0032_Y0030.20260422_LEVEL2_SEN2B_QAI
- href "./X0032_Y0030/20260422_LEVEL2_SEN2B_QAI.tif"
- type "image/tiff; application=geotiff"
- title "X0032 Y0030 20260422 LEVEL2 SEN2B QAI"
- file:size 198512
- file:local_path "X0032_Y0030/20260422_LEVEL2_SEN2B_QAI.tif"
- file:checksum "1220d3131a6df1bcf8e0ee6877ca3e97db735395f469990d96dfae03ab660e24e2cc"
- acquisition_date "2026-04-22T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2B"
- sensor_id "Sentinel-2B MultiSpectral Instrument"
- product_type_key "QAI"
- product_type "Quality Assurance Information"
- proj:code "EPSG:10596"
- proj:wkt2 "PROJCS["BU MEaSUREs Lambert Azimuthal Equal Area - EU - V01",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",55],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1],AXIS["Easting",EAST],AXIS["Northing",NORTH]]"
proj:bbox[] 4 items
- 0 -705560.0
- 1 -1303755.0
- 2 -555560.0
- 3 -1153755.0
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 -555560.0
- 1 -1303755.0
1[] 2 items
- 0 -555560.0
- 1 -1153755.0
2[] 2 items
- 0 -705560.0
- 1 -1153755.0
3[] 2 items
- 0 -705560.0
- 1 -1303755.0
4[] 2 items
- 0 -555560.0
- 1 -1303755.0
proj:transform[] 9 items
- 0 20.0
- 1 0.0
- 2 -705560.0
- 3 0.0
- 4 -20.0
- 5 -1153755.0
- 6 0.0
- 7 0.0
- 8 1.0
proj:shape[] 2 items
- 0 7500
- 1 7500
proj:centroid
- lat 43.62954827699085
- lon 12.207065033810625
roles[] 4 items
- 0 "data-mask"
- 1 "water-mask"
- 2 "data-mask"
- 3 "land-water"
X0032_Y0030.20260427_LEVEL2_SEN2C_BOA
- href "./X0032_Y0030/20260427_LEVEL2_SEN2C_BOA.tif"
- type "image/tiff; application=geotiff"
- title "X0032 Y0030 20260427 LEVEL2 SEN2C BOA"
- file:size 15335252
- file:local_path "X0032_Y0030/20260427_LEVEL2_SEN2C_BOA.tif"
- file:checksum "122043bdefc88b850acf84d4402e743cc2127ed4187f4a271facd5a078ff5d73ac0b"
- acquisition_date "2026-04-27T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2C"
- sensor_id "Sentinel-2C MultiSpectral Instrument"
- product_type_key "BOA"
- product_type "Bottom-of-Atmosphere Reflectance"
bands[] 10 items
0
- eo:center_wavelength 0.493
- eo:full_width_half_max 0.065
- name "B2"
- eo:common_name "blue"
1
- eo:center_wavelength 0.56
- eo:full_width_half_max 0.035
- name "B3"
- eo:common_name "green"
2
- eo:center_wavelength 0.665
- eo:full_width_half_max 0.031
- name "B4"
- eo:common_name "red"
3
- eo:center_wavelength 0.704
- eo:full_width_half_max 0.015
- name "B5"
- eo:common_name "rededge071"
4
- eo:center_wavelength 0.74
- eo:full_width_half_max 0.014
- name "B6"
- eo:common_name "rededge075"
5
- eo:center_wavelength 0.783
- eo:full_width_half_max 0.02
- name "B7"
- eo:common_name "rededge078"
6
- eo:center_wavelength 0.833
- eo:full_width_half_max 0.115
- name "B8"
- eo:common_name "nir08"
7
- eo:center_wavelength 0.865
- eo:full_width_half_max 0.02
- name "B8A"
- eo:common_name "nir"
8
- eo:center_wavelength 1.614
- eo:full_width_half_max 0.093
- name "B11"
- eo:common_name "swir16"
9
- eo:center_wavelength 2.202
- eo:full_width_half_max 0.181
- name "B12"
- eo:common_name "swir22"
- proj:code "EPSG:10596"
- proj:wkt2 "PROJCS["BU MEaSUREs Lambert Azimuthal Equal Area - EU - V01",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",55],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1],AXIS["Easting",EAST],AXIS["Northing",NORTH]]"
proj:bbox[] 4 items
- 0 -705560.0
- 1 -1303755.0
- 2 -555560.0
- 3 -1153755.0
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 -555560.0
- 1 -1303755.0
1[] 2 items
- 0 -555560.0
- 1 -1153755.0
2[] 2 items
- 0 -705560.0
- 1 -1153755.0
3[] 2 items
- 0 -705560.0
- 1 -1303755.0
4[] 2 items
- 0 -555560.0
- 1 -1303755.0
proj:transform[] 9 items
- 0 20.0
- 1 0.0
- 2 -705560.0
- 3 0.0
- 4 -20.0
- 5 -1153755.0
- 6 0.0
- 7 0.0
- 8 1.0
proj:shape[] 2 items
- 0 7500
- 1 7500
proj:centroid
- lat 43.62954827699085
- lon 12.207065033810625
roles[] 1 items
- 0 "data"
X0032_Y0030.20260427_LEVEL2_SEN2C_OVV
- href "./X0032_Y0030/20260427_LEVEL2_SEN2C_OVV.jpg"
- type "image/jpeg"
- title "X0032 Y0030 20260427 LEVEL2 SEN2C OVV"
- file:size 14537
- file:local_path "X0032_Y0030/20260427_LEVEL2_SEN2C_OVV.jpg"
- file:checksum "12200b324070f1b68c0af55cd4f9ec498fd524a491def897f23a05dbfc8481cced53"
- acquisition_date "2026-04-27T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2C"
- sensor_id "Sentinel-2C MultiSpectral Instrument"
- product_type_key "OVV"
roles[] 1 items
- 0 "thumbnail"
X0032_Y0030.20260427_LEVEL2_SEN2C_QAI
- href "./X0032_Y0030/20260427_LEVEL2_SEN2C_QAI.tif"
- type "image/tiff; application=geotiff"
- title "X0032 Y0030 20260427 LEVEL2 SEN2C QAI"
- file:size 135082
- file:local_path "X0032_Y0030/20260427_LEVEL2_SEN2C_QAI.tif"
- file:checksum "1220cfe9d5aa4420fe0c6a059eae0c15e58f970be8f658717816f8c62b9a703b4a1e"
- acquisition_date "2026-04-27T00:00:00+00:00Z"
- product_level "LEVEL2"
- sensor_id_key "SEN2C"
- sensor_id "Sentinel-2C MultiSpectral Instrument"
- product_type_key "QAI"
- product_type "Quality Assurance Information"
- proj:code "EPSG:10596"
- proj:wkt2 "PROJCS["BU MEaSUREs Lambert Azimuthal Equal Area - EU - V01",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Lambert_Azimuthal_Equal_Area"],PARAMETER["latitude_of_center",55],PARAMETER["longitude_of_center",20],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1],AXIS["Easting",EAST],AXIS["Northing",NORTH]]"
proj:bbox[] 4 items
- 0 -705560.0
- 1 -1303755.0
- 2 -555560.0
- 3 -1153755.0
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 -555560.0
- 1 -1303755.0
1[] 2 items
- 0 -555560.0
- 1 -1153755.0
2[] 2 items
- 0 -705560.0
- 1 -1153755.0
3[] 2 items
- 0 -705560.0
- 1 -1303755.0
4[] 2 items
- 0 -555560.0
- 1 -1303755.0
proj:transform[] 9 items
- 0 20.0
- 1 0.0
- 2 -705560.0
- 3 0.0
- 4 -20.0
- 5 -1153755.0
- 6 0.0
- 7 0.0
- 8 1.0
proj:shape[] 2 items
- 0 7500
- 1 7500
proj:centroid
- lat 43.62954827699085
- lon 12.207065033810625
roles[] 4 items
- 0 "data-mask"
- 1 "water-mask"
- 2 "data-mask"
- 3 "land-water"
We can extract the tiles manually or programmatically
Process Graph
The main process is force_tsa.
from openeo.rest.stac_resource import StacResource
from openeo.internal.graph_building import PGNode
tsa_processing_name = f"{processing_name}_TSA"
force_tsa_stac_resource = StacResource(
graph=PGNode(
process_id="force_tsa",
arguments={
"stac_url": l2_catalog_url,
"name": tsa_processing_name,
"date_range": temporal_extent,
"x_tile_range": [min(tile_x), min(tile_x)],
"y_tile_range": [min(tile_y), max(tile_y)],
"stm": ["AVG"],
"output_stm": True,
# ... more TSA parameters (optional)
}
),
connection=connection,
)We can then create and start the job as before:
Downloading assets works the same way as for level2:
[PosixPath('force-tsa-results/CITEME_0x31.txt'),
PosixPath('force-tsa-results/X0031_Y0029/20260417-20260427_001-365_HL_TSA_SEN2L_EVI_STM.tif'),
PosixPath('force-tsa-results/X0031_Y0029/20260417-20260427_001-365_HL_TSA_SEN2L_NBR_STM.tif'),
PosixPath('force-tsa-results/X0031_Y0029/20260417-20260427_001-365_HL_TSA_SEN2L_NDVI_STM.tif'),
PosixPath('force-tsa-results/X0031_Y0030/20260417-20260427_001-365_HL_TSA_SEN2L_EVI_STM.tif'),
PosixPath('force-tsa-results/X0031_Y0030/20260417-20260427_001-365_HL_TSA_SEN2L_NBR_STM.tif'),
PosixPath('force-tsa-results/X0031_Y0030/20260417-20260427_001-365_HL_TSA_SEN2L_NDVI_STM.tif'),
PosixPath('force-tsa-results/datacube-definition.prj'),
PosixPath('force-tsa-results/job-results.json')]
Further processing
Because level 2 results are provided by a STAC URL to the TSA process, it is possible run multiple TSA jobs with the same level 2 input, without expensively reprocessing the level 2 data. We just create a new TSA process graph and submit it, passing the same level 2 data cube URL.
Remember that the job assets will be stored for some time on the backend which allows you to do processing over a span of a few days, but will not be stored permanently. Please download and archive results you wish to keep on your own infrastructure.