R/getFromComment.R

Defines functions getFromComment

Documented in getFromComment

#' getFromComment
#'
#' Helper function extract a metadata comment
#'
#' @md
#' @param x object the metadata should be extracted from
#' @param name name of the metadata to be extracted (e.g. unit)
#' @author Jan Philipp Dietrich
#' @examples
#' x <- as.magpie(1)
#' getComment(x) <- c(" description: example description", " unit: kg")
#' getFromComment(x, "unit")
#' getFromComment(x, "description")
#' @export

getFromComment <- function(x, name) {
  comment <- attr(x, "comment")
  key <- paste0("^ ", name, ": ")
  entry <- grep(key, comment)
  if (length(entry) == 0) return(NULL)
  if (length(entry) > 1) stop("duplicate metadata entries found!")
  return(sub(key, "", comment[entry]))
}

Try the madrat package in your browser

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

madrat documentation built on April 4, 2025, 5:41 a.m.