Learn R Programming

tigris (version 1.6)

rbind_tigris: Row-bind tigris Spatial objects

Description

If multiple school district types are rbound, coerces to "sdall" and does it

Usage

rbind_tigris(...)

Arguments

...

individual (optionally names) tigris Spatial objects or a list of them

Value

one combined Spatial object

Examples

Run this code
# NOT RUN {
library(sp)
library(rgeos)
library(maptools)
library(maps)
library(tigris)

me_ctys <- list_counties("me")
aw <- lapply(me_ctys$county_code[1:3], function(x) {
  area_water("Maine", x)
})
tmp <- rbind_tigris(aw)
tmp_simp <- gSimplify(tmp, tol=1/200, topologyPreserve=TRUE)
tmp_simp <- SpatialPolygonsDataFrame(tmp_simp, tmp@data)
plot(tmp_simp)
# }

Run the code above in your browser using DataLab