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