Nothing
## This file was created automatically, do not edit by hand.
#' @param ofile String with the path to the output file.
#' @param const FLOAT - Constant
#' @param seed INTEGER - The seed for a new sequence of pseudo-random numbers \[default: 1\]
#' @param grid STRING - Target grid description file or name
#' @param start FLOAT - Start value of the loop
#' @param end FLOAT - End value of the loop
#' @param inc FLOAT - Increment of the loop \[default: 1\]
#' @param levels FLOAT - Target levels in metre above surface
#'
#' @export
#' @rdname vargen
cdo_seq <- function(const = NULL, seed = NULL, grid = NULL, start = NULL, end = NULL, inc = NULL, levels = NULL, ofile = NULL) {
cdo(operator = operators$seq,
input = list(),
params = list(const = const, seed = seed, grid = grid, start = start, end = end, inc = inc, levels = levels),
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.