Dear R users,
I have one shape file, now I want to dissolve internal state boundaries. I did it, but still I could not dissolve the entire internal state boundaries.
(DOTS are appearing, see the attached plot).
For dissolving the internal boundaries, I used
m = st_read("NorthRegion.shp")
class(m)
(st_union(m$geom)) -> m1
as(st_geometry(m1), "Spatial") -> nc_sp
as(nc_sp, "SpatialPolygonsDataFrame") -> X1
class(X1)
plot(X1)
please let me know how can I remove dots in the shape files?