Hello,
I’m getting {“code”:404,“description”:“Collection not found.”} returned when using the search api for landsat-tm-l1, directly hitting the rest endpoint or using the python module, e.g.
curl -X GET -G https://services.sentinel-hub.com/api/v1/catalog/1.0.0/search \
--header 'Authorization: Bearer xxx' \
--data 'bbox=13,45,14,46' \
--data 'limit=5' \
--data 'collections=landsat-tm-l1' \
--data 'datetime=1990-12-10T00:00:00Z/2019-12-11T00:00:00Z'
catalog.search(
DataCollection.LANDSAT_TM_L1,
bbox=bbox,
time=(start, end),
fields={"include": s"id", "properties.datetime", "properties.eo:cloud_cover"], "exclude": ]]}
)
Looks like none of these are working:
DataCollection.LANDSAT_MSS_L1
DataCollection.LANDSAT_TM_L1
DataCollection.LANDSAT_TM_L2
DataCollection.LANDSAT_ETM_L1
DataCollection.LANDSAT_ETM_L2
DataCollection.LANDSAT_OT_L1
DataCollection.LANDSAT_OT_L2