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
 
/*
This has been generated by the overpass-turbo wizard.
The original search was:
“building=station AND emergency=defibrillator in Ireland”
*/
[out:json][timeout:25];
// fetch area “Ireland” to search in
{{geocodeArea:Ireland}}->.searchArea;
// gather results 
(
way["building"="train_station"](area.searchArea);
relation["building"="train_station"](area.searchArea);  
  );
 
// find defibs around train stations
node(around:20)["emergency"="defibrillator"](area.searchArea);
 
// print results
out geom;
 
{{style:
way,relation
{ color:blue;fill-color:blue; }
node[emergency=defibrillator]
{color:purple;fill-color:white;symbol-size:3; }
 
}}
30 km
Leaflet © OpenStreetMap contributors
1