R/GSImageMosaicCoverageStore.R

#' Geoserver REST API ImageMosaicCoverageStore
#'
#' @docType class
#' @importFrom R6 R6Class
#' @export
#' @keywords geoserver rest api CoverageStore ImageMosaic
#' @return Object of \code{\link{R6Class}} for modelling a GeoServer ImageMosaic CoverageStore
#' @format \code{\link{R6Class}} object.
#' 
#' @author Emmanuel Blondel <emmanuel.blondel1@@gmail.com>
#'
GSImageMosaicCoverageStore <- R6Class("GSImageMosaicCoverageStore",
   inherit = GSAbstractCoverageStore,
   private = list(
     TYPE = "ImageMosaic"
   ),
   public = list(
     #'@field url url
     url = NULL,
     
     #'@description Initializes an Image Mosaic coverage store
     #'@param xml an object of class \link{XMLInternalNode-class} to create object from XML
     #'@param name coverage store name
     #'@param description coverage store description
     #'@param enabled whether the store should be enabled or not. Default is \code{TRUE}
     #'@param url url
     initialize = function(xml = NULL, name = NULL, description = "", enabled = TRUE, url = NULL){
       super$initialize(xml = xml, type = private$TYPE, 
                        name = name, description = description, enabled = enabled, url = url)
     }
   )                     
)

Try the geosapi package in your browser

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

geosapi documentation built on Oct. 4, 2023, 5:06 p.m.