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 type STRING - Type of the grid: quadratic, linear, cubic (default: type=quadratic)
#' @param trunc STRING - Triangular truncation
#'
#' @export
#' @rdname spectral
cdo_gp2sp <- function(ifile, type = NULL, trunc = NULL, ofile = NULL) {
cdo(operator = operators$gp2sp,
input = list(ifile),
params = list(type = type, trunc = trunc),
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.