Original County Union:
## [1] 3229
Simplified Object:
## [1] 322
Original: 3229 points, simplified object: 322 points, our simplified object removed 2907 points. Consequences of doing this computationally are that we lose accuracy in the shape of our object, however, we do not need to spend as much time or data space on unnecessary points.
Type | Number of Features | Mean Area (km^2) | Standard Deviation | Total Area (km^2) |
---|---|---|---|---|
US Counties | 3108 | 2521.745 | 3404.325 | 7837583 |
Voronoi | 3107 | 2522.865 | 2885.827 | 7838541 |
Triangulated | 6196 | 1252.506 | 1576.110 | 7760528 |
Square | 3108 | 2728.126 | 0.000 | 8479014 |
Hexagonal | 2271 | 3763.052 | 0.000 | 8545891 |
Analyzing the tesselation summaries for each type of tesselation, it is notable that the Hexagonal Tesselation has the fewest number of features, and the largest total area. Another thing to note is that both square and hexagonal tesselations have 0 as a value for the standard deviation.
counties_pip = pip(dams, counties, "geoid") %>%
plot_pip("Dams Per County")
v_pip = pip(dams, v_grid, "id") %>%
plot_pip("Dams Per Viroinoi Tesselation")
t_pip = pip(dams, t_grid, "id") %>%
plot_pip("Dams Per Triangulated Tesselation")
sq_pip = pip(dams, sq_grid, "id") %>%
plot_pip("Dams Per Square Coverage")
hex_pip = pip(dams, hex_grid, "id") %>%
plot_pip("Dams Per Hexagonal Coverage")
## [1] 495