
Get/set the optional Geolocation
property as an attribute to an
R object.
geolocation(x)geolocation(x, overwrite = TRUE) <- value
The Geolocation
attribute as a character of length 1 is added to x
.
An R object, such as a data.frame, a tibble, or a data.table.
If the attributes should be overwritten. In case it is set to FALSE
,
it gives a message with the current Geolocation
property instead of overwriting it.
Defaults to TRUE
when the attribute is set to value
regardless of previous
setting.
The Geolocation
as a character string.
The Geolocation
is recommended for discovery in DataCite.
Spatial region or named place where the data was gathered
or about which the data is focused.
iris_dataset <- iris
geolocation(iris_dataset) <- "US"
geolocation(iris_dataset)
geolocation(iris_dataset, overwrite = FALSE) <- "GB"
Run the code above in your browser using DataLab