states: Outline of US states and equivalents

Description Usage Format Examples

Description

Data from shapefiles provided by the Census Bureau<e2><80><99>s MAF/TIGER geographic database at https://www.census.gov/geo/maps-data/data/cbf/cbf_state.html. State outlines are based on the 1:20m resolution level. Internal points, divisions and regions are based on TIGER/Line Shapefiles for states and equivalents in the 2016 release.

Usage

1
2
3
4
5

Format

both objects are data frames consisting of variables of length ~13k:

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
states %>% ggplot(aes(x = long, y = lat)) +
  geom_path(aes(group = group)) +
  geom_point(data = states %>% map_unif(n = 1000), colour = "red", size = 0.25)

inset %>% ggplot(aes(x = long, y = lat)) +
  geom_path(aes(group = group)) +
  geom_point(data = inset %>% map_unif(n = 1000), colour = "red", size = 0.25)

division %>% ggplot(aes(x = long, y = lat)) +
  geom_path(aes(group = group)) +
  geom_point(data = division %>% map_unif(n = 1000), colour = "red", size = 0.25)

heike/ggmapr documentation built on May 17, 2019, 3:23 p.m.