GetQueryables {CDSE} | R Documentation |
Returns a list of variable terms that can be used in CQL2 expressions to filter the collection catalog search.
GetQueryables(
collection,
as_data_frame = TRUE,
client,
token,
url = getOption("CDSE.catalog_url")
)
collection |
character indicating the collection for which the parameters are queried.
Must be one of the collections returned by |
as_data_frame |
logical indicating if the result should be returned as data frame. Default: TRUE |
client |
OAuth client object to use for authentication. |
token |
OAuth token character string to use for authentication. Exactly one of either |
url |
character indicating the STAC catalog search endpoint. Default: Copernicus Data Space Ecosystem STAC endpoint |
If no parameters found, a NULL
value or 0-row data.frame
is returned.
A list
or a data.frame
.
## Not run:
GetQueryables("sentinel-2-l2a", client = OAuthClient)
## End(Not run)