regDataseries {arealDB} | R Documentation |
Register a new dataseries
Description
This function registers a new dataseries of both, geometries or areal data into the geospatial database. This contains the name and relevant meta-data of a dataseries to enable provenance tracking and reproducability.
Usage
regDataseries(
name = NULL,
description = NULL,
homepage = NULL,
licence_link = NULL,
licence_path = NULL,
notes = NULL,
update = FALSE,
overwrite = FALSE
)
Arguments
name |
[ |
description |
[ |
homepage |
[ |
licence_link |
[ |
licence_path |
[ |
notes |
[ |
update |
[ |
overwrite |
[ |
Value
Returns a tibble of the new entry that is appended to
'inv_dataseries.csv' in case update = TRUE
.
See Also
Other register functions:
regGeometry()
,
regTable()
Examples
if(dev.interactive()){
# start the example database
makeExampleDB(until = "match_gazetteer", path = tempdir())
regDataseries(name = "gadm",
description = "Database of Global Administrative Areas",
homepage = "https://gadm.org/index.html",
licence_link = "https://gadm.org/license.html",
update = TRUE)
}