1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
 
/*
 QS highway=bus_stop sowohl auf platform wie auch stop_position 
*/
[out:json][timeout:25];
// gather results
 
  node["public_transport"="stop_position"]
      ["highway"="bus_stop"]({{bbox}})->.bus_stops;
 
 
  nwr(around.bus_stops:20)["highway"="bus_stop"]
                          ["public_transport"="platform"]->.a;
 
 
  nwr["amenity"="bus_station"]({{bbox}})->.station;
 
 
  nwr(around.station:120)["highway"="bus_stop"]
                         ["public_transport"="platform"]->.c;
 
 
 
(
  // query part for: “public_transport=platform”
 
  
      (nwr.a; - nwr.c; );
);
// print results
out body;
>;
out skel qt;
10 km
Leaflet © OpenStreetMap contributors
1
 
no data loaded yet