source: josm/trunk/resources/data/validator/combinations.mapcss@ 16232

Last change on this file since 16232 was 16093, checked in by Don-vip, 6 years ago

see #12914, see #18552, see #18640 - move out French-specific rules to https://josm.openstreetmap.de/wiki/Rules/FranceSpecificRules

  • Property svn:eol-style set to native
File size: 32.2 KB
RevLine 
[6548]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
[15268]5way[surface=~/^(unpaved|compacted|gravel|fine_gravel|pebblestone|ground|earth|dirt|grass|sand|mud|ice|salt|snow|woodchips)$/] { /* without grass_paver as it is controversial */
6 set unpaved_surface;
7}
8
[7229]9/* {0.key} without {1.key} (warning level) */
[7906]10way[junction ][!highway][junction!=yes],
[11407]11way[lanes ][!highway][leisure!=track][leisure!=swimming_pool],
[11305]12way[living_street ][!highway],
13way[maintenance ][!highway],
14way[median ][!highway],
15way[motorroad ][!highway],
16node[ntd_id ][!highway],
17way[sac_scale ][!highway],
18way[sidewalk ][!highway],
[13566]19way[step_count ][!highway][man_made!=tower],
[11305]20way[tracktype ][!highway],
[13092]21way[trail_visibility ][!highway], /* #15029 */
[11305]22way[trolley_wire ][!highway],
23way[zip_left ][!highway],
24way[zip_right ][!highway],
25way[detail ][!railway][route!=railway],
26way[eddy_current_brake ][!railway][route!=railway],
[13452]27way[electrified ][!railway][route!=railway][!highway], /* #16007 */
[11305]28way[etcs ][!railway][route!=railway],
29way[gauge ][!railway][route!=railway],
30way[grade_of_track ][!railway][route!=railway],
31way[kursbuchstrecke ][!railway][route!=railway],
32way[lzb ][!railway][route!=railway],
33way[old_railway_operator ][!railway][route!=railway],
34way[operating_procedure ][!railway][route!=railway],
35way[pzb ][!railway][route!=railway],
36way[structure_gauge ][!railway][route!=railway],
37way[tilting_technology ][!railway][route!=railway],
38way[track_class ][!railway][route!=railway],
39way[tracks ][!railway][route!=railway],
40way[traffic_mode ][!railway][route!=railway],
41way[workrules ][!railway][route!=railway],
42way[stream ][!waterway],
43way[length_unit ][!waterway],
44way[canal ][!waterway],
45way[have_riverbank ][!waterway],
[6548]46*[border_type ][!boundary],
[8121]47*[piste:difficulty ][!piste:type],
[14799]48*[place ][!name][place!=islet],
[15260]49*[transformer ][!power],
[6548]50*[source:date ][!source],
51*[source:name ][!name],
[13032]52*[source:maxspeed:forward ][!maxspeed:forward][!maxspeed],
53*[source:maxspeed:backward ][!maxspeed:backward][!maxspeed],
[6548]54*[source:building ][!building],
55*[source:ref ][!ref],
56*[source:population ][!population],
57*[source:postal_code ][!postal_code],
58*[source:ele ][!ele],
59*[source:ref:INSEE ][!ref:INSEE],
60*[source:lit ][!lit],
61*[source:hgv ][!hgv],
62*[source:highway ][!highway],
63*[source:maxaxleload ][!maxaxleload],
64*[source:surface ][!surface],
65*[source:bridge ][!bridge],
66*[source:old_name ][!old_name],
67*[source:bicycle ][!bicycle],
68*[source:designation ][!designation],
69*[source:height ][!height],
70*[source:lanes ][!lanes],
[6645]71*[source:postcode ][!addr:postcode],
72*[source:housenumber ][!addr:housenumber],
73*[source:addr:postcode ][!addr:postcode],
74*[source:addr:housenumber ][!addr:housenumber],
[6548]75*[source:addr ][!/^addr:/],
76*[source:maxspeed ][!/^maxspeed:?/] {
77 throwWarning: tr("{0} without {1}", "{0.key}", "{1.key}");
[11146]78 group: tr("missing tag");
[6548]79 assertMatch: "way lanes=42";
80 assertNoMatch: "way lanes=42 highway=unclassified";
81 assertMatch: "node source:addr:postcode=postman";
82 assertMatch: "node source:addr=postman";
83 assertNoMatch: "node source:addr=postman addr:housenumber=42";
84}
85
[7229]86/* {0.key} without {1.key} (info level) */
[11305]87way[lanes:forward][!lanes:backward][oneway!=yes][oneway!=-1],
88way[lanes:backward][!lanes:forward][oneway!=yes][oneway!=-1],
[7229]89*[leaf_type ][!leaf_cycle],
90*[leaf_cycle][!leaf_type] {
91 throwOther: tr("{0} without {1}", "{0.key}", "{1.key}");
[11146]92 group: tr("missing tag");
[7229]93}
94
[15267]95/* {0.key} without {1.tag}, #17997 */
[15433]96node[railway:switch ][railway!=switch],
[15267]97*[generator:source ][power!=generator],
98*[generator:method ][power!=generator],
99*[generator:type ][power!=generator],
[14593]100node[fire_hydrant:type ][emergency!=fire_hydrant][disused:emergency!=fire_hydrant],
[15260]101node[manhole ][man_made!=manhole],
[11305]102way[fence_type ][barrier!=fence],
[6548]103*[recycling_type ][amenity!=recycling],
[7996]104*[information ][tourism!=information],
[11305]105node[board_type ][information!=board],
[6548]106*[shelter_type ][amenity!=shelter],
[11305]107node[lamp_type ][highway!=street_lamp],
108node[map_type ][information!=map],
[6548]109*[site_type ][historic!=archaeological_site],
[13508]110*[artwork_type ][tourism!=artwork][exhibit!=artwork],
[6548]111*[castle_type ][historic!=castle],
[15624]112*[parking ][amenity!~/^(parking|parking_space|parking_entrance|motorcycle_parking)$/][parking!=yes][parking!=no],
[11305]113way[cutline ][man_made!=cutline],
[6548]114*[bunker_type ][military!=bunker] {
115 throwWarning: tr("{0} without {1}", "{0.key}", "{1.tag}");
[11146]116 group: tr("missing tag");
[6548]117}
118
[15325]119/* {0.key} without {1.tag} or {2.tag}, #15107 */
120*[iata ][aeroway!=aerodrome][aeroway!=helipad],
121*[icao ][aeroway!=aerodrome][aeroway!=helipad],
[12677]122*[bridge:movable ][bridge!=movable][man_made!=bridge],
[9903]123*[substation ][power!=substation][pipeline!=substation],
[13972]124*[reservoir_type ][landuse!=reservoir][water!=reservoir],
125way[waterway=pressurised ][tunnel!=flooded][man_made!=pipeline] {
[9903]126 throwWarning: tr("{0} without {1} or {2}", "{0.key}", "{1.tag}", "{2.tag}");
[11146]127 group: tr("missing tag");
[9903]128}
129
[15584]130/* {0.tag} without {1.key} (warning level), #18411, #18246 */
131way[railway=construction][!construction],
[15467]132way[highway=construction][!construction],
[15190]133node[traffic_sign=maxspeed][!maxspeed],
[15139]134node[actuator=manual][!handle],
[14593]135node[emergency=fire_hydrant][!fire_hydrant:type],
[14800]136way[ boundary=administrative][!admin_level],
[13084]137relation[boundary=administrative][!admin_level],
[14798]138relation[route=bicycle ][!network][type=route],
139relation[route=hiking ][!network][type=route],
140relation[route=foot ][!network][type=route],
141relation[route=horse ][!network][type=route],
[10320]142relation[route=piste][!piste:type][type=route],
[14798]143relation[route=ski ][!piste:type][type=route],
[7996]144*[tourism=information][!information],
[11153]145*[leisure=pitch][!sport],
[7929]146*[aeroway=terminal][!building],
[15634]147*[office=government][!government],
[7967]148*[power=generator][!generator:source],
[15552]149*[amenity=recycling][!/^recycling:/][recycling_type!=centre],
[11398]150*[amenity=social_facility][!social_facility],
[7929]151*[amenity=place_of_worship][!religion] {
[7923]152 throwWarning: tr("{0} without {1}", "{0.tag}", "{1.key}");
[11146]153 group: tr("missing tag");
[7923]154}
155
[15325]156/* {0.tag} without {1.key} (info level), #15107 */
157*[aeroway=runway ][!ref],
158*[aeroway=runway ][!surface],
[15635]159node[highway=crossing ][!crossing],
[11428]160way[highway=track ][!tracktype],
[9495]161way[power=cable ][!location],
[13814]162node[power=transformer ][!voltage:primary],
163node[power=transformer ][!voltage:secondary],
164node[transformer=distribution ][!voltage:primary][power=pole],
165node[transformer=distribution ][!voltage:secondary][power=pole],
[9500]166way[power=line ][!voltage],
167way[power=minor_line ][!voltage],
168way[power=cable ][!voltage],
169*[power=generator ][!voltage][generator:output:electricity],
170*[power=plant ][!voltage][plant:output:electricity],
171*[power=substation ][!substation],
[12997]172*[power=switch ][!switch],
[9500]173*[power=transformer ][!transformer],
[14799]174*[amenity=bank ][!operator],
175*[amenity=cinema ][!operator],
176*[amenity=fast_food ][!operator],
177*[amenity=fuel ][!operator],
178*[mountain_pass=yes ][!ele],
179*[natural=peak ][!ele],
[15568]180*[natural=water ][!water],
[14818]181*[amenity=place_of_worship ][!denomination],
[8080]182*[amenity=parking ][!parking],
183*[amenity=parking_entrance ][!parking] {
184 throwOther: tr("{0} without {1}", "{0.tag}", "{1.key}");
[11146]185 group: tr("missing tag");
[9500]186 assertMatch: "way power=line";
187 assertNoMatch: "way power=line voltage=1";
[12997]188 assertMatch: "way power=switch";
[9500]189 assertMatch: "way power=substation";
190 assertMatch: "way power=substation transformer=foobar";
191 assertNoMatch: "way power=substation substation=foobar";
192 assertMatch: "way power=generator generator:output:electricity=yes";
193 assertNoMatch: "way power=generator";
194 assertNoMatch: "way power=generator generator:output:electricity=yes voltage=1";
[8080]195}
196
[6548]197/* {0.key} without {1.key} or {2.tag} */
[13026]198way[bridge:structure ][!bridge][man_made!=bridge],
[10068]199*[smoothness ][!highway][amenity!~/^(parking|parking_space|parking_entrance|motorcycle_parking|bicycle_parking)$/],
[9003]200*[segregated ][!highway][railway!=crossing] {
[6548]201 throwWarning: tr("{0} without {1} or {2}", "{0.key}", "{1.key}", "{2.tag}");
[11146]202 group: tr("missing tag");
[6548]203}
204
[8746]205/* {0.tag} without {1.tag} (info level) see #11600 #11393 #11850 */
[11305]206way[highway=motorway][!oneway][junction!=roundabout],
207way[highway=motorway_link][!oneway][junction!=roundabout] {
[8591]208 throwOther: tr("{0} without {1}", "{0.tag}", "{1.tag}");
[11146]209 group: tr("missing tag");
[8545]210}
211
[13972]212/* {0.tag} without {1.tag} */
213way[usage=penstock][man_made!=pipeline],
214way[usage=penstock][waterway!=pressurised] {
215 throwWarning: tr("{0} without {1}", "{0.tag}", "{1.tag}");
216 group: tr("missing tag");
217}
218
[8411]219/* {0.tag} without {1.tag} or {2.tag} */
220*[amenity=recycling][recycling_type!=container][recycling_type!=centre] {
221 throwWarning: tr("{0} without {1} or {2}", "{0.tag}", "{1.tag}", "{2.tag}");
[11146]222 group: tr("missing tag");
[8411]223}
224
[8057]225/* {0.key} without {1.key}, {2.tag} or {3.tag} */
[14127]226*[intermittent ][!waterway][natural!~/^(water|spring)$/][landuse!~/^(basin|reservoir)$/][ford!=yes],
227*[boat ][!waterway][natural!=water ][landuse!~/^(basin|reservoir)$/][ford!=yes] {
228 throwWarning: tr("{0} without {1}, {2}, {3} or {4}", "{0.key}", "{1.key}", "{2.tag}", "{3.tag}", "{4.tag}");
[11146]229 group: tr("missing tag");
[7767]230}
231
[14735]232/* {0.key} without {1.key}, {2.key} or {3.key}, #17253 */
[15254]233way[oneway ][!highway][!railway][!aerialway][attraction!=summer_toboggan][aeroway!~/^(runway|taxiway)$/],
[14735]234*[snowplowing][!highway][!amenity][!leisure] {
[6880]235 throwWarning: tr("{0} without {1}, {2} or {3}", "{0.key}", "{1.key}", "{2.key}", "{3.key}");
[11146]236 group: tr("missing tag");
[6880]237}
238
[14735]239/* {0.key} without {1.key}, {2.key} or {3.tag}, #17255 */
240way[incline ][!highway][!railway][aeroway!~/^(runway|taxiway)$/][attraction!=summer_toboggan],
[7250]241*[toll ][!highway][!barrier][route!~/^(ferry|road)$/] {
242 throwWarning: tr("{0} without {1}, {2} or {3}", "{0.key}", "{1.key}", "{2.key}", "{3.tag}");
[11146]243 group: tr("missing tag");
[7250]244}
245
[15110]246/* {0.tag} together with {1.key}, see #17664, #17707, #16464, #10837, #14034, #9389, #11977, #13156, #16888 */
247*[power=plant][/^generator:/],
248*[power=generator][/^plant:/],
[15075]249*[power=plant][voltage],
250*[power=plant][frequency],
[14042]251*[internet_access=no][internet_access:fee],
[13814]252node[power=transformer][voltage],
253node[transformer=distribution][voltage][power=pole],
[11346]254*[amenity=vending_machine][shop],
[13401]255*[noname?][name],
[14364]256way[oneway=yes][/:backward/][!traffic_sign:backward][bicycle:backward!=use_sidepath][oneway:bicycle!=no][oneway:psv!=no],
257way[oneway=yes][/:forward/ ][!traffic_sign:forward ][bicycle:forward!=use_sidepath ][oneway:bicycle!=no][oneway:psv!=no],
258way[oneway=-1 ][/:backward/][!traffic_sign:backward][bicycle:backward!=use_sidepath][oneway:bicycle!=no][oneway:psv!=no],
259way[oneway=-1 ][/:forward/ ][!traffic_sign:forward ][bicycle:forward!=use_sidepath ][oneway:bicycle!=no][oneway:psv!=no] {
[8077]260 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.key}");
[11146]261 group: tr("suspicious tag combination");
[15110]262 assertMatch: "way power=plant generator:source=wind";
263 assertMatch: "way power=generator plant:source=combustion";
[8077]264}
265
[8044]266/* {0.tag} together with {1.tag} (info level), see #9696 */
[11305]267way[highway=footway][oneway=no] {
[8044]268 throwOther: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
[11146]269 group: tr("suspicious tag combination");
[8044]270}
271
[15648]272/* {0.tag} together with {1.tag}, see #18411, #17950, #17330, #17623, #17592, #17594, #17542, #16861, #16147, #10186 */
273*[barrier=kerb][kerb=no],
274way[highway=construction][construction=yes],
275way[railway=construction][construction=yes],
[15595]276*[man_made=bridge][bridge=yes],
277*[man_made=tunnel][tunnel=yes],
[15307]278*[amenity=police][police],
[15286]279node[highway=crossing][crossing=no],
280node[railway=crossing][crossing=no],
[15094]281way[junction=yes][highway],
[15268]282way[tracktype=grade1][surface].unpaved_surface,
[14987]283way[tracktype=grade2][surface][surface=~/^(sand|mud)$/],
[14356]284way[segregated][bicycle=no],
285way[segregated][foot=no],
[14041]286way[man_made=pipeline][tunnel=flooded],
[14943]287way[waterway=canal][tunnel=yes] {
[8117]288 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
[11146]289 group: tr("suspicious tag combination");
[8117]290}
291
[14808]292/* {0.tag} together with {1.tag} (error level) */
293relation[type=multipolygon][area=no] {
294 throwError: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
295 group: tr("suspicious tag combination");
296}
297
[15526]298/* {0.key} together with {1.key}, #18267, #17630, #17604 */
299node[marker][cover],
300node[marker][voltage],
301node[marker][pressure],
302node[marker][diameter],
303node[marker][substance],
[15004]304*[building:part][building],
[15256]305*[addr:street][addr:place][outside("CZ,DK")] {
[14998]306 throwWarning: tr("{0} together with {1}", "{0.key}", "{1.key}");
[13401]307 group: tr("suspicious tag combination");
308}
309
[15722]310/* {0.tag} together with {1.tag} and {2.key}, #18471 */
311way[highway=~/^(cycleway|footway|path)$/][segregated=no][sidewalk =~/^(left|right|both)$/] {
312 throwWarning: tr("{0} together with {1} and {2}", "{0.tag}", "{1.tag}", "{2.key}");
313 group: tr("suspicious tag combination");
314}
315
[11074]316/* #11127, #13727 */
317way[waterway][bridge=yes][waterway!=weir] {
[8089]318 throwWarning: tr("{0} together with {1}", "{0.key}", "{1.tag}");
319 suggestAlternative: "bridge=aqueduct";
[11146]320 group: tr("suspicious tag combination");
[8089]321 fixAdd: "bridge=aqueduct";
322}
[11074]323way[waterway=weir][bridge=yes][highway] {
324 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
325 suggestAlternative: "waterway=weir + ford=yes";
326 suggestAlternative: "waterway=dam";
327 suggestAlternative: tr("two objects, one with {0} and one with {1} + {2} + {3}", "{0.tag}", "{2.key}", "{1.tag}", "layer");
[11146]328 group: tr("suspicious tag combination");
[11074]329}
[8089]330
[13787]331/* #16214 */
332relation[type=multipolygon] >[role="inner"] way[area][eval(number_of_tags()) = 1] {
333 throwWarning: tr("{0} on an inner multipolygon ring without further tags", "{0.tag}");
334 fixRemove: "area";
335 set area_yes_autofix;
336 group: tr("suspicious tag combination");
337}
338
[12416]339/* only {0.key}, see #11104 #12422 #14950 */
340*[access][eval(number_of_tags()) = 1],
[13787]341*[area][eval(number_of_tags()) = 1]!.area_yes_autofix,
[8054]342*[name][eval(number_of_tags()) = 1],
[9837]343*[ref][eval(number_of_tags()) = 1],
344*[lit][eval(number_of_tags()) = 1] {
[8054]345 throwWarning: tr("incomplete object: only {0}", "{0.key}");
[11146]346 group: tr("missing tag");
[8054]347}
[13086]348/* only {0.key} and {1.key} */
[8054]349*[name][area][eval(number_of_tags()) = 2],
350*[name][ref][eval(number_of_tags()) = 2] {
351 throwWarning: tr("incomplete object: only {0} and {1}", "{0.key}", "{1.key}");
[11146]352 group: tr("missing tag");
[8054]353}
[13086]354/* only {0.tag}, #15269 */
355*[tourism=attraction][eval(number_of_tags()) = 1] {
356 throwWarning: tr("incomplete object: only {0}", "{0.tag}");
357 group: tr("missing tag");
358}
359/* only {0.key} and {1.tag} */
360*[name][tourism=attraction][eval(number_of_tags()) = 2] {
361 throwWarning: tr("incomplete object: only {0} and {1}", "{0.key}", "{1.tag}");
362 group: tr("missing tag");
363}
[8054]364
[11548]365/* #9811, #11491, #12865, #14310 */
366*[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)$/],
367/* addr:postcode is used together with place in some countries */
[8043]368*[boundary][/^addr:/],
[8730]369*[highway][/^addr:/][highway!=services][highway!=rest_area][!"addr:postcode"] {
[8043]370 throwWarning: tr("{0} together with addr:*", "{0.key}");
[11146]371 group: tr("suspicious tag combination");
[11548]372 assertMatch: "node place=foo addr:housenumber=5";
373 assertMatch: "node place=foo addr:housenumber=5 addr:postcode=12345";
374 assertNoMatch: "node place=foo addr:postcode=12345";
[8043]375}
[8730]376*[!highway][postal_code]["addr:postcode"][postal_code=*"addr:postcode"] {
377 throwWarning: tr("{0} together with {1}", "{1.key}", "{2.key}");
[11146]378 group: tr("suspicious tag combination");
[8730]379}
380*[!highway][postal_code]["addr:postcode"][postal_code!=*"addr:postcode"] {
381 throwWarning: tr("{0} together with {1} and conflicting values", "{1.key}", "{2.key}");
[11146]382 group: tr("suspicious tag combination");
[8730]383}
384way[highway][postal_code]["addr:postcode"][postal_code=*"addr:postcode"] {
385 throwWarning: tr("{0} together with {1}", "{1.key}", "{2.key}");
[11146]386 group: tr("suspicious tag combination");
[8730]387 fixRemove: "addr:postcode";
388}
389way[highway][postal_code]["addr:postcode"][postal_code!=*"addr:postcode"] {
390 throwWarning: tr("{0} together with {1} and conflicting values", "{1.key}", "{2.key}");
[11146]391 group: tr("suspicious tag combination");
[8730]392}
[10272]393way[highway][highway!=services][highway!=rest_area][!postal_code]["addr:postcode"] {
[11052]394 throwWarning: tr("{0} together with {1}", "{0.key}", "{4.key}");
[8730]395 suggestAlternative: "postal_code";
[11146]396 group: tr("suspicious tag combination");
[8730]397 fixChangeKey: "addr:postcode=>postal_code";
398}
[8043]399
[10350]400/* #9195 */
[11305]401way[highway=footway][cycleway=lane] {
[8042]402 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
[8046]403 suggestAlternative: "highway=path + foot=designated + bicycle=designated + segregated=yes";
[11146]404 group: tr("suspicious tag combination");
[8042]405}
406
[6548]407/* {0} on suspicious object */
[15595]408*[tunnel ][!highway][!railway][!waterway][!piste:type][public_transport!=platform][route!=ferry][man_made!=pipeline][man_made!=goods_conveyor][man_made!=wildlife_crossing][man_made!=tunnel],
[14972]409*[bridge ][!highway][!railway][!waterway][!piste:type][public_transport!=platform][route!=ferry][man_made!=pipeline][man_made!=goods_conveyor][man_made!=wildlife_crossing][man_made!=bridge][building!=bridge],
[14975]410*[psv ][!highway][!railway][!waterway][barrier!=bollard][amenity !~ /^parking.*/],
[14915]411*[width ][!highway][!railway][!waterway][!aeroway][!cycleway][!footway][!barrier][!man_made][!entrance][natural!=stone][leisure!=track],
[15194]412*[maxspeed][!highway][!railway][traffic_sign !~ /^((.*;)?maxspeed(;.*)?|[A-Z][A-Z]:.+)$/][traffic_sign:forward !~ /^((.*;)?maxspeed(;.*)?|[A-Z][A-Z]:.+)$/][traffic_sign:backward !~ /^((.*;)?maxspeed(;.*)?|[A-Z][A-Z]:.+)$/][type != enforcement][waterway !~ /^(river|canal|lock)$/][!traffic_calming][aerialway!=zip_line] {
[6548]413 throwWarning: tr("{0} on suspicious object", "{0.key}");
[11146]414 group: tr("suspicious tag combination");
[6548]415}
416
[14798]417*[amenity][amenity =~ /^(restaurant|cafe|fast_food|pub|place_of_worship|school|university|hospital|library|theatre|courthouse|bank|cinema|pharmacy|fuel)$/][!name][noname!=yes] {
[11146]418 throwOther: tr("{0} without {1}", "{0.tag}", "{2.key}");
419 group: tr("missing tag");
[6548]420 assertMatch: "node amenity=restaurant";
[7932]421 assertNoMatch: "node amenity=restaurant noname=yes";
[6548]422 assertNoMatch: "node amenity=restaurant name=Foobar";
423}
424
[13645]425/* #10193, #16157 */
[6550]426way[highway][barrier],
[8559]427*[highway][waterway][waterway!=dam][waterway!=weir],
[11429]428way[highway][natural][natural!=ridge],
[14275]429*[landuse][building][landuse!=retail] {
[11146]430 throwWarning: tr("{0} together with {1}", "{0.key}", "{1.key}");
431 group: tr("suspicious tag combination");
[13645]432 assertNoMatch: "node highway=street_lamp natural=birds_nest";
[6548]433}
434
[10350]435/* #6932 */
[10798]436*[natural=water][leisure=swimming_pool] {
[6548]437 throwWarning: tr("natural water used for swimming pool");
[11146]438 group: tr("suspicious tag combination");
[7274]439 fixRemove: "natural";
[6548]440}
[6860]441
[14735]442/* #9593, #11183, #12418, #12761, #17254 */
443*[sport][sport!=skiing][!building][!club][tourism != hotel][highway != raceway][!leisure][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][attraction!=summer_toboggan] {
[6860]444 throwWarning: tr("sport without physical feature");
[11146]445 group: tr("missing tag");
[6860]446 assertMatch: "node sport=tennis";
447 assertNoMatch: "node sport=tennis leisure=pitch";
448 assertNoMatch: "node sport=beachvolleyball natural=beach";
[11159]449 assertNoMatch: "node sport=skiing"; /* skiing has deprecated warning */
[6860]450 assertNoMatch: "node sport=swimming tourism=hotel";
451 assertNoMatch: "node sport=10pin amenity=restaurant";
[7243]452}
453
[13972]454/* {0.key} without {1.key} or {2.key} see #10140 */
455*[building:levels][!building][!building:part],
456way[usage][!railway][!waterway][route!=railway][man_made!=pipeline] {
[7243]457 throwWarning: tr("{0} without {1} or {2}", "{0.key}", "{1.key}", "{2.key}");
[11146]458 group: tr("missing tag");
[7243]459}
[7488]460
[13981]461/* any other *_name tag (with some exceptions) but not a name , see #10837 #11297 #11539 #16437 */
462*[/_name$/][!name][!old_name][!loc_name][!uic_name][!artist_name][!lock_name][!"osak:municipality_name"][!"osak:street_name"][noname!=yes] {
[7818]463 throwWarning: tr("alternative name without {0}", "{1.key}");
[11146]464 group: tr("missing tag");
[7818]465}
466
[10350]467/* #10837 */
[9386]468way[destination][!oneway?][junction!=roundabout][highway] {
[7818]469 throwWarning: tr("incomplete usage of {0} on a way without {1}", "{0.key}", "{1.key}");
470 suggestAlternative: "destination:forward";
471 suggestAlternative: "destination:backward";
[8700]472}
473
[10350]474/* #11389 */
[8700]475way["maxspeed:forward"=*"maxspeed:backward"][!maxspeed] {
476 throwWarning: tr("Same value of {0} and {1}", "{0.key}", "{1.key}");
477 suggestAlternative: "maxspeed";
[11146]478 group: tr("suspicious tag combination");
[8700]479 fixChangeKey: "maxspeed:forward=>maxspeed";
480 fixRemove: "maxspeed:backward";
481}
482way["maxspeed:forward"=*maxspeed]["maxspeed:backward"=*maxspeed][maxspeed] {
483 throwWarning: tr("Same value of {0}, {1} and {2}", "{0.key}", "{1.key}", "{2.key}");
484 set AllSameMaxspeed;
485 suggestAlternative: "maxspeed";
[11146]486 group: tr("suspicious tag combination");
[8700]487 fixRemove: "maxspeed:forward";
488 fixRemove: "maxspeed:backward";
489}
490way["maxspeed:forward"]["maxspeed:backward"][maxspeed]!.AllSameMaxspeed {
491 throwWarning: tr("{0} and {1} together with {2} and conflicting values", "{0.key}", "{1.key}", "{2.key}");
[11146]492 group: tr("suspicious tag combination");
[8700]493}
494way["maxspeed:forward"][maxspeed][!"maxspeed:backward"],
495way["maxspeed:backward"][maxspeed][!"maxspeed:forward"] {
496 throwWarning: tr("{0} together with {1}", "{0.key}", "{1.key}");
[11146]497 group: tr("suspicious tag combination");
[8754]498}
499
[10350]500/* #11837 */
[8754]501way[layer][layer<0][bridge][bridge!=no][location!=underground][indoor!=yes][!tunnel],
502way[layer][layer>0][tunnel][tunnel!=no][location!=overground][indoor!=yes][!bridge] {
[11146]503 throwWarning: tr("{0} together with {1}", "{2.tag}", "{0.tag}");
504 group: tr("suspicious tag combination");
[10350]505}
506
507/* #12942 */
508relation[oneway][type!=route] {
509 throwWarning: tr("{0} on a relation without {1}", "{0.key}", "{1.tag}");
[10388]510}
511
512/* #9182 */
[10419]513way[waterway][layer][layer=~/^(-1|-2|-3|-4|-5)$/][!tunnel][culvert!=yes][covered!=yes][pipeline!=yes][location!=underground][eval(waylength()) > 400] {
514 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}");
[11146]515 group: tr("suspicious tag combination");
[10388]516}
[10419]517way[waterway][layer][layer=~/^(-1|-2|-3|-4|-5)$/][!tunnel][culvert!=yes][covered!=yes][pipeline!=yes][location!=underground][eval(waylength()) <= 400] {
518 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}");
[11146]519 group: tr("suspicious tag combination");
[10537]520}
521
[13102]522/* #13144, #15536 */
523*[unisex=yes][female=yes][male!=yes][shop=hairdresser],
524*[unisex=yes][male=yes][female!=yes][shop=hairdresser] {
[10537]525 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
[11146]526 group: tr("suspicious tag combination");
[10537]527}
[13102]528*[unisex=yes][female=yes][male=yes][shop=hairdresser] {
[10537]529 throwWarning: tr("{0} together with {1} and {2}. Remove {1} and {2}", "{0.tag}", "{1.tag}", "{2.tag}");
[11146]530 group: tr("suspicious tag combination");
[10537]531 fixRemove: "female";
532 fixRemove: "male";
533}
[13102]534*[female=yes][male=yes][!unisex][shop=hairdresser] {
[10537]535 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
536 suggestAlternative: "unisex=yes";
[11146]537 group: tr("suspicious tag combination");
[10537]538 fixRemove: "female";
539 fixRemove: "male";
540 fixAdd: "unisex=yes";
[10538]541}
542
[14883]543/* {1.key} without {2.tag} see #13138, #14468 */
544way!:closed[water][natural!~/water|bay|strait/][water!=intermittent][amenity!=lavoir], /* water=intermittent is deprecated and has an own warning */
545area:closed[water][natural!~/water|bay|strait/][water!=intermittent][amenity!=lavoir] {
[10538]546 throwWarning: tr("{0} without {1}", "{1.key}", "{2.tag}");
[11146]547 group: tr("missing tag");
[10538]548}
[10995]549
550/* see #8519, #11529, limited to motorways and trunks to avoid false positives for streets with lanes for non motorized traffic */
551way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][turn:lanes ][tag(lanes)!=eval(count(split("|", tag("turn:lanes"))))],
552way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][change:lanes ][tag(lanes)!=eval(count(split("|", tag("change:lanes"))))],
553way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][maxspeed:lanes ][tag(lanes)!=eval(count(split("|", tag("maxspeed:lanes"))))],
554way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][minspeed:lanes ][tag(lanes)!=eval(count(split("|", tag("minspeed:lanes"))))],
555way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][destination:lanes ][tag(lanes)!=eval(count(split("|", tag("destination:lanes"))))],
556way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][destination:ref:lanes ][tag(lanes)!=eval(count(split("|", tag("destination:ref:lanes"))))],
557way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][destination:symbol:lanes][tag(lanes)!=eval(count(split("|", tag("destination:symbol:lanes"))))] {
558 throwWarning: tr("Different number of lanes in the keys {0} and {1}", "{1.key}", "{2.key}");
[11146]559 group: tr("suspicious tag combination");
[11047]560}
561
562/* #13680 */
563area[golf=bunker][natural=beach] {
564 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
565 suggestAlternative: "natural=sand";
566 suggestAlternative: "surface=sand";
[11146]567 group: tr("suspicious tag combination");
[11080]568}
569
570/* #13705 */
571relation[type=multipolygon][building] > way {
572 set part_of_building_MP;
573}
574way["addr:housenumber"][!building][!"building:part"][!"demolished:building"][!note][!amenity][!leisure][!landuse][!man_made][!tourism][!barrier]!.part_of_building_MP {
575 /* don't exclude shop because a lot of real missing bulding tag cases have a shop tag. */
[11146]576 throwOther: tr("possibly missing {0} tag", "{1.key}");
577 group: tr("missing tag");
[11371]578}
579
[15393]580/* #14125, #14323, #18185 */
581way[highway][lanes][!lanes:forward][!lanes:backward][oneway!=yes][oneway!=-1][oneway!=reversible][junction!=roundabout][lanes>2][get(split(".", tag(lanes)/2), 1)=5] {
[11406]582 throwWarning: tr("street with odd number of {0}, but without {1} and {2} or {3}", "{1.key}", "{2.key}", "{3.key}", "{4.key}");
[11371]583 group: tr("missing tag");
584 assertNoMatch: "way highway=primary lanes=2";
585 assertNoMatch: "way highway=primary lanes=3 lanes:backward=2";
586 assertNoMatch: "way highway=primary lanes=3 oneway=-1";
[11406]587 assertNoMatch: "way highway=primary lanes=4";
[11371]588 assertMatch: "way highway=primary lanes=3";
[14593]589}
590
591/* #15774 */
592node[emergency=fire_hydrant][fire_hydrant:count][fire_hydrant:count!=1] {
593 throwOther: tr("{0} together with {1}. Tag each hydrant separately.", "{0.tag}", "{1.tag}");
[14798]594}
[14830]595
596/* #12502 */
597node[leisure=park][natural=tree] {
598 throwWarning: tr("{0} together with {1} on a node. Remove {0}.", "{0.tag}", "{1.tag}");
599 group: tr("suspicious tag combination");
600 fixRemove: "leisure";
[14831]601}
602
603/* #17305 */
604area[boundary=administrative][landuse=residential] {
605 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
606 group: tr("suspicious tag combination");
607}
608
609/* #17391 */
[14910]610way[highway=pedestrian][width][width<3] {
[14831]611 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
612 suggestAlternative: "highway=footway";
613 group: tr("suspicious tag combination");
614 fixAdd: "highway=footway";
615 assertMatch: "way highway=pedestrian width=0.8";
616 assertMatch: "way highway=pedestrian width=1";
[14910]617 assertNoMatch: "way highway=pedestrian width=3";
[14831]618 assertNoMatch: "way highway=pedestrian width=5.5";
[15094]619}
620
621/* see #17623 */
[15131]622way:areaStyle[highway][highway =~ /motorway|trunk|primary|secondary|tertiary|unclassified|residential|service$|living_street|pedestrian|track|path|footway|cycleway|bus_guideway|bridleway/][area!=yes] {
[15094]623 throwOther: tr("A linear object {0} without {1} has a tag indicating that it is an area.", "{1.tag}", "{3.tag}");
624 group: tr("suspicious tag combination");
[15169]625}
626
627/* #17804 */
628area[cemetery=sector][landuse=cemetery] {
629 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
630 group: tr("suspicious tag combination");
[15265]631}
632
633/* #17967 */
634*[highway=cycleway][cycleway=track] {
635 throwWarning: tr("{0} together with {1}. Remove {1}.", "{0.tag}", "{1.tag}");
636 group: tr("suspicious tag combination");
637 fixRemove: "cycleway";
[15268]638}
639
[15524]640/* #17973, #18183, #18331 */
641way[highway=path ][foot][foot!=no ][foot!=use_sidepath ][!segregated][bicycle][bicycle!=no][bicycle!=use_sidepath][bicycle!=dismount]!.unpaved_surface,
642way[highway=footway ][bicycle][bicycle!=no][bicycle!=use_sidepath][!segregated][bicycle!=dismount]!.unpaved_surface,
[15402]643way[highway=cycleway][foot][foot!=no ][foot!=use_sidepath ][!segregated]!.unpaved_surface {
[15403]644 throwWarning: tr("Combined foot- and cycleway without {0}.", "{4.key}");
[15268]645 group: tr("missing tag");
[15311]646}
647
648/* #17989 */
649node[emergency_ward_entrance][emergency!=emergency_ward_entrance] {
650 throwWarning: tr("{0} without {1}", "{0.tag}", "{1.tag}");
651 group: tr("missing tag");
652 fixAdd: "emergency=emergency_ward_entrance";
[15414]653}
654
655/* #18203 */
[15619]656way[construction][construction!=yes][construction!=minor][highway][highway!=construction] {
[15758]657 throwWarning: tr("{0} together with {1}", "{3.tag}", "{0.tag}");
[15414]658 group: tr("suspicious tag combination");
[15648]659}
660
661/* #18374 */
662*[amenity=recycling][collection_times="24/7"][!opening_hours],
663*[amenity=recycling][collection_times ][!opening_hours][collection_times=~/[a-z]-[A-Z].*[0-9]-[0-9]/] {
664 throwWarning: tr("{0} together with {1}. Probably {2} is meant.", "{1.key}", "{0.tag}", "{2.key}");
665 group: tr("suspicious tag combination");
666 fixChangeKey: "collection_times => opening_hours";
[15765]667 assertMatch: "node amenity=recycling collection_times=\"Mo-Fr 06:00-20:00\"";
668 assertNoMatch: "node amenity=recycling collection_times=\"Mo-Fr 15:00\"";
669 assertNoMatch: "node amenity=recycling collection_times=\"Mo 08:00-11:00\"";
670 assertNoMatch: "node amenity=recycling collection_times=\"Sa[2,4] 8:00-11:00\"";
[15648]671}
672*[amenity=recycling][collection_times="24/7"][opening_hours],
673*[amenity=recycling][collection_times ][opening_hours][collection_times=~/[a-z]-[A-Z].*[0-9]-[0-9]/] {
674 throwWarning: tr("{0} together with {1}. Probably {2} is meant.", "{1.key}", "{0.tag}", "{2.key}");
675 group: tr("suspicious tag combination");
[14830]676}
Note: See TracBrowser for help on using the repository browser.