0

R 中的osmar包有一个名为demo("navigator"). 提供它是为了说明包的能力和功能。当我十个脚本时,我遇到了以下行并出现错误:

R> muc <- get_osm(muc_bbox, src)
sh: osmosis: command not found
Error in file(con, "r") : cannot open the connection
In addition: Warning message:
In file(con, "r") :
  cannot open file '/var/folders/81/4k487q0969q1d8rfd1pyhyr40000gs/T//RtmpdgZSOy/file13a473cb904c': No such file or directory

该命令旨在将osmosis数据对象转换为osmar对象。我已经为 MacOSX 正确安装了 osmosis,更新了 bash shell 中的路径定义以指向 osmosis 可执行文件。

我不确定错误消息的含义以及如何最好地响应。任何帮助感谢布拉德

4

2 回答 2

1

你重启了R吗?看起来渗透不在您的路径中,尽管您确实提到您设置了它。确保您可以在终端中运行渗透命令之一:

osmosis  --read-xml SloveniaGarmin.osm --tee 4 --bounding-box left=15 top=46 --write-xml SloveniaGarminSE.osm --bounding-box left=15 bottom=46 --write-xml SloveniaGarminNE.osm --bounding-box right=15 top=46 --write-xml SloveniaGarminSW.osm --bounding-box right=15 bottom=46 --write-xml SloveniaGarminNW.osm 

该示例无关紧要,只要它没有说osmosis找不到文件即可。

另外,请确保您有gzip自己的路径。我几乎可以肯定它是默认的,但demo包依赖它来运行。只需打开一个终端并输入gzip以确保它在那里。

最后,如果您需要调试它,请运行以下命令:

library(osmar)
download.file("http://osmar.r-forge.r-project.org/muenchen.osm.gz","muenchen.osm.gz")
system("gzip -d muenchen.osm.gz")
# At this point, check the directory listed by getwd(). It should contain muenchen.osm.
src <- osmsource_osmosis(file = "muenchen.osm",osmosis = "osmosis")
muc_bbox <- center_bbox(11.575278, 48.137222, 3000, 3000)
debug(osmar:::get_osm_data.osmosis)
get_osm(muc_bbox, src)
# Press Enter till you get to
# request <- osm_request(source, what, destination)
# Then type request to get the command it is sending.

输入一次 Enter 后,request您将获得它发送到您的操作系统的字符串。它应该是这样的:

osmosis --read-xml enableDateParsing=no file=muenchen.osm --bounding-box top=48.1507120588903 left=11.5551240885889 bottom=48.1237319411097 right=11.5954319114111 --write-xml file=<your path>

尝试将其粘贴到您的终端中。它应该适用于任何目录。

哦,然后键入undebug(osmar:::get_osm_data.osmosis)停止调试。键入Q以退出调试器。

于 2012-07-24T01:19:39.090 回答
1

嘿,我刚刚让这个东西工作了。问题不在于渗透的系统路径变量。它是通过脚本进行的系统调用,它使用“gzip”应用程序解压缩之前下载的 .gz 文件。所以当你的机器上没有安装 gzip 或者 gzip 不在系统路径变量中时会出现错误。因此安装 gzip 并将其添加到路径变量将减轻此错误。或者,您可以手动将文件解压缩到相同的路径并再次运行脚本。

于 2012-12-24T15:51:26.097 回答