R/cdo-timselpctl.R

Defines functions cdo_timselpctl

Documented in cdo_timselpctl

## 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 p FLOAT - Percentile number in \{0, ..., 100\}
#' @param nsets INTEGER - Number of input timesteps for each output timestep
#' @param noffset INTEGER - Number of input timesteps skipped before the first timestep range (optional)
#' @param nskip INTEGER - Number of input timesteps skipped between timestep ranges (optional)
#'
#' @export
#' @rdname timselpctl
cdo_timselpctl <- function(ifile1, ifile2, ifile3, p = NULL, nsets = NULL, noffset = NULL, nskip = NULL, ofile = NULL) {
  cdo(operator = operators$timselpctl,
      input = list(ifile1, ifile2, ifile3),
      params = list(p = p, nsets = nsets, noffset = noffset, nskip = nskip),
      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.