Landsat collections not found in search

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": ["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
1 Like

Hi @JohnLavelle,
for Landsat collections you should use our us-west-2 end-point, see:

Do replace

https://services.sentinel-hub.com

with

https://services-uswest2.sentinel-hub.com

and it should work.

2 Likes

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.