R/cdo-setmissval.R

Defines functions cdo_setmissval

Documented in cdo_setmissval

## 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 neighbors INTEGER - Number of nearest neighbors
#' @param newmiss FLOAT - New missing value
#' @param c FLOAT - Constant
#' @param rmin FLOAT - Lower bound
#' @param rmax FLOAT - Upper bound
#'
#' @export
#' @rdname setmiss
cdo_setmissval <- function(ifile, neighbors = NULL, newmiss = NULL, c = NULL, rmin = NULL, rmax = NULL, ofile = NULL) {
  cdo(operator = operators$setmissval,
      input = list(ifile),
      params = list(neighbors = neighbors, newmiss = newmiss, c = c, rmin = rmin, rmax = rmax),
      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.