天桥Turbo中的并置属性

时间:2018-11-28 07:21:27

标签: openstreetmap

我想在overpass Turbo中建立一个查询,以便找到所有具有特定特征的大教堂,例如

便利设施=礼拜场所,宗教=天主教,面额=圣。玛丽等。

我如何将所有这些属性组合到立交桥提供的这个简单查询中

node
  [amenity=drinking_water]
  ({{bbox}});
out;

此外,我还找到了osm map feature本使用指南。

1 个答案:

答案 0 :(得分:0)

只需使用立交桥涡轮向导,输入“ amenity = place_of_worship和religion = catholic”,它将生成以下查询:

/*
This has been generated by the overpass-turbo wizard.
The original search was:
“amenity=place_of_worship and religion=catholic”
*/
[out:json][timeout:25];
// gather results
(
  // query part for: “amenity=place_of_worship and religion=catholic”
  node["amenity"="place_of_worship"]["religion"="catholic"]({{bbox}});
  way["amenity"="place_of_worship"]["religion"="catholic"]({{bbox}});
  relation["amenity"="place_of_worship"]["religion"="catholic"]({{bbox}});
);
// print results
out body;
>;
out skel qt;

另请参阅Overpass API Language Guide