R/cdo-sethalo.R

Defines functions cdo_sethalo

Documented in cdo_sethalo

## 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 east INTEGER - East halo
#' @param west INTEGER - West halo
#' @param south INTEGER - South halo
#' @param north INTEGER - North halo
#' @param value FLOAT - Fill value (default is the missing value)
#'
#' @export
#' @rdname sethalo
cdo_sethalo <- function(ifile, east = NULL, west = NULL, south = NULL, north = NULL, value = NULL, ofile = NULL) {
  cdo(operator = operators$sethalo,
      input = list(ifile),
      params = list(east = east, west = west, south = south, north = north, value = value),
      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.