Created
October 9, 2014 19:56
-
-
Save anarosner/ac9853ff3583e549d3b0 to your computer and use it in GitHub Desktop.
#code snippet to import/export spatial files to/from r
This file contains 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
#code snippet to import/export spatial files to/from r | |
library(maptools) | |
library(rgdal) | |
# go to http://spatialreference.org/ to find proj4 string if you don't have it | |
#for importing/exporting esri shapefiles | |
r_object <- readShapePoly( fn="shapefile_name", proj4string=CRS("sdfsdlfj") ) | |
r_object$new_col <- r_object$old_col*10 | |
writeOGR(r_object, ".", layer="new_shapefile_name", driver="ESRI Shapefile") | |
#for exporting geojsons (from imported esri shapefile) | |
#example for Chris | |
boo <- readShapePoly( fn="huc4", IDvar="HUC4", proj4string=CRS("sdfsdlfj") ) | |
#(fn is short for filename, not function) | |
writeOGR(boo, "huc.geojson", layer="huc", driver="GeoJSON") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment