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
 
// source: https://wiki.openstreetmap.org/wiki/Overpass_API/Overpass_API_by_Example#Counties_without_fire_station
 
//[out:csv(::id, "de:amtlicher_gemeindeschluessel", name,operator)]  // CSV
[timeout:125];
 
area[admin_level=4][name="Baden-Württemberg"][boundary=administrative]->.boundaryarea;
 
// All bounding areas with level 8 in Baden-Württemberg
rel(area.boundaryarea)[admin_level=8];
// map relations to their respective area
map_to_area -> .all_level_8_areas;
 
// Search All amenity=post_box in Baden-Württemberg
( node(area.boundaryarea)[amenity=post_box];
);
 
// in which boundary areas with level 8 do they appear?
is_in;
area._[admin_level=8] -> .level_8_areas_with_post_box; 
 
// All level 8 bounding areas without those 
// areas with post_box
(.all_level_8_areas; - .level_8_areas_with_post_box;); 
 
// Calculate and output relation
rel(pivot);
out meta; >; out skel; // map
//out geom;  // CSV
30 km
Leaflet © OpenStreetMap contributors
1
 
no data loaded yet