Created
May 1, 2018 19:36
-
-
Save mgahan/91bc895c5170fa41464889e784179901 to your computer and use it in GitHub Desktop.
Mapshaper Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#mapshaper tl_2013_31_cousub.shp -simplify weighted 0.02% -o simplified.shp | |
library(rgdal) | |
library(sp) | |
before <- readOGR("tl_2013_31_cousub.shp") | |
after <- readOGR("simplified.shp") | |
plot(before) | |
plot(after) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment