I draw a map of the regions of Russia using GADM data:
setwd("~/Desktop/Master thesis/") library(sp) library(RColorBrewer) library(raster) data <- getData('GADM', country='RUS', level=1) #exclude columns I don't need data <- data[,-c(2,3,4,5,7,8,9,10,11,12,13)] data$region <- as.factor(iconv(as.character(data$NAME_1))) png(file = "~/Desktop/myplot2.png", width = 1300, height = 700, units = "px") spplot(data, "region", xlim=c(15,190), ylim=c(40,83), col.regions = colorRampPalette(brewer.pal(12, "Set3"))(85), col = "white") dev.off()
Card I received: 
The map I received is too flat and does not look like the fe map from Wikipedia. The right and left parts of the map should be slightly rotated (as due to the round shape of the globe).
Map from Wiki: 
Is there any way to make it more “globe”?
source share