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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
 
// define HSL area filter with participant municipalities (OSM municipality)
(
  area[name="Helsinki"];
  area[name="Espoo"];
  area[name="Vantaa"];
  area[name="Kirkkonummi"];
  area[name="Kerava"];
  area[name="Kauniainen"];
  area[name="Sipoo"];
  area[name="Tuusula"];
  area[name="Siuntio"];
)->.hsl;
 
// different public transportation stop types in HSL area
 
(
  // tram stops
  node["railway"="tram_stop"]["ref"](area.hsl);
  way["railway"="tram_stop"]["ref"](area.hsl);
  relation["railway"="tram_stop"]["ref"](area.hsl);
 
  // bus stops
  node["highway"="bus_stop"]["ref"](area.hsl);
  way["highway"="bus_stop"]["ref"](area.hsl);
  relation["highway"="bus_stop"]["ref"](area.hsl);
 
  // train and subway stations
  node["railway"="station"]["public_transport"="station"]["ref"](area.hsl);
  way["railway"="station"]["public_transport"="station"]["ref"](area.hsl);
  relation["railway"="station"]["public_transport"="station"]["ref"](area.hsl);
 
  // include stop area relations
  relation["public_transport"="stop_area"]["ref"](area.hsl);
 
  // include stop position
  node["public_transport"="stop_position"]["ref"](area.hsl);
)->.hsl_stops;
 
// nodes part of subway relation in HSL area.
(
  rel(area.hsl)[type=route][route=subway];
)->.metro;
 
// subway station platforms and stop positions (each subway station has two platforms with unique ref)
(
  way(r.metro)[ref](area.hsl);
  node(r.metro)[ref](area.hsl);
)->.metro_stops;
 
// output union
(
  .hsl_stops;
  .metro_stops;
);
out body;
>;
out meta;
 
100 m
Leaflet © OpenStreetMap contributors
1
 
no data loaded yet