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 method STRING - Fill method \[nearest|linear|forward|backward\] (default: nearest)
#' @param limit INTEGER - The maximum number of consecutive missing values to fill (default: all)
#' @param max_gaps INTEGER - The maximum number of gaps to fill (default: all)
#'
#' @export
#' @rdname vertfillmiss
cdo_vertfillmiss <- function(ifile, method = NULL, limit = NULL, max_gaps = NULL, ofile = NULL) {
cdo(operator = operators$vertfillmiss,
input = list(ifile),
params = list(method = method, limit = limit, max_gaps = max_gaps),
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.