radiantearth / stac-browser

A full-fledged UI in Vue for browsing and searching static STAC catalogs and STAC APIs
https://radiantearth.github.io/stac-browser
ISC License
286 stars 143 forks source link

Catalogs search box and keywords list missing #505

Closed itrnd closed 1 week ago

itrnd commented 1 week ago

The main page top catalogs filtering search box and keywords drop-down list are no longer visible. This happened as soon as we implemented collections pagination in our STAC API. I was able to reproduce this issue with other public API's: docker run --rm --name fedeo -d -p 8081:8080 -e SB_catalogUrl="https://emc.spacebel.be/" stac-browser:v1 As it can also be seen here: https://radiantearth.github.io/stac-browser/#/external/fedeo.ceos.org/

m-mohr commented 1 week ago

The search box + collection keywords work only client-side and as such can only work when all data is available to the client directly, which is not the case once pagination is enabled. In this case you have to use the Collection Search extension via the dedicated search page in STAC Browser.

Long-term we could potentially redirect the search box to collection search + free text search if available, but it won't work for the keywords as I have no way to know which keywords are actually available.