R/cdo-outputext.R

Defines functions cdo_outputext

Documented in cdo_outputext

## This file was created automatically, do not edit by hand.
#' @param ifiles Character vector with the path to the input files.

#' @param format STRING - C-style format for one element (e.g. %13.6g)
#' @param nelem INTEGER - Number of elements for each row (default: nelem = 1)
#'
#' @export
#' @rdname output
cdo_outputext <- function(ifiles, format = NULL, nelem = NULL) {
  cdo(operator = operators$outputext,
      input = maybe_list(ifiles),
      params = list(format = format, nelem = nelem),
      output = c()
  )
}

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.