R/cdo-intlevelx3d.R

Defines functions cdo_intlevelx3d

Documented in cdo_intlevelx3d

## This file was created automatically, do not edit by hand.
#' @param ifile1,ifile2 Strings with the path to the input files.
#' @param ofile String with the path to the output file.
#' @param tgtcoordinate STRING - filename for 3D vertical target coordinates
#'
#' @export
#' @rdname intlevel3d
cdo_intlevelx3d <- function(ifile1, ifile2, tgtcoordinate = NULL, ofile = NULL) {
  cdo(operator = operators$intlevelx3d,
      input = list(ifile1, ifile2),
      params = list(tgtcoordinate = tgtcoordinate),
      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.