import openeo
url = "https://openeo.dataspace.copernicus.eu"
connection = openeo.connect(url).authenticate_oidc()
datacube = connection.load_collection(
"SENTINEL2_L2A",
spatial_extent={"east": 4.5, "north": 50.9, "south": 50.8, "west": 4.3},
temporal_extent=["2023-06-01", "2023-06-07"],
bands=["SCL"],
)
datacube.download("single_tif.tif")
datacube.download("single_nc.nc")
The resulting tiff contains a scrambled result of multiple dates in the overviews. Ideally it should throw an error, or choose one date.
I think this is unrelated to Eliens changes to the pyramids