I made the map below, multiplying the shapefile downloaded from www.gadm.org:
load(url('http://gadm.org/data/rda/GBR_adm0.RData')) library(ggplot2) ukMapFort <- fortify(gadm) ukMapFortSub <- subset(ukMapFort, lat > 55.575 & lat < 55.739 & long > -1.929 & long < -1.7) ggplot() + geom_polygon(data=data.frame(ukMapFortSub), aes(long, lat, group=id), fill=NA, color="black")

How to remove two red lines? Note. I painted the lines in red using Photoshop - these lines are created using the R code, but not painted red with the R code.
source share