add_shape {nodiv} | R Documentation |
nodiv
data object
Takes a shapefile, e.g. as points or polygons, and adds it to the data object
add_shape(distrib_data, shape)
distrib_data |
An object of type |
shape |
A GIS shapefile, from e.g. packages |
Returns the object with the new shapefile
Michael Krabbe Borregaard
# remove the shapefile from coquettes
data(coquettes)
sh <- coquettes$shape
coquettes$shape <- NULL
# and add it back in
coquettes <- add_shape(coquettes, sh)