Learn R Programming

geosapi (version 0.7-1)

GSGeoPackageDataStore: Geoserver REST API GeoPackageDataStore

Description

Geoserver REST API GeoPackageDataStore

Geoserver REST API GeoPackageDataStore

Arguments

Value

Object of R6Class for modelling a GeoServer GeoPackage dataStore

Format

R6Class object.

Author

Emmanuel Blondel <emmanuel.blondel1@gmail.com>

Super classes

geosapi::GSRESTResource -> geosapi::GSAbstractStore -> geosapi::GSAbstractDataStore -> geosapi::GSAbstractDBDataStore -> GSGeoPackageDataStore

Methods

Inherited methods


Method new()

initializes an GeoPackage data store

Usage

GSGeoPackageDataStore$new(
  xml = NULL,
  name = NULL,
  description = "",
  enabled = TRUE,
  database = NULL
)

Arguments

xml

an object of class xml_node-class to create object from XML

name

coverage store name

description

coverage store description

enabled

whether the store should be enabled or not. Default is TRUE

database

database


Method clone()

The objects of this class are cloneable with this method.

Usage

GSGeoPackageDataStore$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Examples

Run this code
ds <- GSGeoPackageDataStore$new(
 name = "ds", description = "des", 
 enabled = TRUE, database = NULL
)

Run the code above in your browser using DataLab