你重启了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
以退出调试器。