Description from the US Census Bureau (see link for source): The 2017 TIGER/Line Shapefiles contain the 115th Congressional Districts. All congressional districts appearing in the 2017 TIGER/Line Shapefiles reflect the information provided to the Census Bureau by the states by May 1, 2016. The 115th Congressional District shapefile contains the areas in effect from January 2017 to 2019.
congressional_districts(cb = FALSE, resolution = "500k", year = NULL,
...)
If cb is set to TRUE, download a generalized (1:500k) cartographic boundary file. Defaults to FALSE (the most detailed TIGER/Line file).
The resolution of the cartographic boundary file (if cb == TRUE). Defaults to '500k'; options include '5m' (1:5 million) and '20m' (1:20 million).
the data year (defaults to 2017). To get boundaries for the 115th congress, set year = 2017
.
arguments to be passed to the underlying `load_tiger` function, which is not exported.
Options include class
, which can be set to "sp"
(the default) or "sf"
to
request sp or sf class objects, and refresh
, which specifies whether
or not to re-download shapefiles (defaults to FALSE
).
Congressional districts are the 435 areas from which people are elected to the U.S. House of Representatives and the five areas with nonvoting delegates from state equivalents. After the apportionment of congressional seats among the states based on decennial census population counts, each state is responsible for establishing the boundaries of the congressional districts for the purpose of electing representatives. Each congressional district is to be as equal in population to all other congressional districts in a state as practicable.
http://www2.census.gov/geo/pdfs/maps-data/data/tiger/tgrshp2017/TGRSHP2017_TechDoc.pdf
Other legislative district functions: state_legislative_districts
,
voting_districts
# NOT RUN {
library(tigris)
library(leaflet)
cd114 <- congressional_districts(cb = TRUE, resolution = '20m')
leaflet(cd114) %>%
addTiles() %>%
addPolygons()
# }
Run the code above in your browser using DataLab