我试图找出在给定 GPS 位置周围找到某些类型的所有节点的最佳解决方案。
假设我想获得给定点 X.xx,Y.yy 周围的所有咖啡馆、酒吧、餐馆和公园。
[out:json];(node[amenity][leisure](around:500,52.2740711,10.5222147););out;
这不会返回任何内容,因为我认为它会搜索既舒适又休闲的节点,这是不可能的。
[out:json];(node[amenity or leisure](around:500,52.2740711,10.5222147););out;
[out:json];(node[amenity,leisure](around:500,52.2740711,10.5222147););out;
[out:json];(node[amenity;leisure](around:500,52.2740711,10.5222147););out;
[out:json];(node[amenity|leisure](around:500,52.2740711,10.5222147););out;
[out:json];(node[amenity]|[leisure](around:500,52.2740711,10.5222147););out;
[out:json];(node[amenity],[leisure](around:500,52.2740711,10.5222147););out;
[out:json];(node[amenity];[leisure](around:500,52.2740711,10.5222147););out;
这些解决方案导致错误(400:错误请求)
我发现的唯一可行的解决方案是以下导致非常长的查询
[out:json];(node[amenity=cafe](around:500,52.2740711,10.5222147);node[leisure=park](around:500,52.2740711,10.5222147);node[amenity=pub](around:500,52.2740711,10.5222147);node[amenity=restaurant](around:500,52.2740711,10.5222147););out;
如果没有多个“围绕”语句,难道没有更简单的解决方案吗?
编辑:发现这个有点短。但仍然有多个“围绕”语句。
[out:json];(node["leisure"~"park"](around:400,52.2784715,10.5249662);node["amenity"~"cafe|pub|restaurant"](around:400,52.2784715,10.5249662););out;