cms_product_details {CopernicusMarine}R Documentation

Obtain details for a specific Copernicus marine product

Description

[Stable] Obtain details for a specific Copernicus marine product. This can be narrowed down to specific layers and/or variables within the product.

Usage

cms_product_details(
  product,
  layer,
  variable,
  variant = c("", "detailed-v2", "detailed-v3")
)

Arguments

product

An identifier (type character) of the desired Copernicus marine product. Can be obtained with cms_products_list.

layer

The name of a desired layer within a product (type character). Can be obtained with cms_product_details.

variable

The name of a desired variable in a specific layer of a product (type character). Can be obtained with copernicus_product_details.

variant

A character string indicating the type of details that should be returned. Should be one of "" (default), "detailed-v2", or "detailed-v3".

Value

Returns a named list with properties of the requested product.

Author(s)

Pepijn de Vries

See Also

Other product-functions: cms_cite_product(), cms_product_metadata(), cms_product_services(), cms_products_list(), copernicus_cite_product(), copernicus_product_details(), copernicus_product_metadata(), copernicus_products_list()

Examples


cms_product_details("GLOBAL_ANALYSISFORECAST_PHY_001_024")

cms_product_details(
  product  = "GLOBAL_ANALYSISFORECAST_PHY_001_024",
  layer    = "cmems_mod_glo_phy-thetao_anfc_0.083deg_P1D-m",
  variable = "thetao"
)


[Package CopernicusMarine version 0.2.3 Index]