gpt4 book ai didi

r - "Globe"形状的俄罗斯 map

转载 作者:行者123 更新时间:2023-12-04 15:32:11 24 4
gpt4 key购买 nike

我使用 GADM 数据绘制了俄罗斯地区的 map :

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()

我得到的 map :
enter image description here

我得到的 map 太“平坦”,看起来不像 map f.e.来自维基百科。 map 的左右部分应该稍微转动一下(因为它们是由于地球的圆形形状)。

来自维基的 map :
enter image description here

有没有办法让它更“球形”?

最佳答案

如果您不介意使用 ggplot2,您可以使用 coord_map("azequalarea") .

创建数据框:

library(ggplot2)
library(maptools)
data.f <- fortify(data, region = "region")

然后情节:
ggplot(data.f) +
geom_polygon(aes(x = long, y = lat, fill = id, group = group), colour = "white") +
xlim(15,190) +
ylim(40,83) +
coord_map("azequalarea") +
scale_fill_manual(values = colorRampPalette(brewer.pal(12, "Set3"))(85)) +
theme(axis.line = element_blank(),
axis.text.x = element_blank(),
axis.text.y = element_blank(),
axis.ticks = element_blank(),
axis.title.x = element_blank(),
axis.title.y = element_blank(),
panel.background = element_blank(),
panel.border = element_blank(),
panel.grid.major = element_blank(),
panel.grid.minor = element_blank(),
plot.background = element_blank())

enter image description here

关于r - "Globe"形状的俄罗斯 map ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37566620/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com