I want to combine the SpatialPolygonsDataFrame
of two neighbour countries like Pakistan and India. My MWE is below:
library(raster)
Pakistan.adm1.spdf <-
getData(
"GADM"
, country = "Pakistan"
, level = 1
)
India.adm1.spdf <-
getData(
"GADM"
, country = "India"
, level = 1
)
How can I combine these two shapefiles?