Loading data using UTM bbox

Hi all!

I am trying to load data:

bbox_openeo = {'west': 580742.0204985982, 'east': 582850.6377418011, 'south': 5441038.953739742, 'north': 5442903.539375294, 'crs': 'EPSG:32633'}
start = "2017-04-01"
stop = "2021-01-01"
band_codes = ["B02", "B03", "B04", "B08", "B11", "CLM", "CLP"]
dc: DataCube = con.load_collection(
        collection_id="SENTINEL2_L1C_SENTINELHUB",
        spatial_extent=bbox_openeo,
        temporal_extent=(start, stop),
        bands=band_codes
    )

Which return a 1-x, 1-y no-t datacube, while using a similar query using a EPSG:4326 query works just fine. I mistake on my end or a possible bug?

Thanks,
Jaap

This indeed looks like a bug.

Unfortunately due to authentication issues with EGI I can not check myself at the moment

Can you try with the backend "openeo-dev.vito.be" ? (I’m assuming you use openeo.cloud)

when I try your snippet with openeo-dev.vito.be and download as NetCDF, I get 334 timestamps in my dataset:

Seems to be working…
Retried with the vito (prod) backend, and that worked as well. Not sure what was going on, but I can continue now :slight_smile: