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,
version = NULL,
licence_link = NULL,
reference = NULL,
notes = NULL,
overwrite = FALSE
)
Arguments
name |
|
description |
|
homepage |
|
version |
|
licence_link |
|
reference |
|
notes |
|
overwrite |
|
Value
Returns a tibble of the new entry that is appended to 'inv_dataseries.csv'.
See Also
Other register functions:
regGeometry()
,
regTable()
Examples
if(dev.interactive()){
# start the example database
adb_exampleDB(until = "match_gazetteer", path = tempdir())
regDataseries(name = "gadm",
description = "Database of Global Administrative Areas",
version = "3.6",
homepage = "https://gadm.org/index.html",
licence_link = "https://gadm.org/license.html")
}