R/WPSLiteralOutputDescription.R

#' WPSLiteralOutputDescription
#'
#' @docType class
#' @export
#' @keywords OGC WPS Process literal output description
#' @return Object of \code{\link{R6Class}} modelling a WPS process literal output description
#' @format \code{\link{R6Class}} object.
#' 
#' @note Class used internally by \pkg{ows4R}
#' 
#' @author Emmanuel Blondel <emmanuel.blondel1@@gmail.com>
#'
WPSLiteralOutputDescription <- R6Class("WPSLiteralOutputDescription",
   inherit = WPSOutputDescription,                       
   private = list(),
   public = list(
      
      #'@description Initializes a \link{WPSLiteralOutputDescription}
      #'@param xml object of class \link{XMLInternalNode-class} from \pkg{XML}
      #'@param version WPS service version
      #'@param logger logger
      #'@param ... any other parameter
     initialize = function(xml = NULL, version, logger = NULL, ...){
       super$initialize(xml = xml, version = version, logger = logger, ...)
     }
   )
)

Try the ows4R package in your browser

Any scripts or data that you put into this service are public.

ows4R documentation built on Sept. 1, 2023, 5:09 p.m.