Landsat 8-9 level 2 eo:cloud_cover

Hi,

I am collecting metadata from the catalog API for Landsat 8-9 L2 (landat-ot-l2) using javascript:

$.ajax({
url: “https://services-uswest2.sentinel-hub.com/api/v1/catalog/search”,
headers: {
‘Authorization’: "Bearer " + senResp.data.access_token,
},
data: ({
bbox: extent4326,
datetime: fromDatestr + “/” + todayDatestr,
collections: ‘landsat-ot-l2’,
limit: 100,
filter: "eo:cloud_cover <= " + cloudCover,
})
})

This code is working fine for Sentinel-2 L2A data however this does not function correctly for Landsat 8-9 L2 data. The imagery metadata is returned but when modifying the ‘cloudCover’ variable (Integer) to filter out varying levels of cloud cover it has no affect. The docs say this filter is available for this dataset but is not working as far as l can see.

Hi Steven,

I just tested this in Request Builder. I tried a request without the filter, and then with a cloud cover percentage of 50% which removed my results so from my side it seems to be functioning correctly.

Can you share some specific requests to help me troubleshoot and replicate your issue?