I am trying to merge two polygon shapefiles (spatialpolygondataframe, projected).
I have tried the solution in Append/Combine Shape Files however, I cannot seem to make it work.
The rbind
only works on SpatialPolygons, so I get rid of my attribute table. Still i get the following error:
rbind(t.poly1, t.poly2, fix.duplicated.IDs=TRUE)
Fehler in function (classes, fdef, mtable) : unable to find an inherited method for function ‘proj4string’ for signature ‘"logical"’
I dont really have power over the format of the proj4string:
CRS arguments: +proj=somerc +lat_0=46.95240555555556 +lon_0=7.439583333333333 +k_0=1 +x_0=600000 +y_0=200000 +ellps=bessel +units=m +no_defs
Do you have any explanation or solution as to what I could do to enable the merge?