geoserver {sigugr} | R Documentation |
GeoServer Connection Object ('geoserver' S3 Class)
Description
This S3 class represents a connection to a GeoServer instance. It stores the connection details, including the base URL, user credentials, and the default workspace.
Usage
geoserver(url, user, password, workspace)
Arguments
url |
A character string specifying the base URL of the GeoServer instance (e.g., '"http://localhost:8080/geoserver"'). |
user |
A character string representing the GeoServer username with the required permissions. |
password |
A character string representing the password for the specified user. |
workspace |
A character string specifying the default workspace to use in GeoServer operations. |
Value
An object of class 'geoserver' or NULL if an error occurred.
See Also
Other publish to GeoServer:
publish_bands()
,
publish_layer()
,
publish_layer_set()
,
publish_raster()
,
register_datastore_postgis()
Examples
## Not run:
gso <- geoserver(
url = "http://localhost:8080/geoserver",
user = "admin",
password = "geoserver",
workspace = "sigugr_test"
)
## End(Not run)
[Package sigugr version 1.0.0 Index]