2

我正在尝试在我的 Windows 10、R 3.4.2 上运行 osmar 包,并正确安装了 osmosis。但是,当我尝试运行代码时:

>library("osmar")
>
>src <- osmsource_osmosis(file = "c:/users/ben_c/Documents/FYP/FYP_NL_Map/muenchen.osm", osmosis = "osmosis")
>
>
>nl_bbox <- center_bbox(11.575278, 48.137222, 3000, 3000)
>
>nl <- get_osm(nl_bbox, src)
>
>plot(nl)

在渗透运行后,我收到警告:

>Error in file(con, "r") : cannot open the connection
>In addition: Warning message:
>In file(con, "r") :
>  cannot open file 
>'C:\Users\ben_c\AppData\Local\Temp\Rtmp8YYPkZ\file1b182fca7802': No such file or directory

运行演示时,我也遇到了同样的错误:

>demo("navigator")

我对 R 比较陌生,所以非常感谢任何帮助。

提前致谢,

4

1 回答 1

1

我有非常相似的错误。我可以通过以管理员身份运行 R(在我的情况下为 RStudio)来解决问题。

我认为问题在于无法创建临时文件。

于 2017-12-20T13:35:59.607 回答