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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
 
/*
   Erstelle Statistik über die Anzahl der in Bochum 
   im OSM-Datenbestand erfassten Geschäfte.
   
   !!! LEIDER FEHLT MIR NOCH DER TRICK MIT DEM IN DER 
   !!! ERSTEN SPALTE DIE AUSWERTEKRITERIEN GENANNT WERDEN
   !!!
   !!! Kriterien in Variable speichern, diese dann ausgeben
   !!! Aber wie?
   
   Beschreibung der Spalten:
     Beschreibung  (hier sollte stehen:
                    Geschäfte,
                    Geschäfte mit Name,
                    Geschäfte mit Name und Adresse,
                    etc.
     @count            zählt alle Geschäfte
     @count:nodes      zählt als Knoten erfasste Geschäfte
     @count:ways       zählt als Weg erfasste Geschäfte
     @count:relations  zählt als Relation erfasste Geschäfte
     
     
  Beschreibung der Zeilen:
     1. Zeile: Titelzeile
     2. Zeile: Alle Geschäfte
     3. Zeile: Geschäfte mit Name
     4. Zeile: Geschäfte mit Name, Adresse
     5. Zeile: Geschäfte mit Name, Adresse, Öffnungszeiten
     6. Zeile: Geschäfte mit Name, Adresse, Öffnungszeiten, Webseite trad.
     7. Zeile: Geschäfte mit Name, Adresse, Öffnungszeiten, Webseite alt.
*/
 
[out:csv(beschreibung,
         total, 
         cnt_nodes, 
         cnt_ways, 
         cnt_rels
         ;
         yes;
         "|"
        )
]
 
[timeout:250];
 
{{geocodeArea:Bochum}}->.searchArea;
 
 
// Zähle alle Geschäfte
(
  node["shop"]
      (area.searchArea);
  
  
  way["shop"]
     (area.searchArea);
  
  relation["shop"]
          (area.searchArea);
);
make stat beschreibung="Alle Geschäfte",
  total=count(nodes)+count(ways)+count(relations),
  cnt_nodes=count(nodes),cnt_ways=count(ways),cnt_rels=count(relations);
out;
 
 
// Zähle alle Geschäfte mit Name
(
  
  node["shop"]
      ["name"]
      (area.searchArea);
  
  
  way["shop"]
     ["name"]
     (area.searchArea);
  
  relation["shop"]
          ["name"]
          (area.searchArea);
);
make stat beschreibung="Geschäfte mit Namen",
  total=count(nodes)+count(ways)+count(relations),
  cnt_nodes=count(nodes),cnt_ways=count(ways),cnt_rels=count(relations);
out;
 
// Zähle alle Geschäfte mit Name und Adresse
(
  
  node["shop"]
      ["name"]
      ["addr:street"]
      ["addr:housenumber"]
      (area.searchArea);
  
  
  way["shop"]
     ["name"]
     ["addr:street"]
     ["addr:housenumber"]
     (area.searchArea);
  
  relation["shop"]
          ["name"]
          ["addr:street"]
          ["addr:housenumber"]
          (area.searchArea);
);
make stat beschreibung="Geschäfte mit Adresse",
  total=count(nodes)+count(ways)+count(relations),
  cnt_nodes=count(nodes),cnt_ways=count(ways),cnt_rels=count(relations);
out;
 
 
// Zähle alle Geschäfte mit Name, Adresse, Öffungszeiten
(
  
  node["shop"]
      ["name"]
      ["addr:street"]
      ["addr:housenumber"]
      ["opening_hours"]
      (area.searchArea);
  
  
  way["shop"]
     ["name"]
     ["addr:street"]
     ["addr:housenumber"]
     ["opening_hours"]
     (area.searchArea);
  
  relation["shop"]
          ["name"]
          ["addr:street"]
          ["addr:housenumber"]
          ["opening_hours"]
          (area.searchArea);
);
make stat beschreibung="Geschäfte mit Öff'zeiten",
  total=count(nodes)+count(ways)+count(relations),
  cnt_nodes=count(nodes),cnt_ways=count(ways),cnt_rels=count(relations);
out;
 
 
// Zähle alle Geschäfte mit Name, Adresse, Öffungszeiten, Webseite
// (website) ist traditionelles Tagging 
(
  
  node["shop"]
      ["name"]
      ["addr:street"]
      ["addr:housenumber"]
      ["opening_hours"]
      ["website"]
      (area.searchArea);
  
  
  way["shop"]
     ["name"]
     ["addr:street"]
     ["addr:housenumber"]
     ["opening_hours"]
     ["website"]
     (area.searchArea);
  
  relation["shop"]
          ["name"]
          ["addr:street"]
          ["addr:housenumber"]
          ["opening_hours"]
          ["website"] 
          (area.searchArea);
);
make stat beschreibung="Geschäfte mit allem",
  total=count(nodes)+count(ways)+count(relations),
  cnt_nodes=count(nodes),cnt_ways=count(ways),cnt_rels=count(relations);
out;
 
// Zähle alle Geschäfte mit Name, Adresse, Öffungszeiten, Webseite
// (contact:website) ist alternatives Tagging 
(
  
  node["shop"]
      ["name"]
      ["addr:street"]
      ["addr:housenumber"]
      ["opening_hours"]
      ["contact:website"]
      (area.searchArea);
  
  
  way["shop"]
     ["name"]
     ["addr:street"]
     ["addr:housenumber"]
     ["opening_hours"]
     ["contact:website"]
     (area.searchArea);
  
  relation["shop"]
          ["name"]
          ["addr:street"]
          ["addr:housenumber"]
          ["opening_hours"]
          ["contact;website"] 
          (area.searchArea);
);
make stat beschreibung="Geschäfte mit Contact-Website",
  total=count(nodes)+count(ways)+count(relations),
  cnt_nodes=count(nodes),cnt_ways=count(ways),cnt_rels=count(relations);
out;
 
1 km
Leaflet © OpenStreetMap contributors
1