Nothing
## 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)
)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.