R/cdo-addtrend.R

Defines functions cdo_addtrend

Documented in cdo_addtrend

## This file was created automatically, do not edit by hand.
#' @param ifile1,ifile2,ifile3 Strings with the path to the input files.
#' @param ofile String with the path to the output file.
#' @param equal BOOL - Set to false for unequal distributed timesteps (default: true)
#'
#' @export
#' @rdname trendarith
cdo_addtrend <- function(ifile1, ifile2, ifile3, equal = NULL, ofile = NULL) {
  cdo(operator = operators$addtrend,
      input = list(ifile1, ifile2, ifile3),
      params = list(equal = equal),
      output = c(ofile)
  )
}

Try the rcdo package in your browser

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

rcdo documentation built on June 8, 2025, 12:36 p.m.