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.