The queryables endpoint allows the user to discover which
properties can be used in the filter extension.
This endpoint can be accessed from the catalog (/queryables
)
or from a collection (/collections/{collection_id}/queryables
).
Examples
if (FALSE) { # \dontrun{
# Catalog's queryables
stac("https://planetarycomputer.microsoft.com/api/stac/v1") %>%
queryables() %>% get_request()
# Collection's queryables
stac("https://planetarycomputer.microsoft.com/api/stac/v1") %>%
collections(collection_id = "sentinel-2-l2a") %>%
queryables() %>%
get_request()
} # }