Walks the STAC catalog to retrieve all products, datasets, and Zarr URLs.

cmems_catalog(product_ids = NULL, progress = TRUE)

Arguments

product_ids

Character vector of product IDs, or NULL for all products

progress

Show progress messages

Value

A tibble with columns: product_id, dataset_version_id, dataset_id, version, timeChunked_url, geoChunked_url, native_url, and GDAL/S3 variants

Examples

if (FALSE) { # \dontrun{
# Single product
cat <- cmems_catalog("SEALEVEL_GLO_PHY_L4_NRT_008_046")

# All products (takes a few minutes)
full <- cmems_catalog()
} # }