R/cdo-uv2dv_cfd.R

Defines functions cdo_uv2dv_cfd

Documented in cdo_uv2dv_cfd

## 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 u STRING - Name of variable u (default: u)
#' @param v STRING - Name of variable v (default: v)
#' @param boundOpt INTEGER - Boundary condition option (0-3) (default: 0/1 for cyclic grids)
#' @param outMode STRING - Output mode new/append (default: new)
#'
#' @export
#' @rdname ncl_wind
cdo_uv2dv_cfd <- function(ifile, u = NULL, v = NULL, boundOpt = NULL, outMode = NULL, ofile = NULL) {
  cdo(operator = operators$uv2dv_cfd,
      input = list(ifile),
      params = list(u = u, v = v, boundOpt = boundOpt, outMode = outMode),
      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.