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 level FLOAT - Comma-separated list of target levels
#' @param zdescription STRING - Path to a file containing a description of the Z-axis
#' @param zvarname STRING - Use zvarname as the vertical 3D source coordinate instead of the 1D coordinate variable
#' @param extrapolate BOOL - Fill target layers out of the source layer range with the nearest source layer
#'
#' @export
#' @rdname intlevel
cdo_intlevel <- function(ifile, level = NULL, zdescription = NULL, zvarname = NULL, extrapolate = NULL, ofile = NULL) {
cdo(operator = operators$intlevel,
input = list(ifile),
params = list(level = level, zdescription = zdescription, zvarname = zvarname, extrapolate = extrapolate),
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.