使用ggmap时"Error in gzfile"是什么意思?
What does "Error in gzfile" mean when using ggmap?
我在尝试获取 bbox 的 google 地形图时遇到以下错误。这是什么意思?
48 tiles needed, this may take a while (try a smaller zoom).
Error in gzfile(file, "rb") : cannot open the connection
In addition: Warning message:
In gzfile(file, "rb") :
cannot open compressed file '/var/folders/40/dzd1lk550rs2h6_pkbfdrhm40000gn/T//RtmpqYC95O/ggmap/index.rds', probable reason 'No such file or directory'
这是我的参考代码(我有一个我最近使用的 API 密钥应该可以工作):
ts2 <- get_map(location = c(left = -81.652049, bottom = 72.228, right = -80.367, top = 72.5), maptype = 'terrain',source = 'google', force = T )
ggmap(ts2)
这可能不是解决问题的确切答案,但快速 uninstall/reinstall 的 ggmap
可以解决问题。
我在尝试获取 bbox 的 google 地形图时遇到以下错误。这是什么意思?
48 tiles needed, this may take a while (try a smaller zoom).
Error in gzfile(file, "rb") : cannot open the connection
In addition: Warning message:
In gzfile(file, "rb") :
cannot open compressed file '/var/folders/40/dzd1lk550rs2h6_pkbfdrhm40000gn/T//RtmpqYC95O/ggmap/index.rds', probable reason 'No such file or directory'
这是我的参考代码(我有一个我最近使用的 API 密钥应该可以工作):
ts2 <- get_map(location = c(left = -81.652049, bottom = 72.228, right = -80.367, top = 72.5), maptype = 'terrain',source = 'google', force = T )
ggmap(ts2)
这可能不是解决问题的确切答案,但快速 uninstall/reinstall 的 ggmap
可以解决问题。