R/getDataverIDs.R

Defines functions getDataverIDs

Documented in getDataverIDs

#' get list of datasets
#'
#' This API allows the user to have a list of all the datasets IDs that can be screened in the DATSU API.
#'
#' @return The list of Datasets that can be screened in DATSU with the IDs
#'
#' @examples
#' \dontrun{
#' formats <- getDataverIDs()
#' formats[grep("vms", tolower(formats$description)), ]
#'}
#' @export
getDataverIDs <- function() {
  url <- datsu_api("getDataverIDs")

  out <- datsu_get(url)

  out
}

Try the icesDatsu package in your browser

Any scripts or data that you put into this service are public.

icesDatsu documentation built on Oct. 25, 2024, 1:06 a.m.