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.
regDataseries(
name = NULL,
description = NULL,
homepage = NULL,
version = NULL,
licence_link = NULL,
notes = NULL,
overwrite = FALSE
)
[character(1)
]
the dataseries abbreviation or name.
[character(1)
]
the "long name" or "brief
description" of the dataseries.
[character(1)
]
the homepage of the data provider
where the dataseries or additional information can be found.
[character(1)
]
the version number or date when meta
data of the dataseries were recorded.
[character(1)
]
link to the licence or the
webpage from which the licence was copied.
[character(1)
]
optional notes.
[logical(1)
]
whether or not the dataseries to
register shall overwrite a potentially already existing older version.
Returns a tibble of the new entry that is appended to 'inv_dataseries.csv'.
Other register functions:
regGeometry()
,
regTable()
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")
}