我想获取包含某些标签的所有节点、方式和关系,并且输出文件还必须包含相关的方式和节点。
因此,例如,我想搜索所有与便利设施的关系,不仅获得关系本身,还获得相关的方式和节点。对于具有相同标签及其相关节点以及最后所有节点的所有方式都相同。
目前我找到了一个可行的解决方案,但是这个脚本需要很长时间来处理,因为它有效地读取了世界地图文件 3 次,然后合并了数据。我希望有人能给我指出一个更“直截了当”的解决方案来提高速度。
顺便提一句。我已将 java 选项设置为“-Xmx14G -server”,但根据任务管理器,该脚本仅使用 8G 内存(机器有 32G RAM)(Windows - 对不起,伙计们;-))
所以这是脚本:
set readfile=--read-pbf-fast file=planet-latest.osm.pbf workers=4
set logprogress=--log-progress interval=10
set acceptlorestags=^
place=country,state,region,province,district,county,municipality,island,islet ^
natural=sea,water,wetland,beach,coastline,marsh ^
admin_level=1,2,3,4 ^
water=* ^
wetland=*
call bin\osmosis.bat ^
%readfile% ^
--tf accept-relations ^
%acceptlorestags% ^
--used-way ^
--used-node ^
%logprogress% label="lores_rel" ^
^
%readfile% ^
--tf reject-relations ^
--tf accept-ways ^
%acceptlorestags% ^
--used-node ^
%logprogress% label="lores_way" ^
^
%readfile% ^
--tf reject-relations ^
--tf reject-ways ^
--tf accept-nodes ^
%acceptlorestags% ^
%logprogress% label="lores_node" ^
^
--merge ^
--merge ^
%logprogress% label="map_lores" ^
--mapfile-writer file=map_lores.map type=ram