R/cdo-zonpctl.R

Defines functions cdo_zonpctl

Documented in cdo_zonpctl

## 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 p FLOAT - Percentile number in \{0, ..., 100\}
#' @param zonaldes STRING - Description of the zonal latitude bins needed for data on an unstructured grid. A predefined zonal description is zonal_<DY>. DY is the increment of the latitudes in degrees.
#'
#' @export
#' @rdname zonstat
cdo_zonpctl <- function(ifile, p = NULL, zonaldes = NULL, ofile = NULL) {
  cdo(operator = operators$zonpctl,
      input = list(ifile),
      params = list(p = p, zonaldes = zonaldes),
      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.