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 p FLOAT - Percentile number in \{0, ..., 100\}
#' @param zonaldes STRING - Description of the zonal latitude bins needed for data on an unstructured grid. A predefined zonal description is zonal_<DY>. DY is the increment of the latitudes in degrees.
#'
#' @export
#' @rdname zonstat
cdo_zonstd <- function(ifile, p = NULL, zonaldes = NULL, ofile = NULL) {
cdo(operator = operators$zonstd,
input = list(ifile),
params = list(p = p, zonaldes = zonaldes),
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.