Skip to content

overpass turbo

Jörg Roth edited this page Feb 7, 2026 · 2 revisions
[out:json][timeout:100];
// fetch area “Zurich” to search in
{{geocodeArea:switzerland}}->.searchArea;
// gather results
(
  // query part for: “amenity=toilets”
  node["amenity"="place_of_worship"]["religion"="christian"]["building"="chapel"](area.searchArea);
  way["amenity"="place_of_worship"]["religion"="christian"]["building"="chapel"](area.searchArea);
  relation["amenity"="place_of_worship"]["religion"="christian"]["building"="chapel"](area.searchArea);
);
// print results
out body;
>;
out skel qt;

Clone this wiki locally