source: josm/trunk/data/validator/combinations.mapcss@ 15393

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

fix #18185 - exclude oneway=reversible from odd number of lanes check

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