R/cdo-fldmax.R

Defines functions cdo_fldmax

Documented in cdo_fldmax

## This file was created automatically, do not edit by hand.
#' @param ifile String with the path to the input file.
#' @param ofile String with the path to the output file.
#' @param weights BOOL - weights=FALSE disables weighting by grid cell area \[default: weights=TRUE\]
#' @param p FLOAT - Percentile number in \{0, ..., 100\}
#'
#' @export
#' @rdname fldstat
cdo_fldmax <- function(ifile, weights = NULL, p = NULL, ofile = NULL) {
  cdo(operator = operators$fldmax,
      input = list(ifile),
      params = list(weights = weights, p = p),
      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.