1 | /* Rules partially derived from Taginfo statistics - see ticket #5017
|
---|
2 | * Taginfo query: select keypairs.key1, keypairs.key2, keypairs.count_all, keys.count_all, cast(keypairs.count_all as real)/keys.count_all as from_fraction_all from keys, keypairs where key1='waterway' and keys.key=keypairs.key2 and (key1<>'highway' or keypairs.count_all>12000) and (key1<>'railway' or keypairs.count_all>3000) and (key1<>'waterway' or keypairs.count_all>800) and key2 not like '%:%' and from_fraction_all>0.97 and 1 union select keypairs.key2, keypairs.key1, keypairs.count_all, keys.count_all, cast(keypairs.count_all as real)/keys.count_all as from_fraction_all from keys, keypairs where key2='waterway' and keys.key=keypairs.key1 and (key2<>'highway' or keypairs.count_all>12000) and (key2<>'railway' or keypairs.count_all>3000) and (key2<>'waterway' or keypairs.count_all>800) and key1 not like '%:%' and from_fraction_all>0.97 and 1 order by keypairs.count_all desc limit 1000;
|
---|
3 | */
|
---|
4 |
|
---|
5 | /* {0.key} without {1.key} (warning level) */
|
---|
6 | way[junction ][!highway][junction!=yes],
|
---|
7 | way[lanes ][!highway][leisure!=track][leisure!=swimming_pool],
|
---|
8 | way[living_street ][!highway],
|
---|
9 | way[maintenance ][!highway],
|
---|
10 | way[median ][!highway],
|
---|
11 | way[motorroad ][!highway],
|
---|
12 | node[ntd_id ][!highway],
|
---|
13 | way[sac_scale ][!highway],
|
---|
14 | way[sidewalk ][!highway],
|
---|
15 | way[step_count ][!highway],
|
---|
16 | way[tracktype ][!highway],
|
---|
17 | way[trail_visibility ][!highway][!abandoned:highway],
|
---|
18 | way[trolley_wire ][!highway],
|
---|
19 | way[zip_left ][!highway],
|
---|
20 | way[zip_right ][!highway],
|
---|
21 | way[detail ][!railway][route!=railway],
|
---|
22 | way[eddy_current_brake ][!railway][route!=railway],
|
---|
23 | way[electrified ][!railway][route!=railway],
|
---|
24 | way[etcs ][!railway][route!=railway],
|
---|
25 | way[gauge ][!railway][route!=railway],
|
---|
26 | way[grade_of_track ][!railway][route!=railway],
|
---|
27 | way[kursbuchstrecke ][!railway][route!=railway],
|
---|
28 | way[lzb ][!railway][route!=railway],
|
---|
29 | way[old_railway_operator ][!railway][route!=railway],
|
---|
30 | way[operating_procedure ][!railway][route!=railway],
|
---|
31 | way[pzb ][!railway][route!=railway],
|
---|
32 | way[structure_gauge ][!railway][route!=railway],
|
---|
33 | way[tilting_technology ][!railway][route!=railway],
|
---|
34 | way[track_class ][!railway][route!=railway],
|
---|
35 | way[tracks ][!railway][route!=railway],
|
---|
36 | way[traffic_mode ][!railway][route!=railway],
|
---|
37 | way[usage ][!railway][route!=railway][man_made!=pipeline],
|
---|
38 | way[workrules ][!railway][route!=railway],
|
---|
39 | way[stream ][!waterway],
|
---|
40 | way[length_unit ][!waterway],
|
---|
41 | way[canal ][!waterway],
|
---|
42 | way[have_riverbank ][!waterway],
|
---|
43 | *[border_type ][!boundary],
|
---|
44 | *[piste:difficulty ][!piste:type],
|
---|
45 | *[source:date ][!source],
|
---|
46 | *[source:name ][!name],
|
---|
47 | *[source:maxspeed:forward ][!maxspeed:forward][!maxspeed],
|
---|
48 | *[source:maxspeed:backward ][!maxspeed:backward][!maxspeed],
|
---|
49 | *[source:building ][!building],
|
---|
50 | *[source:ref ][!ref],
|
---|
51 | *[source:population ][!population],
|
---|
52 | *[source:postal_code ][!postal_code],
|
---|
53 | *[source:ele ][!ele],
|
---|
54 | *[source:ref:INSEE ][!ref:INSEE],
|
---|
55 | *[source:lit ][!lit],
|
---|
56 | *[source:hgv ][!hgv],
|
---|
57 | *[source:highway ][!highway],
|
---|
58 | *[source:maxaxleload ][!maxaxleload],
|
---|
59 | *[source:surface ][!surface],
|
---|
60 | *[source:bridge ][!bridge],
|
---|
61 | *[source:old_name ][!old_name],
|
---|
62 | *[source:bicycle ][!bicycle],
|
---|
63 | *[source:designation ][!designation],
|
---|
64 | *[source:height ][!height],
|
---|
65 | *[source:lanes ][!lanes],
|
---|
66 | *[source:postcode ][!addr:postcode],
|
---|
67 | *[source:housenumber ][!addr:housenumber],
|
---|
68 | *[source:addr:postcode ][!addr:postcode],
|
---|
69 | *[source:addr:housenumber ][!addr:housenumber],
|
---|
70 | *[source:addr ][!/^addr:/],
|
---|
71 | *[source:maxspeed ][!/^maxspeed:?/] {
|
---|
72 | throwWarning: tr("{0} without {1}", "{0.key}", "{1.key}");
|
---|
73 | group: tr("missing tag");
|
---|
74 | assertMatch: "way lanes=42";
|
---|
75 | assertNoMatch: "way lanes=42 highway=unclassified";
|
---|
76 | assertMatch: "node source:addr:postcode=postman";
|
---|
77 | assertMatch: "node source:addr=postman";
|
---|
78 | assertNoMatch: "node source:addr=postman addr:housenumber=42";
|
---|
79 | }
|
---|
80 |
|
---|
81 | /* {0.key} without {1.key} (info level) */
|
---|
82 | way[lanes:forward][!lanes:backward][oneway!=yes][oneway!=-1],
|
---|
83 | way[lanes:backward][!lanes:forward][oneway!=yes][oneway!=-1],
|
---|
84 | *[leaf_type ][!leaf_cycle],
|
---|
85 | *[leaf_cycle][!leaf_type] {
|
---|
86 | throwOther: tr("{0} without {1}", "{0.key}", "{1.key}");
|
---|
87 | group: tr("missing tag");
|
---|
88 | }
|
---|
89 |
|
---|
90 | /* {0.key} without {1.tag} */
|
---|
91 | *[transformer ][!power],
|
---|
92 | way[fence_type ][barrier!=fence],
|
---|
93 | *[recycling_type ][amenity!=recycling],
|
---|
94 | *[information ][tourism!=information],
|
---|
95 | node[board_type ][information!=board],
|
---|
96 | *[shelter_type ][amenity!=shelter],
|
---|
97 | node[lamp_type ][highway!=street_lamp],
|
---|
98 | node[map_type ][information!=map],
|
---|
99 | *[site_type ][historic!=archaeological_site],
|
---|
100 | *[artwork_type ][tourism!=artwork],
|
---|
101 | *[castle_type ][historic!=castle],
|
---|
102 | *[parking ][amenity!~/^(parking|parking_space|parking_entrance|motorcycle_parking)$/],
|
---|
103 | way[cutline ][man_made!=cutline],
|
---|
104 | *[bunker_type ][military!=bunker] {
|
---|
105 | throwWarning: tr("{0} without {1}", "{0.key}", "{1.tag}");
|
---|
106 | group: tr("missing tag");
|
---|
107 | }
|
---|
108 |
|
---|
109 | /* {0.key} without {1.tag} or {2.tag} */
|
---|
110 | *[bridge:movable ][bridge!=movable][man_made!=bridge],
|
---|
111 | *[substation ][power!=substation][pipeline!=substation],
|
---|
112 | *[reservoir_type ][landuse!=reservoir][water!=reservoir] {
|
---|
113 | throwWarning: tr("{0} without {1} or {2}", "{0.key}", "{1.tag}", "{2.tag}");
|
---|
114 | group: tr("missing tag");
|
---|
115 | }
|
---|
116 |
|
---|
117 | /* {0.tag} without {1.key} (warning level) */
|
---|
118 | way[boundary=administrative][!admin_level],
|
---|
119 | relation[boundary=administrative][!admin_level],
|
---|
120 | relation[route=bicycle][!network][type=route],
|
---|
121 | relation[route=hiking][!network][type=route],
|
---|
122 | relation[route=foot][!network][type=route],
|
---|
123 | relation[route=horse][!network][type=route],
|
---|
124 | relation[route=piste][!piste:type][type=route],
|
---|
125 | relation[route=ski][!piste:type][type=route],
|
---|
126 | *[tourism=information][!information],
|
---|
127 | *[leisure=pitch][!sport],
|
---|
128 | *[aeroway=terminal][!building],
|
---|
129 | *[power=generator][!generator:source],
|
---|
130 | *[amenity=social_facility][!social_facility],
|
---|
131 | *[amenity=place_of_worship][!religion] {
|
---|
132 | throwWarning: tr("{0} without {1}", "{0.tag}", "{1.key}");
|
---|
133 | group: tr("missing tag");
|
---|
134 | }
|
---|
135 |
|
---|
136 | /* {0.tag} without {1.key} (info level) */
|
---|
137 | way[highway=track ][!tracktype],
|
---|
138 | way[power=cable ][!location],
|
---|
139 | node[power=transformer ][!voltage],
|
---|
140 | way[power=line ][!voltage],
|
---|
141 | way[power=minor_line ][!voltage],
|
---|
142 | way[power=cable ][!voltage],
|
---|
143 | *[power=generator ][!voltage][generator:output:electricity],
|
---|
144 | *[power=plant ][!voltage][plant:output:electricity],
|
---|
145 | *[power=substation ][!substation],
|
---|
146 | *[power=switch ][!switch],
|
---|
147 | *[power=transformer ][!transformer],
|
---|
148 | *[amenity=parking ][!parking],
|
---|
149 | *[amenity=parking_entrance ][!parking] {
|
---|
150 | throwOther: tr("{0} without {1}", "{0.tag}", "{1.key}");
|
---|
151 | group: tr("missing tag");
|
---|
152 | assertMatch: "way power=line";
|
---|
153 | assertNoMatch: "way power=line voltage=1";
|
---|
154 | assertMatch: "way power=switch";
|
---|
155 | assertMatch: "way power=substation";
|
---|
156 | assertMatch: "way power=substation transformer=foobar";
|
---|
157 | assertNoMatch: "way power=substation substation=foobar";
|
---|
158 | assertMatch: "way power=generator generator:output:electricity=yes";
|
---|
159 | assertNoMatch: "way power=generator";
|
---|
160 | assertNoMatch: "way power=generator generator:output:electricity=yes voltage=1";
|
---|
161 | }
|
---|
162 |
|
---|
163 | /* {0.key} without {1.key} or {2.tag} */
|
---|
164 | way[bridge:structure ][!bridge][man_made!=bridge],
|
---|
165 | *[smoothness ][!highway][amenity!~/^(parking|parking_space|parking_entrance|motorcycle_parking|bicycle_parking)$/],
|
---|
166 | *[segregated ][!highway][railway!=crossing] {
|
---|
167 | throwWarning: tr("{0} without {1} or {2}", "{0.key}", "{1.key}", "{2.tag}");
|
---|
168 | group: tr("missing tag");
|
---|
169 | }
|
---|
170 |
|
---|
171 | /* {0.tag} without {1.tag} (info level) see #11600 #11393 #11850 */
|
---|
172 | way[highway=motorway][!oneway][junction!=roundabout],
|
---|
173 | way[highway=motorway_link][!oneway][junction!=roundabout] {
|
---|
174 | throwOther: tr("{0} without {1}", "{0.tag}", "{1.tag}");
|
---|
175 | group: tr("missing tag");
|
---|
176 | }
|
---|
177 |
|
---|
178 | /* {0.tag} without {1.tag} or {2.tag} */
|
---|
179 | *[amenity=recycling][recycling_type!=container][recycling_type!=centre] {
|
---|
180 | throwWarning: tr("{0} without {1} or {2}", "{0.tag}", "{1.tag}", "{2.tag}");
|
---|
181 | group: tr("missing tag");
|
---|
182 | }
|
---|
183 |
|
---|
184 | /* {0.key} without {1.key}, {2.tag} or {3.tag} */
|
---|
185 | *[intermittent ][!waterway][natural!~/^(water|spring)$/][ford!=yes],
|
---|
186 | *[boat ][!waterway][natural!=water][landuse!=basin] {
|
---|
187 | throwWarning: tr("{0} without {1}, {2} or {3}", "{0.key}", "{1.key}", "{2.tag}", "{3.tag}");
|
---|
188 | group: tr("missing tag");
|
---|
189 | }
|
---|
190 |
|
---|
191 | /* {0.key} without {1.key}, {2.key} or {3.key} */
|
---|
192 | way[oneway][!highway][!railway][!aerialway],
|
---|
193 | *[snowplowing ][!highway][!amenity][!leisure] {
|
---|
194 | throwWarning: tr("{0} without {1}, {2} or {3}", "{0.key}", "{1.key}", "{2.key}", "{3.key}");
|
---|
195 | group: tr("missing tag");
|
---|
196 | }
|
---|
197 |
|
---|
198 | /* {0.key} without {1.key}, {2.key} or {3.tag} */
|
---|
199 | way[incline ][!highway][!railway][aeroway!~/^(runway|taxiway)$/],
|
---|
200 | *[toll ][!highway][!barrier][route!~/^(ferry|road)$/] {
|
---|
201 | throwWarning: tr("{0} without {1}, {2} or {3}", "{0.key}", "{1.key}", "{2.key}", "{3.tag}");
|
---|
202 | group: tr("missing tag");
|
---|
203 | }
|
---|
204 |
|
---|
205 | /* {0.tag} together with {1.key}, see #10837, #14034 */
|
---|
206 | *[amenity=vending_machine][shop],
|
---|
207 | *[noname?][name] {
|
---|
208 | throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.key}");
|
---|
209 | group: tr("suspicious tag combination");
|
---|
210 | }
|
---|
211 |
|
---|
212 | /* {0.tag} together with {1.key}, see #9389, #11977, #13156 */
|
---|
213 | way[oneway=yes][/:backward/][!traffic_sign:backward][bicycle:backward!=use_sidepath],
|
---|
214 | way[oneway=yes][/:forward/][!traffic_sign:forward][bicycle:forward!=use_sidepath],
|
---|
215 | way[oneway=-1 ][/:backward/][!traffic_sign:backward][bicycle:backward!=use_sidepath],
|
---|
216 | way[oneway=-1 ][/:forward/][!traffic_sign:forward][bicycle:forward!=use_sidepath] {
|
---|
217 | throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.key}");
|
---|
218 | group: tr("suspicious tag combination");
|
---|
219 | }
|
---|
220 |
|
---|
221 | /* {0.tag} together with {1.tag} (info level), see #9696 */
|
---|
222 | way[highway=footway][oneway=no] {
|
---|
223 | throwOther: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
|
---|
224 | group: tr("suspicious tag combination");
|
---|
225 | }
|
---|
226 |
|
---|
227 | /* {0.tag} together with {1.tag}, see #10186 */
|
---|
228 | way[highway=footway][bicycle=designated] {
|
---|
229 | throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
|
---|
230 | group: tr("suspicious tag combination");
|
---|
231 | }
|
---|
232 |
|
---|
233 | /* #11127, #13727 */
|
---|
234 | way[waterway][bridge=yes][waterway!=weir] {
|
---|
235 | throwWarning: tr("{0} together with {1}", "{0.key}", "{1.tag}");
|
---|
236 | suggestAlternative: "bridge=aqueduct";
|
---|
237 | group: tr("suspicious tag combination");
|
---|
238 | fixAdd: "bridge=aqueduct";
|
---|
239 | }
|
---|
240 | way[waterway=weir][bridge=yes][highway] {
|
---|
241 | throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
|
---|
242 | suggestAlternative: "waterway=weir + ford=yes";
|
---|
243 | suggestAlternative: "waterway=dam";
|
---|
244 | suggestAlternative: tr("two objects, one with {0} and one with {1} + {2} + {3}", "{0.tag}", "{2.key}", "{1.tag}", "layer");
|
---|
245 | group: tr("suspicious tag combination");
|
---|
246 | }
|
---|
247 |
|
---|
248 | /* only {0.key}, see #11104 #12422 #14950 */
|
---|
249 | *[access][eval(number_of_tags()) = 1],
|
---|
250 | *[area][eval(number_of_tags()) = 1],
|
---|
251 | *[name][eval(number_of_tags()) = 1],
|
---|
252 | *[ref][eval(number_of_tags()) = 1],
|
---|
253 | *[lit][eval(number_of_tags()) = 1] {
|
---|
254 | throwWarning: tr("incomplete object: only {0}", "{0.key}");
|
---|
255 | group: tr("missing tag");
|
---|
256 | }
|
---|
257 | /* only {0.key} and {1.key} */
|
---|
258 | *[name][area][eval(number_of_tags()) = 2],
|
---|
259 | *[name][ref][eval(number_of_tags()) = 2] {
|
---|
260 | throwWarning: tr("incomplete object: only {0} and {1}", "{0.key}", "{1.key}");
|
---|
261 | group: tr("missing tag");
|
---|
262 | }
|
---|
263 | /* only {0.tag}, #15269 */
|
---|
264 | *[tourism=attraction][eval(number_of_tags()) = 1] {
|
---|
265 | throwWarning: tr("incomplete object: only {0}", "{0.tag}");
|
---|
266 | group: tr("missing tag");
|
---|
267 | }
|
---|
268 | /* only {0.key} and {1.tag} */
|
---|
269 | *[name][tourism=attraction][eval(number_of_tags()) = 2] {
|
---|
270 | throwWarning: tr("incomplete object: only {0} and {1}", "{0.key}", "{1.tag}");
|
---|
271 | group: tr("missing tag");
|
---|
272 | }
|
---|
273 |
|
---|
274 | /* #9811, #11491, #12865, #14310 */
|
---|
275 | *[place][place!=farm][/^(addr:housenumber|addr:housename|addr:flats|addr:conscriptionnumber|addr:street|addr:place|addr:city|addr:country|addr:full|addr:hamlet|addr:suburb|addr:subdistrict|addr:district|addr:province|addr:state|addr:interpolation|addr:interpolation|addr:inclusion)$/],
|
---|
276 | /* addr:postcode is used together with place in some countries */
|
---|
277 | *[boundary][/^addr:/],
|
---|
278 | *[highway][/^addr:/][highway!=services][highway!=rest_area][!"addr:postcode"] {
|
---|
279 | throwWarning: tr("{0} together with addr:*", "{0.key}");
|
---|
280 | group: tr("suspicious tag combination");
|
---|
281 | assertMatch: "node place=foo addr:housenumber=5";
|
---|
282 | assertMatch: "node place=foo addr:housenumber=5 addr:postcode=12345";
|
---|
283 | assertNoMatch: "node place=foo addr:postcode=12345";
|
---|
284 | }
|
---|
285 | *[!highway][postal_code]["addr:postcode"][postal_code=*"addr:postcode"] {
|
---|
286 | throwWarning: tr("{0} together with {1}", "{1.key}", "{2.key}");
|
---|
287 | group: tr("suspicious tag combination");
|
---|
288 | }
|
---|
289 | *[!highway][postal_code]["addr:postcode"][postal_code!=*"addr:postcode"] {
|
---|
290 | throwWarning: tr("{0} together with {1} and conflicting values", "{1.key}", "{2.key}");
|
---|
291 | group: tr("suspicious tag combination");
|
---|
292 | }
|
---|
293 | way[highway][postal_code]["addr:postcode"][postal_code=*"addr:postcode"] {
|
---|
294 | throwWarning: tr("{0} together with {1}", "{1.key}", "{2.key}");
|
---|
295 | group: tr("suspicious tag combination");
|
---|
296 | fixRemove: "addr:postcode";
|
---|
297 | }
|
---|
298 | way[highway][postal_code]["addr:postcode"][postal_code!=*"addr:postcode"] {
|
---|
299 | throwWarning: tr("{0} together with {1} and conflicting values", "{1.key}", "{2.key}");
|
---|
300 | group: tr("suspicious tag combination");
|
---|
301 | }
|
---|
302 | way[highway][highway!=services][highway!=rest_area][!postal_code]["addr:postcode"] {
|
---|
303 | throwWarning: tr("{0} together with {1}", "{0.key}", "{4.key}");
|
---|
304 | suggestAlternative: "postal_code";
|
---|
305 | group: tr("suspicious tag combination");
|
---|
306 | fixChangeKey: "addr:postcode=>postal_code";
|
---|
307 | }
|
---|
308 |
|
---|
309 | /* #9195 */
|
---|
310 | way[highway=footway][cycleway=lane] {
|
---|
311 | throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
|
---|
312 | suggestAlternative: "highway=path + foot=designated + bicycle=designated + segregated=yes";
|
---|
313 | group: tr("suspicious tag combination");
|
---|
314 | }
|
---|
315 |
|
---|
316 | /* {0} on suspicious object */
|
---|
317 | *[tunnel ][!highway][!railway][!waterway][!piste:type][public_transport!=platform][route!=ferry][man_made!=pipeline][man_made!=goods_conveyor],
|
---|
318 | *[bridge ][!highway][!railway][!waterway][!piste:type][public_transport!=platform][route!=ferry][man_made!=pipeline][man_made!=goods_conveyor][man_made!=bridge][building!=bridge],
|
---|
319 | *[psv ][!highway][!railway][!waterway][amenity !~ /^parking.*/],
|
---|
320 | *[width ][!highway][!railway][!waterway][!aeroway][!cycleway][!footway][!barrier][!man_made][!entrance][natural!=stone],
|
---|
321 | *[maxspeed][!highway][!railway][traffic_sign !~ /^((.*;)?maxspeed(;.*)?|[A-Z][A-Z]:.+)$/][type != enforcement][waterway !~ /^(river|canal|lock)$/][!traffic_calming][aerialway!=zip_line] {
|
---|
322 | throwWarning: tr("{0} on suspicious object", "{0.key}");
|
---|
323 | group: tr("suspicious tag combination");
|
---|
324 | }
|
---|
325 |
|
---|
326 | node[amenity][amenity =~ /^(restaurant|cafe|fast_food)$/][!name][noname!=yes] {
|
---|
327 | throwOther: tr("{0} without {1}", "{0.tag}", "{2.key}");
|
---|
328 | group: tr("missing tag");
|
---|
329 | assertMatch: "node amenity=restaurant";
|
---|
330 | assertNoMatch: "node amenity=restaurant noname=yes";
|
---|
331 | assertNoMatch: "node amenity=restaurant name=Foobar";
|
---|
332 | }
|
---|
333 |
|
---|
334 | way[highway][barrier],
|
---|
335 | *[highway][waterway][waterway!=dam][waterway!=weir],
|
---|
336 | way[highway][natural][natural!=ridge],
|
---|
337 | *[landuse][building] {
|
---|
338 | throwWarning: tr("{0} together with {1}", "{0.key}", "{1.key}");
|
---|
339 | group: tr("suspicious tag combination");
|
---|
340 | assertNoMatch: "node highway=street_lamp natural=birds_nest note=josm#10193";
|
---|
341 | }
|
---|
342 |
|
---|
343 | /* #6932 */
|
---|
344 | *[natural=water][leisure=swimming_pool] {
|
---|
345 | throwWarning: tr("natural water used for swimming pool");
|
---|
346 | group: tr("suspicious tag combination");
|
---|
347 | fixRemove: "natural";
|
---|
348 | }
|
---|
349 |
|
---|
350 | /* #9593, #11183, #12418, #12761 */
|
---|
351 | *[sport][sport!=skiing][!building][!club][tourism != hotel][highway != raceway][leisure !~ /^(sports_centre|stadium|track|pitch|golf_course|water_park|swimming_pool|recreation_ground|ice_rink|horse_riding|fitness_centre|fitness_station|bowling_alley)$/][natural !~ /^(beach|bare_rock|cliff|peak|water)$/][amenity !~ /^(pub|restaurant|swimming_pool)$/][landuse !~ /^(recreation_ground|piste|farm|farmland)$/][barrier !~ /^(wall|retaining_wall)$/][!"piste:type"][shop!=sports] {
|
---|
352 | throwWarning: tr("sport without physical feature");
|
---|
353 | group: tr("missing tag");
|
---|
354 | assertMatch: "node sport=tennis";
|
---|
355 | assertNoMatch: "node sport=tennis leisure=pitch";
|
---|
356 | assertNoMatch: "node sport=beachvolleyball natural=beach";
|
---|
357 | assertNoMatch: "node sport=skiing"; /* skiing has deprecated warning */
|
---|
358 | assertNoMatch: "node sport=swimming tourism=hotel";
|
---|
359 | assertNoMatch: "node sport=10pin amenity=restaurant";
|
---|
360 | }
|
---|
361 |
|
---|
362 | /* #10140 */
|
---|
363 | *[building:levels][!building][!building:part] {
|
---|
364 | throwWarning: tr("{0} without {1} or {2}", "{0.key}", "{1.key}", "{2.key}");
|
---|
365 | group: tr("missing tag");
|
---|
366 | }
|
---|
367 |
|
---|
368 | /* any other *_name tag (with some exceptions) but not a name , see #10837 #11297 #11539 */
|
---|
369 | *[/_name$/][!name][!old_name][!loc_name][!uic_name][!artist_name][!"osak:municipality_name"][!"osak:street_name"][noname!=yes] {
|
---|
370 | throwWarning: tr("alternative name without {0}", "{1.key}");
|
---|
371 | group: tr("missing tag");
|
---|
372 | }
|
---|
373 |
|
---|
374 | /* #10837 */
|
---|
375 | way[destination][!oneway?][junction!=roundabout][highway] {
|
---|
376 | throwWarning: tr("incomplete usage of {0} on a way without {1}", "{0.key}", "{1.key}");
|
---|
377 | suggestAlternative: "destination:forward";
|
---|
378 | suggestAlternative: "destination:backward";
|
---|
379 | }
|
---|
380 |
|
---|
381 | /* #11389 */
|
---|
382 | way["maxspeed:forward"=*"maxspeed:backward"][!maxspeed] {
|
---|
383 | throwWarning: tr("Same value of {0} and {1}", "{0.key}", "{1.key}");
|
---|
384 | suggestAlternative: "maxspeed";
|
---|
385 | group: tr("suspicious tag combination");
|
---|
386 | fixChangeKey: "maxspeed:forward=>maxspeed";
|
---|
387 | fixRemove: "maxspeed:backward";
|
---|
388 | }
|
---|
389 | way["maxspeed:forward"=*maxspeed]["maxspeed:backward"=*maxspeed][maxspeed] {
|
---|
390 | throwWarning: tr("Same value of {0}, {1} and {2}", "{0.key}", "{1.key}", "{2.key}");
|
---|
391 | set AllSameMaxspeed;
|
---|
392 | suggestAlternative: "maxspeed";
|
---|
393 | group: tr("suspicious tag combination");
|
---|
394 | fixRemove: "maxspeed:forward";
|
---|
395 | fixRemove: "maxspeed:backward";
|
---|
396 | }
|
---|
397 | way["maxspeed:forward"]["maxspeed:backward"][maxspeed]!.AllSameMaxspeed {
|
---|
398 | throwWarning: tr("{0} and {1} together with {2} and conflicting values", "{0.key}", "{1.key}", "{2.key}");
|
---|
399 | group: tr("suspicious tag combination");
|
---|
400 | }
|
---|
401 | way["maxspeed:forward"][maxspeed][!"maxspeed:backward"],
|
---|
402 | way["maxspeed:backward"][maxspeed][!"maxspeed:forward"] {
|
---|
403 | throwWarning: tr("{0} together with {1}", "{0.key}", "{1.key}");
|
---|
404 | group: tr("suspicious tag combination");
|
---|
405 | }
|
---|
406 |
|
---|
407 | /* #11837 */
|
---|
408 | way[layer][layer<0][bridge][bridge!=no][location!=underground][indoor!=yes][!tunnel],
|
---|
409 | way[layer][layer>0][tunnel][tunnel!=no][location!=overground][indoor!=yes][!bridge] {
|
---|
410 | throwWarning: tr("{0} together with {1}", "{2.tag}", "{0.tag}");
|
---|
411 | group: tr("suspicious tag combination");
|
---|
412 | }
|
---|
413 |
|
---|
414 | /* #12942 */
|
---|
415 | relation[oneway][type!=route] {
|
---|
416 | throwWarning: tr("{0} on a relation without {1}", "{0.key}", "{1.tag}");
|
---|
417 | }
|
---|
418 |
|
---|
419 | /* #9182 */
|
---|
420 | way[waterway][layer][layer=~/^(-1|-2|-3|-4|-5)$/][!tunnel][culvert!=yes][covered!=yes][pipeline!=yes][location!=underground][eval(waylength()) > 400] {
|
---|
421 | throwWarning: tr("Long waterway with {0} but without a tag which defines it as tunnel or underground. Remove {1} or add a tunnel tag if applicable. Also check crossing bridges and their {1} tags.", "{1.tag}", "{1.key}");
|
---|
422 | group: tr("suspicious tag combination");
|
---|
423 | }
|
---|
424 | way[waterway][layer][layer=~/^(-1|-2|-3|-4|-5)$/][!tunnel][culvert!=yes][covered!=yes][pipeline!=yes][location!=underground][eval(waylength()) <= 400] {
|
---|
425 | throwOther: tr("Short waterway with {0} but without a tag which defines it as tunnel or underground. Remove {1} or add a tunnel tag if applicable. Also check crossing bridges and their {1} tags.", "{1.tag}", "{1.key}");
|
---|
426 | group: tr("suspicious tag combination");
|
---|
427 | }
|
---|
428 |
|
---|
429 | /* #13144 */
|
---|
430 | *[unisex=yes][female=yes][male!=yes],
|
---|
431 | *[unisex=yes][male=yes][female!=yes] {
|
---|
432 | throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
|
---|
433 | group: tr("suspicious tag combination");
|
---|
434 | }
|
---|
435 | *[unisex=yes][female=yes][male=yes] {
|
---|
436 | throwWarning: tr("{0} together with {1} and {2}. Remove {1} and {2}", "{0.tag}", "{1.tag}", "{2.tag}");
|
---|
437 | group: tr("suspicious tag combination");
|
---|
438 | fixRemove: "female";
|
---|
439 | fixRemove: "male";
|
---|
440 | }
|
---|
441 | *[female=yes][male=yes][!unisex][shop=hairdresser] { /* for toilets male=yes female=yes unisex=no combination is valid */
|
---|
442 | throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
|
---|
443 | suggestAlternative: "unisex=yes";
|
---|
444 | group: tr("suspicious tag combination");
|
---|
445 | fixRemove: "female";
|
---|
446 | fixRemove: "male";
|
---|
447 | fixAdd: "unisex=yes";
|
---|
448 | }
|
---|
449 |
|
---|
450 | /* #13138, 14468 */
|
---|
451 | area:closed[water][natural!~/water|bay|strait/][water!=intermittent] { /* water=intermittent is deprecated and has an own warning */
|
---|
452 | throwWarning: tr("{0} without {1}", "{1.key}", "{2.tag}");
|
---|
453 | group: tr("missing tag");
|
---|
454 | }
|
---|
455 | way!:closed[water][natural!~/water|bay|strait/][water!=intermittent] {
|
---|
456 | throwWarning: tr("{0} without {1}", "{1.key}", "{2.tag}");
|
---|
457 | group: tr("missing tag");
|
---|
458 | }
|
---|
459 |
|
---|
460 | /* see #8519, #11529, limited to motorways and trunks to avoid false positives for streets with lanes for non motorized traffic */
|
---|
461 | way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][turn:lanes ][tag(lanes)!=eval(count(split("|", tag("turn:lanes"))))],
|
---|
462 | way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][change:lanes ][tag(lanes)!=eval(count(split("|", tag("change:lanes"))))],
|
---|
463 | way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][maxspeed:lanes ][tag(lanes)!=eval(count(split("|", tag("maxspeed:lanes"))))],
|
---|
464 | way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][minspeed:lanes ][tag(lanes)!=eval(count(split("|", tag("minspeed:lanes"))))],
|
---|
465 | way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][destination:lanes ][tag(lanes)!=eval(count(split("|", tag("destination:lanes"))))],
|
---|
466 | way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][destination:ref:lanes ][tag(lanes)!=eval(count(split("|", tag("destination:ref:lanes"))))],
|
---|
467 | way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][destination:symbol:lanes][tag(lanes)!=eval(count(split("|", tag("destination:symbol:lanes"))))] {
|
---|
468 | throwWarning: tr("Different number of lanes in the keys {0} and {1}", "{1.key}", "{2.key}");
|
---|
469 | group: tr("suspicious tag combination");
|
---|
470 | }
|
---|
471 |
|
---|
472 | /* #13680 */
|
---|
473 | area[golf=bunker][natural=beach] {
|
---|
474 | throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
|
---|
475 | suggestAlternative: "natural=sand";
|
---|
476 | suggestAlternative: "surface=sand";
|
---|
477 | group: tr("suspicious tag combination");
|
---|
478 | }
|
---|
479 |
|
---|
480 | /* #13705 */
|
---|
481 | relation[type=multipolygon][building] > way {
|
---|
482 | set part_of_building_MP;
|
---|
483 | }
|
---|
484 | way["addr:housenumber"][!building][!"building:part"][!"demolished:building"][!note][!amenity][!leisure][!landuse][!man_made][!tourism][!barrier]!.part_of_building_MP {
|
---|
485 | /* don't exclude shop because a lot of real missing bulding tag cases have a shop tag. */
|
---|
486 | throwOther: tr("possibly missing {0} tag", "{1.key}");
|
---|
487 | group: tr("missing tag");
|
---|
488 | }
|
---|
489 |
|
---|
490 | /* #14125, #14323 */
|
---|
491 | way[highway][lanes][!lanes:forward][!lanes:backward][oneway!=yes][oneway!=-1][junction!=roundabout][lanes>2][get(split(".", tag(lanes)/2), 1)=5] {
|
---|
492 | throwWarning: tr("street with odd number of {0}, but without {1} and {2} or {3}", "{1.key}", "{2.key}", "{3.key}", "{4.key}");
|
---|
493 | group: tr("missing tag");
|
---|
494 | assertNoMatch: "way highway=primary lanes=2";
|
---|
495 | assertNoMatch: "way highway=primary lanes=3 lanes:backward=2";
|
---|
496 | assertNoMatch: "way highway=primary lanes=3 oneway=-1";
|
---|
497 | assertNoMatch: "way highway=primary lanes=4";
|
---|
498 | assertMatch: "way highway=primary lanes=3";
|
---|
499 | }
|
---|