bbmap 更改原子向量值

huangapple go评论62阅读模式
英文:

bbmap change atomic vector value

问题

我正在使用 bbmapggmap 来绘制纽约曼哈顿的地图。我的代码是:

mh_bb <- getbb('manhattan new york usa')
mh_map <- get_map(mh_bb, source='google')
ggmap(mh_map)

然而,我想要降低纬度的最小值。我尝试了:

mh_bb$min[2] <- 40.6

但我收到错误消息,提示 $ operator is invalid for atomic vectors。请问有人可以告诉我如何更改最小纬度吗?谢谢!

英文:

I'm using bbmap and ggmap to plot a map of Manhattan, New York, USA. My code is:

mh_bb &lt;- getbb(&#39;manhattan new york usa&#39;)
mh_map &lt;- get_map(mh_bb, source=&#39;google&#39;)
ggmap(mh_map)

However, I would like to lower the minimum value of the latitude. I tried:

mh_bb$min[2] &lt;- 40.6

but I get the error that $ operator is invalid for atomic vectors.

Could someone tell me how I can change the minimum latitude? Thanks!

答案1

得分: 1

尝试这个:

mh_bb <- getbb('曼哈顿 纽约 美国')
mh_bb[2] <- 40.6
mh_map <- get_map(mh_bb, source='谷歌')
ggmap(mh_map)
英文:

Try this:

mh_bb &lt;- getbb(&#39;manhattan new york usa&#39;)
mh_bb[2] &lt;- 40.6
mh_map &lt;- get_map(mh_bb, source=&#39;google&#39;)
ggmap(mh_map)

huangapple
  • 本文由 发表于 2023年6月22日 05:02:43
  • 转载请务必保留本文链接:https://go.coder-hub.com/76527112.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定