Loading Multiple Shapefiles to the R-Console Simultaneously
[This article was first published on   theBioBucket*, and kindly contributed to R-bloggers].  (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
            A quick tip on how to load multiple shapefiles (point shapefiles, i.e.) to the R console in one go:Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
library(sp)
# get all files with the .shp extension from working directory 
setwd("D:/GIS_DataBase/GIS_Tirol/Tirol_Verbreitungskarten/Verbreitungs_Daten")
shps <- dir(getwd(), "*.shp")
# the assign function will take the string representing shp and turn it into a variable
# which holds the spatial points data
for (shp in shps) assign(shp, readShapePoints(shp))
# ...done
		
            
To leave a comment for the author, please follow the link and comment on their blog:  theBioBucket*.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
