
Last chance! 50% off unlimited learning
Sale ends in
Loads and returns names, ids, and coordinates for USA, to use with mapping
functions and other "map" functions that accept an sf
object.
loadCoordUS(unit = c("country", "region", "division", "state",
"county", "district", "district_county", "urban_area"),
year = c("2018"), scale = c("20", "50", "500"),
unit_subset = NULL, matchWith = NULL, dir = NULL,
use_cache = TRUE, use_internet = TRUE, crs = NULL)
A data.frame object with columns indicating names, ids, and the geometry to map.
type of USA unit to link
year of the analysis
the scale of the map
character vector of unit names to extract
the type of id
local directory in which shape files are stored
a logical value indicating whether to use the cache
a logical value indicating wheter the coordinates are downloaded from https://github.com/mappinguniverse/geospatial. If FALSE
the maps downloaded during package installation will be used
coordinate reference system. Look at st_crs
Alessio Serafini
Coordinates are downloaded from the Github repo https://github.com/mappinguniverse/geospatial from US folder https://github.com/mappinguniverse/geospatial/tree/master/US.
If unit
is not specified, borders of the USA countries are loaded.
loadCoordIT
, loadCoordWR
, loadCoordDE
, loadCoordUK
, , loadCoordEU
US_coords = loadCoordUS(unit = "state")
str(US_coords)
# \donttest{
coords_us<- loadCoordUS(unit = "state", unit_subset = c("Florida", "California"))
# }
Run the code above in your browser using DataLab