I have 8 shape files each containing the outlines of many river catchments. I've used a combination of rgdal, rgeos and sp to read these and form a list of 8 SpatialPolygonsDataFrame objects. The code I used is as follows:
unit.num <- c(13,18,19,29,41,75,79,80)
GetCatchmentShapes <- function(x) {
file.name <- paste("GFMUnit",x,"_GFES_Watersheds_WGS84.shp",sep="")
con = file.path(project.folder,"RawData","Watersheds","GFES Watersheds",file.name)
catchment.list <- readOGR(con,ogrListLayers(con))
}
all.catchments <- sapply(unit.num, GetCatchmentShapes)
How can I combine the 8 elements of all.catchments
into a single SpatialPolygonsDataFrame object?
You can use the
spChFIDs(...)
function in packagesp
to change the polygon IDs to unique values, then userbind(...)
to combine the spatialPolygonDataFrame objects.Here is an example using the shapefiles for France, Italy, and Germany.