1
img2 <- png::readPNG("IGCE.png")
shape <- readOGR(dsn = "C:/Users/Владимир/Desktop/ИГКЭ/QGIS", layer = "ne_50m_land")

rast <- grid::rasterGrob(img2, interpolate = T)

ggplot()+
geom_polygon(data = g, aes(x = long, y = lat, group = group), colour = "black", fill = NA)+
coord_fixed(xlim = c(4000000, 12000000),  ylim = c(3000000, 8000000))+
annotation_custom(rast)

thats is the result I have got. enter image description hereI made one picture with shape file in ggplot2:

How should I make second picture change size? It should be smaller. This is may picture It is the shape

0 Answers0