gpt4 book ai didi

R ggmap : Why can I create rectangular maps using the filename attribute, 但不在情节中使用它们?

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

我想在 R 中创建一张世界地图。我对 ggmap 有点熟悉。 ,所以我尝试了这样的事情:

ggmap(get_googlemap(center=c(83,25),
zoom=1, scale=4, filename="world", size=c(640,300)))

world.png 而言,它确实可以正常工作被关注到。

The world.png output

实际上,我很高兴找到了 ggmap 的解决方法。的“无法显示纬度 80° 以上的任何东西”的问题,因此或多或少不可能创建整个世界的 map 。

然而,在 R 本身中,也就是在图中, map 看起来根本不像它应该的样子:
Failed R map plot

这只发生在 map 是矩形的(当 size 属性被相应地设置时),而不是方形的(默认情况下)。

为什么?这个问题将来有没有可能得到解决?
从这里到正确的世界地图最快的方法是什么?

最佳答案

使用比例限制。
法线贴图

ggmap(get_map(location=c(28.978359,41.008240), zoom=13, scale="auto"))
Square Istanbul
矩形(裁剪) map
ggmap(get_map(location=c(28.978359,41.008240), zoom=13, scale="auto")) +
scale_x_continuous(limits = c(28.925,29.025), expand = c(0, 0)) +
scale_y_continuous(limits = c(40.99,41.03), expand = c(0, 0))
Rectangular Istanbul

关于R ggmap : Why can I create rectangular maps using the filename attribute, 但不在情节中使用它们?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19438316/

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