R/cdo-input.R

Defines functions cdo_input

Documented in cdo_input

## This file was created automatically, do not edit by hand.

#' @param ofile String with the path to the output file.
#' @param grid STRING - Grid description file or name
#' @param zaxis STRING - Z-axis description file
#'
#' @export
#' @rdname input
cdo_input <- function(grid = NULL, zaxis = NULL, ofile = NULL) {
  cdo(operator = operators$input,
      input = list(),
      params = list(grid = grid, zaxis = zaxis),
      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.