1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900
|
/* Rules partially derived from Taginfo statistics - see ticket #5017
* 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;
*/
way[surface=~/^(unpaved|compacted|gravel|fine_gravel|pebblestone|ground|earth|dirt|grass|sand|mud|ice|salt|snow|woodchips)$/] { /* without grass_paver as it is controversial */
set unpaved_surface;
}
/* {0.key} without {1.key} (warning level) */
way[junction ][!highway][junction!=yes][!area:highway],
way[living_street ][!highway],
way[maintenance ][!highway],
way[median ][!highway],
way[motorroad ][!highway],
node[ntd_id ][!highway],
way[sac_scale ][!highway],
way[sidewalk ][!highway],
way[step_count ][!highway][man_made!=tower],
way[tracktype ][!highway],
way[trail_visibility ][!highway], /* #15029 */
way[trolley_wire ][!highway],
way[zip_left ][!highway],
way[zip_right ][!highway],
way[detail ][!railway][route!=railway],
way[eddy_current_brake ][!railway][route!=railway],
way[electrified ][!railway][route!=railway][!highway], /* #16007 */
way[etcs ][!railway][route!=railway],
way[gauge ][!railway][route!=railway],
way[grade_of_track ][!railway][route!=railway],
way[kursbuchstrecke ][!railway][route!=railway],
way[lzb ][!railway][route!=railway],
way[old_railway_operator ][!railway][route!=railway],
way[operating_procedure ][!railway][route!=railway],
way[pzb ][!railway][route!=railway],
way[structure_gauge ][!railway][route!=railway],
way[tilting_technology ][!railway][route!=railway],
way[track_class ][!railway][route!=railway],
way[tracks ][!railway][route!=railway],
way[traffic_mode ][!railway][route!=railway],
way[workrules ][!railway][route!=railway],
way[length_unit ][!waterway],
way[canal ][!waterway],
way[have_riverbank ][!waterway],
*[border_type ][!boundary],
*[piste:difficulty ][!piste:type],
*[place ][!name][place!=islet],
*[transformer ][!power],
*[source:date ][!source],
*[source:name ][!name][noname!=yes],
*[source:maxspeed:forward ][!maxspeed:forward][!maxspeed],
*[source:maxspeed:backward ][!maxspeed:backward][!maxspeed],
*[source:building ][!building],
*[source:ref ][!ref][noref!=yes],
*[source:population ][!population],
*[source:postal_code ][!postal_code],
*[source:ele ][!ele],
*[source:ref:INSEE ][!ref:INSEE],
*[source:lit ][!lit],
*[source:hgv ][!hgv],
*[source:highway ][!highway],
*[source:maxaxleload ][!maxaxleload],
*[source:surface ][!surface],
*[source:bridge ][!bridge],
*[source:old_name ][!old_name],
*[source:bicycle ][!bicycle],
*[source:designation ][!designation],
*[source:height ][!height],
*[source:lanes ][!lanes],
*[source:postcode ][!addr:postcode],
*[source:housenumber ][!addr:housenumber],
*[source:addr:postcode ][!addr:postcode],
*[source:addr:housenumber ][!addr:housenumber] {
throwWarning: tr("{0} without {1}", "{0.key}", "{1.key}");
group: tr("missing tag");
assertMatch: "node source:addr:postcode=postman";
}
/* {0.key} without {1.key} (info level) */
way[lanes:forward][!lanes:backward][oneway!=yes][oneway!=-1],
way[lanes:backward][!lanes:forward][oneway!=yes][oneway!=-1],
*[leaf_type ][!leaf_cycle],
*[leaf_cycle][!leaf_type] {
throwOther: tr("{0} without {1}", "{0.key}", "{1.key}");
group: tr("missing tag");
}
/* {0.key} without {1.tag}, #17997 */
node[railway:switch ][railway!=switch],
*[generator:source ][power!=generator],
*[generator:method ][power!=generator],
*[generator:type ][power!=generator],
node[fire_hydrant:type ][emergency!=fire_hydrant][disused:emergency!=fire_hydrant],
node[manhole ][man_made!=manhole],
way[fence_type ][barrier!=fence],
*[recycling_type ][amenity!=recycling],
*[information ][tourism!=information],
node[board_type ][information!=board],
*[shelter_type ][amenity!=shelter],
node[lamp_type ][highway!=street_lamp],
node[map_type ][information!=map],
*[site_type ][historic!=archaeological_site],
*[artwork_type ][tourism!=artwork][exhibit!=artwork],
*[castle_type ][historic!=castle],
*[parking ][amenity!~/^(parking|parking_space|parking_entrance|motorcycle_parking)$/][parking!=yes][parking!=no],
way[cutline ][man_made!=cutline],
*[bunker_type ][military!=bunker] {
throwWarning: tr("{0} without {1}", "{0.key}", "{1.tag}");
group: tr("missing tag");
}
/* {0.key} without {1.tag} or {2.tag} */
*[bridge:movable ][bridge!=movable][man_made!=bridge],
*[substation ][power!=substation][pipeline!=substation],
*[reservoir_type ][landuse!=reservoir][water!=reservoir],
way[waterway=pressurised ][tunnel!=flooded][man_made!=pipeline] {
throwWarning: tr("{0} without {1} or {2}", "{0.key}", "{1.tag}", "{2.tag}");
group: tr("missing tag");
}
/* {0.key} without {1.tag}, {2.tag} or {3.tag}, #15107, #20241 */
*[iata ][aeroway!=aerodrome][aeroway!=heliport][aeroway!=helipad],
*[icao ][aeroway!=aerodrome][aeroway!=heliport][aeroway!=helipad] {
throwWarning: tr("{0} without {1}, {2} or {3}", "{0.key}", "{1.tag}", "{2.tag}", "{3.tag}");
group: tr("missing tag");
}
/* {0.tag} without {1.key} (warning level), #18411, #18246 */
way[railway=construction][!construction],
way[highway=construction][!construction],
node[traffic_sign=maxspeed][!maxspeed][!/^maxspeed:.+/],
node[actuator=manual][!handle],
node[emergency=fire_hydrant][!fire_hydrant:type],
way[ boundary=administrative][!admin_level],
relation[boundary=administrative][!admin_level],
relation[route=bicycle ][!network][type=route],
relation[route=hiking ][!network][type=route],
relation[route=foot ][!network][type=route],
relation[route=horse ][!network][type=route],
relation[route=piste][!piste:type][type=route],
relation[route=ski ][!piste:type][type=route],
*[tourism=information][!information],
*[leisure=pitch][!sport],
*[aeroway=terminal][!building],
*[office=government][!government],
*[power=generator][!generator:source],
*[amenity=social_facility][!social_facility],
*[amenity=place_of_worship][!religion],
*[man_made=tower][!tower:type] {
throwWarning: tr("{0} without {1}", "{0.tag}", "{1.key}");
group: tr("missing tag");
assertNoMatch: "node traffic_sign=maxspeed maxspeed:hgv:conditional=\"80 @ (weight>7.5 AND 22:00-05:00)\"";
}
/* {0.tag} without {1.key} (info level), #15107 */
*[aeroway=runway ][!ref],
*[aeroway=runway ][!surface],
node[highway=crossing ][!crossing],
way[highway=track ][!tracktype],
way[power=cable ][!location],
node[power=transformer ][!voltage:primary],
node[power=transformer ][!voltage:secondary],
node[transformer=distribution ][!voltage:primary][power=pole],
node[transformer=distribution ][!voltage:secondary][power=pole],
way[power=line ][!voltage],
way[power=minor_line ][!voltage],
way[power=cable ][!voltage],
*[power=generator ][!voltage][generator:output:electricity],
*[power=plant ][!voltage][plant:output:electricity],
*[power=substation ][!substation],
*[power=switch ][!switch],
*[power=transformer ][!transformer],
*[amenity=bank ][!operator],
*[amenity=cinema ][!operator],
*[amenity=fast_food ][!operator],
*[amenity=fuel ][!operator],
*[mountain_pass=yes ][!ele],
*[natural=peak ][!ele],
*[natural=water ][!water],
*[amenity=place_of_worship ][!denomination],
*[amenity=parking ][!parking],
*[amenity=parking_entrance ][!parking] {
throwOther: tr("{0} without {1}", "{0.tag}", "{1.key}");
group: tr("missing tag");
assertMatch: "way power=line";
assertNoMatch: "way power=line voltage=1";
assertMatch: "way power=switch";
assertMatch: "way power=substation";
assertMatch: "way power=substation transformer=foobar";
assertNoMatch: "way power=substation substation=foobar";
assertMatch: "way power=generator generator:output:electricity=yes";
assertNoMatch: "way power=generator";
assertNoMatch: "way power=generator generator:output:electricity=yes voltage=1";
}
/* {0.key} without {1.key} or {2.tag} */
way[bridge:structure ][!bridge][man_made!=bridge],
*[segregated ][!highway][railway!=crossing] {
throwWarning: tr("{0} without {1} or {2}", "{0.key}", "{1.key}", "{2.tag}");
group: tr("missing tag");
}
/* {0.tag} without {1.tag} (info level) see #11600 #11393 #11850 */
way[highway=motorway][!oneway][junction!=roundabout],
way[highway=motorway_link][!oneway][junction!=roundabout] {
throwOther: tr("{0} without {1}", "{0.tag}", "{1.tag}");
group: tr("missing tag");
}
/* {0.tag} without {1.tag} */
way[usage=penstock][man_made!=pipeline],
way[usage=penstock][waterway!=pressurised] {
throwWarning: tr("{0} without {1}", "{0.tag}", "{1.tag}");
group: tr("missing tag");
}
/* {0.tag} without {1.tag} or {2.tag} */
*[amenity=recycling][recycling_type!=container][recycling_type!=centre] {
throwWarning: tr("{0} without {1} or {2}", "{0.tag}", "{1.tag}", "{2.tag}");
group: tr("missing tag");
}
/* {0.key} without {1.key}, {2.tag}, {3.tag} or {4.key} */
*[smoothness][!highway][amenity!~/^(parking|parking_space|parking_entrance|motorcycle_parking|bicycle_parking)$/][barrier!=kerb][!kerb] {
throwWarning: tr("{0} without {1}, {2}, {3} or {4}", "{0.key}", "{1.key}", "{2.tag}", "{3.tag}", "{4.key}");
group: tr("missing tag");
}
/* {0.key} without {1.key}, {2.tag}, {3.tag} or {4.tag} */
*[intermittent ][!waterway][natural!~/^(water|spring)$/][landuse!~/^(basin|reservoir)$/][ford!=yes],
*[boat ][!waterway][natural!=water ][landuse!~/^(basin|reservoir)$/][ford!=yes] {
throwWarning: tr("{0} without {1}, {2}, {3} or {4}", "{0.key}", "{1.key}", "{2.tag}", "{3.tag}", "{4.tag}");
group: tr("missing tag");
}
/* {0.key} without {1.key}, {2.key} or {3.key} */
*[snowplowing][!highway][!amenity][!leisure] {
throwWarning: tr("{0} without {1}, {2} or {3}", "{0.key}", "{1.key}", "{2.key}", "{3.key}");
group: tr("missing tag");
}
/* {0.key} without {1.key}, {2.key} or {3.tag} */
*[toll ][!highway][!barrier][route!~/^(ferry|road)$/] {
throwWarning: tr("{0} without {1}, {2} or {3}", "{0.key}", "{1.key}", "{2.key}", "{3.tag}");
group: tr("missing tag");
}
/* {0.tag} together with {1.key}, see #17664, #17707, #16464, #10837, #14034, #9389, #11977, #13156, #16888 */
*[power=plant][/^generator:/],
*[power=generator][/^plant:/],
*[power=plant][voltage],
*[power=plant][frequency],
*[internet_access=no][internet_access:fee],
node[power=transformer][voltage],
node[transformer=distribution][voltage][power=pole],
*[amenity=vending_machine][shop],
*[noname?][name],
way[oneway=yes][/:backward/][!traffic_sign:backward][bicycle:backward!=use_sidepath][oneway:bicycle!=no][oneway:psv!=no],
way[oneway=yes][/:forward/ ][!traffic_sign:forward ][bicycle:forward!=use_sidepath ][oneway:bicycle!=no][oneway:psv!=no],
way[oneway=-1 ][/:backward/][!traffic_sign:backward][bicycle:backward!=use_sidepath][oneway:bicycle!=no][oneway:psv!=no],
way[oneway=-1 ][/:forward/ ][!traffic_sign:forward ][bicycle:forward!=use_sidepath ][oneway:bicycle!=no][oneway:psv!=no] {
throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.key}");
group: tr("suspicious tag combination");
assertMatch: "way power=plant generator:source=wind";
assertMatch: "way power=generator plant:source=combustion";
}
/* {0.tag} together with {1.tag} (info level), see #9696 */
way[highway=footway][oneway=no] {
throwOther: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
group: tr("suspicious tag combination");
}
/* {0.tag} together with {1.tag}, see #18411, #17950, #17330, #17623, #17592, #17594, #17542, #16861, #16147, #10186 */
*[barrier=kerb][kerb=no],
way[highway=construction][construction=yes],
way[railway=construction][construction=yes],
*[man_made=bridge][bridge=yes],
*[man_made=tunnel][tunnel=yes],
*[amenity=police][police],
node[highway=crossing][crossing=no],
node[railway=crossing][crossing=no],
way[junction=yes][highway],
way[tracktype=grade1][surface].unpaved_surface,
way[tracktype=grade2][surface][surface=~/^(sand|mud)$/],
way[segregated][bicycle=no],
way[segregated][foot=no],
way[man_made=pipeline][tunnel=flooded],
way[waterway=canal][tunnel=yes] {
throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
group: tr("suspicious tag combination");
}
/* {0.tag} together with {1.tag} (error level) */
relation[type=multipolygon][area=no] {
throwError: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
group: tr("suspicious tag combination");
}
/* {0.key} together with {1.key}, #18267, #17630, #17604 */
node[marker][cover],
node[marker][voltage],
node[marker][pressure],
node[marker][diameter],
node[marker][substance],
*[building:part][building],
*[addr:street][addr:place][outside("CZ,DK")] {
throwWarning: tr("{0} together with {1}", "{0.key}", "{1.key}");
group: tr("suspicious tag combination");
}
/* {0.tag} together with {1.tag} and {2.key}, #18471 */
way[highway=~/^(cycleway|footway|path)$/][segregated=no][sidewalk =~/^(left|right|both)$/] {
throwWarning: tr("{0} together with {1} and {2}", "{0.tag}", "{1.tag}", "{2.key}");
group: tr("suspicious tag combination");
}
/* {0.key} together with {1.tag} and {2.key}, #19747 */
way[railway][electrified=no][frequency],
way[railway][electrified=no][voltage] {
throwWarning: tr("{0} together with {1} and {2}", "{0.key}", "{1.tag}", "{2.key}");
group: tr("suspicious tag combination");
}
/* #11127, #13727 */
way[waterway][bridge=yes][waterway!=weir] {
throwWarning: tr("{0} together with {1}", "{0.key}", "{1.tag}");
suggestAlternative: "bridge=aqueduct";
group: tr("suspicious tag combination");
fixAdd: "bridge=aqueduct";
}
way[waterway=weir][bridge=yes][highway] {
throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
suggestAlternative: "waterway=weir + ford=yes";
suggestAlternative: "waterway=dam";
suggestAlternative: tr("two objects, one with {0} and one with {1} + {2} + {3}", "{0.tag}", "{2.key}", "{1.tag}", "layer");
group: tr("suspicious tag combination");
}
/* #16214 */
relation[type=multipolygon] >[role="inner"] way[area][eval(number_of_tags()) = 1] {
throwWarning: tr("{0} on an inner multipolygon ring without further tags", "{0.tag}");
fixRemove: "area";
set area_yes_autofix;
group: tr("suspicious tag combination");
}
/* only {0.key}, #11104, #12422, #14950, #19572 */
*[lanes][eval(number_of_tags()) = 1],
*[surface][eval(number_of_tags()) = 1],
*[access][eval(number_of_tags()) = 1],
*[area][eval(number_of_tags()) = 1]!.area_yes_autofix,
*[name][eval(number_of_tags()) = 1],
*[ref][eval(number_of_tags()) = 1],
*[lit][eval(number_of_tags()) = 1] {
throwWarning: tr("incomplete object: only {0}", "{0.key}");
set only_one_tag;
group: tr("missing tag");
}
/* only {0.key} and {1.key} */
*[name][area][eval(number_of_tags()) = 2],
*[name][ref][eval(number_of_tags()) = 2] {
throwWarning: tr("incomplete object: only {0} and {1}", "{0.key}", "{1.key}");
group: tr("missing tag");
}
/* only {0.tag}, #15269 */
*[tourism=attraction][eval(number_of_tags()) = 1] {
throwWarning: tr("incomplete object: only {0}", "{0.tag}");
group: tr("missing tag");
}
/* only {0.key} and {1.tag} */
*[name][tourism=attraction][eval(number_of_tags()) = 2] {
throwWarning: tr("incomplete object: only {0} and {1}", "{0.key}", "{1.tag}");
group: tr("missing tag");
}
/* #9811, #11491, #12865, #14310 */
*[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)$/],
/* addr:postcode is used together with place in some countries */
*[boundary][/^addr:/],
*[highway][/^addr:/][highway!=services][highway!=rest_area][!"addr:postcode"] {
throwWarning: tr("{0} together with {1}", "{0.key}", "addr:*");
group: tr("suspicious tag combination");
assertMatch: "node place=foo addr:housenumber=5";
assertMatch: "node place=foo addr:housenumber=5 addr:postcode=12345";
assertNoMatch: "node place=foo addr:postcode=12345";
}
*[!highway][postal_code]["addr:postcode"][postal_code=*"addr:postcode"] {
throwWarning: tr("{0} together with {1}", "{1.key}", "{2.key}");
group: tr("suspicious tag combination");
}
*[!highway][postal_code]["addr:postcode"][postal_code!=*"addr:postcode"] {
throwWarning: tr("{0} together with {1} and conflicting values", "{1.key}", "{2.key}");
group: tr("suspicious tag combination");
}
way[highway][postal_code]["addr:postcode"][postal_code=*"addr:postcode"] {
throwWarning: tr("{0} together with {1}", "{1.key}", "{2.key}");
group: tr("suspicious tag combination");
fixRemove: "addr:postcode";
}
way[highway][postal_code]["addr:postcode"][postal_code!=*"addr:postcode"] {
throwWarning: tr("{0} together with {1} and conflicting values", "{1.key}", "{2.key}");
group: tr("suspicious tag combination");
}
way[highway][highway!=services][highway!=rest_area][!postal_code]["addr:postcode"] {
throwWarning: tr("{0} together with {1}", "{0.key}", "{4.key}");
suggestAlternative: "postal_code";
group: tr("suspicious tag combination");
fixChangeKey: "addr:postcode=>postal_code";
}
/* #9195 */
way[highway=footway][cycleway=lane] {
throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
suggestAlternative: "highway=path + foot=designated + bicycle=designated + segregated=yes";
group: tr("suspicious tag combination");
}
/* {0} on suspicious object, #17255, #19650, #19572, #17253, #19821, #15667, #19930 */
way[oneway ][!highway][!railway][!aerialway][attraction!=summer_toboggan][aeroway!~/^(runway|taxiway)$/][leisure!=track][waterway !~ /^(canal|fairway|lock|river|tidal_channel)$/],
node[lanes ][!barrier][!ford][highway!=mini_roundabout][!junction][leisure!~/^(bowling_alley|slipway|swimming_pool|track)$/][!traffic_calming]!.only_one_tag,
way[lanes ][!barrier][!ford][!highway ][!junction][leisure!~/^(bowling_alley|slipway|swimming_pool|track)$/][!traffic_calming]!.only_one_tag,
*[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],
*[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],
*[psv ][!highway][!railway][!waterway][barrier!=bollard][amenity !~ /^parking.*/],
*[width ][!highway][!railway][!waterway][!aeroway][!cycleway][!footway][!barrier][!man_made][!entrance][natural!=stone][leisure!=track],
*[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 !~ /^(canal|fairway|lock|river|tidal_channel)$/][!traffic_calming][aerialway!=zip_line],
way[incline][!highway][!railway][aeroway!~/^(runway|taxiway)$/][attraction!=summer_toboggan][leisure!=slipway] {
throwWarning: tr("{0} on suspicious object", "{0.key}");
group: tr("suspicious tag combination");
}
/* #15667, #19930 */
way[waterway][oneway][waterway =~ /^(canal|fairway|lock|river|tidal_channel)$/] {
throwOther: tr("{0} together with {1}. The flow direction is defined by the way direction. Use {1} on {0} only in the rare case of a access restriction.", "{0.key}", "{1.key}");
group: tr("suspicious tag combination");
}
*[amenity][amenity =~ /^(restaurant|cafe|fast_food|pub|place_of_worship|school|university|hospital|library|theatre|courthouse|bank|cinema|pharmacy|fuel)$/][!name][noname!=yes] {
throwOther: tr("{0} without {1}", "{0.tag}", "{2.key}");
group: tr("missing tag");
assertMatch: "node amenity=restaurant";
assertNoMatch: "node amenity=restaurant noname=yes";
assertNoMatch: "node amenity=restaurant name=Foobar";
}
/* #10193, #16157 */
way[highway][barrier],
*[highway][waterway][waterway!=dam][waterway!=weir],
way[highway][natural][natural!=ridge],
*[landuse][building][landuse!=retail] {
throwWarning: tr("{0} together with {1}", "{0.key}", "{1.key}");
group: tr("suspicious tag combination");
assertNoMatch: "node highway=street_lamp natural=birds_nest";
}
/* #6932 */
*[natural=water][leisure=swimming_pool] {
throwWarning: tr("natural water used for swimming pool");
group: tr("suspicious tag combination");
fixRemove: "natural";
}
/* #9593, #11183, #12418, #12761, #17254, #19311 */
*[sport][sport!=skiing][!building][!club][tourism != hotel][highway !~ /^(pedestrian|raceway)$/][!leisure][natural !~ /^(beach|bare_rock|cliff|peak|water)$/][amenity !~ /^(bar|dojo|pub|restaurant|swimming_pool)$/][landuse !~ /^(recreation_ground|piste|farm|farmland)$/][barrier !~ /^(wall|retaining_wall)$/][!"piste:type"][shop!=sports][attraction!=summer_toboggan] {
throwWarning: tr("sport without physical feature");
group: tr("missing tag");
assertMatch: "node sport=tennis";
assertNoMatch: "node sport=tennis leisure=pitch";
assertNoMatch: "node sport=beachvolleyball natural=beach";
assertNoMatch: "node sport=skiing"; /* skiing has deprecated warning */
assertNoMatch: "node sport=swimming tourism=hotel";
assertNoMatch: "node sport=10pin amenity=restaurant";
}
/* {0.key} without {1.key} or {2.key} see #10140 */
*[building:levels][!building][!building:part],
way[usage][!railway][!waterway][route!=railway][man_made!=pipeline] {
throwWarning: tr("{0} without {1} or {2}", "{0.key}", "{1.key}", "{2.key}");
group: tr("missing tag");
}
/* any other *_name tag (with some exceptions) but not a name , see #10837 #11297 #11539 #16437 #17026 */
*[/_name$/][!name][!old_name][!loc_name][!reg_name][!uic_name][!artist_name][!lock_name][!"osak:municipality_name"][!"osak:street_name"][noname!=yes] {
throwWarning: tr("alternative name without {0}", "{1.key}");
group: tr("missing tag");
}
/* #19604 */
way[name][alt_name][name=*alt_name] {
throwWarning: tr("Same value of {0} and {1}", "{0.key}", "{1.key}");
group: tr("suspicious tag combination");
fixRemove: "alt_name";
}
/* #10837 */
way[destination][!oneway?][junction!=roundabout][highway] {
throwWarning: tr("incomplete usage of {0} on a way without {1}", "{0.key}", "{1.key}");
suggestAlternative: "destination:forward";
suggestAlternative: "destination:backward";
}
/* #11389, #19010 */
way[maxspeed:forward][maxspeed:backward][!maxspeed]["maxspeed:forward"=*"maxspeed:backward"] {
throwWarning: tr("Same value of {0} and {1}", "{0.key}", "{1.key}");
suggestAlternative: "maxspeed";
group: tr("suspicious tag combination");
fixChangeKey: "maxspeed:forward=>maxspeed";
fixRemove: "maxspeed:backward";
}
way[maxspeed:forward][maxspeed:backward][maxspeed]["maxspeed:forward"=*maxspeed]["maxspeed:backward"=*maxspeed] {
throwWarning: tr("Same value of {0}, {1} and {2}", "{0.key}", "{1.key}", "{2.key}");
set AllSameMaxspeed;
suggestAlternative: "maxspeed";
group: tr("suspicious tag combination");
fixRemove: "maxspeed:forward";
fixRemove: "maxspeed:backward";
}
way[cycleway:left][cycleway:right][!cycleway]["cycleway:left"=*"cycleway:right"] {
throwWarning: tr("Same value of {0} and {1}", "{0.key}", "{1.key}");
suggestAlternative: "cycleway";
group: tr("suspicious tag combination");
fixChangeKey: "cycleway:left=>cycleway";
fixRemove: "cycleway:right";
}
way[cycleway:left][cycleway:right][cycleway]["cycleway:left"=*cycleway]["cycleway:right"=*cycleway] {
throwWarning: tr("Same value of {0}, {1} and {2}", "{0.key}", "{1.key}", "{2.key}");
set AllSameCycleway;
suggestAlternative: "cycleway";
group: tr("suspicious tag combination");
fixRemove: "cycleway:left";
fixRemove: "cycleway:right";
}
way[sidewalk:left][sidewalk:right][!sidewalk]["sidewalk:left"=*"sidewalk:right"] {
throwWarning: tr("Same value of {0} and {1}", "{0.key}", "{1.key}");
suggestAlternative: "sidewalk";
group: tr("suspicious tag combination");
fixChangeKey: "sidewalk:left=>sidewalk";
fixRemove: "sidewalk:right";
}
way[sidewalk:left][sidewalk:right][sidewalk]["sidewalk:left"=*sidewalk]["sidewalk:right"=*sidewalk] {
throwWarning: tr("Same value of {0}, {1} and {2}", "{0.key}", "{1.key}", "{2.key}");
set AllSameSidewalk;
suggestAlternative: "sidewalk";
group: tr("suspicious tag combination");
fixRemove: "sidewalk:left";
fixRemove: "sidewalk:right";
}
way["maxspeed:forward"]["maxspeed:backward"][maxspeed]!.AllSameMaxspeed,
way["cycleway:left"]["cycleway:right"][cycleway]!.AllSameCycleway,
way["sidewalk:left"]["sidewalk:right"][sidewalk]!.AllSameSidewalk {
throwWarning: tr("{0} and {1} together with {2} and conflicting values", "{0.key}", "{1.key}", "{2.key}");
group: tr("suspicious tag combination");
}
way["maxspeed:forward"][maxspeed][!"maxspeed:backward"],
way["maxspeed:backward"][maxspeed][!"maxspeed:forward"],
way["cycleway:left"][cycleway][!"cycleway:right"],
way["cycleway:right"][cycleway][!"cycleway:left"],
way["sidewalk:left"][sidewalk][!"sidewalk:right"],
way["sidewalk:right"][sidewalk][!"sidewalk:left"] {
throwWarning: tr("{0} together with {1}", "{0.key}", "{1.key}");
group: tr("suspicious tag combination");
}
/* #11837 */
way[layer][layer<0][bridge][bridge!=no][location!=underground][indoor!=yes][!tunnel],
way[layer][layer>0][tunnel][tunnel!=no][location!=overground][indoor!=yes][!bridge] {
throwWarning: tr("{0} together with {1}", "{2.tag}", "{0.tag}");
group: tr("suspicious tag combination");
}
/* #12942 */
relation[oneway][type!=route] {
throwWarning: tr("{0} on a relation without {1}", "{0.key}", "{1.tag}");
}
/* #9182 */
way[waterway][layer][layer=~/^(-1|-2|-3|-4|-5)$/][!tunnel][culvert!=yes][covered!=yes][pipeline!=yes][location!=underground][eval(waylength()) > 400] {
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}");
group: tr("suspicious tag combination");
}
way[waterway][layer][layer=~/^(-1|-2|-3|-4|-5)$/][!tunnel][culvert!=yes][covered!=yes][pipeline!=yes][location!=underground][eval(waylength()) <= 400] {
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}");
group: tr("suspicious tag combination");
}
/* #13144, #15536 */
*[unisex=yes][female=yes][male!=yes][shop=hairdresser],
*[unisex=yes][male=yes][female!=yes][shop=hairdresser] {
throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
group: tr("suspicious tag combination");
}
*[unisex=yes][female=yes][male=yes][shop=hairdresser] {
throwWarning: tr("{0} together with {1} and {2}. Remove {1} and {2}", "{0.tag}", "{1.tag}", "{2.tag}");
group: tr("suspicious tag combination");
fixRemove: "female";
fixRemove: "male";
}
*[female=yes][male=yes][!unisex][shop=hairdresser] {
throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
suggestAlternative: "unisex=yes";
group: tr("suspicious tag combination");
fixRemove: "female";
fixRemove: "male";
fixAdd: "unisex=yes";
}
/* {1.key} without {2.tag} see #13138, #14468 */
way!:closed[water][natural!~/water|bay|strait/][water!=intermittent][amenity!=lavoir], /* water=intermittent is deprecated and has an own warning */
area:closed[water][natural!~/water|bay|strait/][water!=intermittent][amenity!=lavoir] {
throwWarning: tr("{0} without {1}", "{1.key}", "{2.tag}");
group: tr("missing tag");
}
/* #13680 */
area[golf=bunker][natural=beach] {
throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
suggestAlternative: "natural=sand";
suggestAlternative: "surface=sand";
group: tr("suspicious tag combination");
}
/* #13705 */
relation[type=multipolygon][building] > way {
set part_of_building_MP;
}
way["addr:housenumber"][!building][!"building:part"][!"demolished:building"][!note][!amenity][!leisure][!landuse][!man_made][!tourism][!barrier]!.part_of_building_MP {
/* don't exclude shop because a lot of real missing bulding tag cases have a shop tag. */
throwOther: tr("possibly missing {0} tag", "{1.key}");
group: tr("missing tag");
}
/* see #8519, #11529, limited to motorways and trunks to avoid false positives for streets with lanes for non motorized traffic */
way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/] {
set MotorwayTrunk;
}
way.MotorwayTrunk[lanes][turn:lanes ][tag(lanes)!=eval(count(split("|", tag("turn:lanes"))))],
way.MotorwayTrunk[lanes][change:lanes ][tag(lanes)!=eval(count(split("|", tag("change:lanes"))))],
way.MotorwayTrunk[lanes][maxspeed:lanes ][tag(lanes)!=eval(count(split("|", tag("maxspeed:lanes"))))],
way.MotorwayTrunk[lanes][minspeed:lanes ][tag(lanes)!=eval(count(split("|", tag("minspeed:lanes"))))],
way.MotorwayTrunk[lanes][destination:lanes ][tag(lanes)!=eval(count(split("|", tag("destination:lanes"))))],
way.MotorwayTrunk[lanes][destination:ref:lanes ][tag(lanes)!=eval(count(split("|", tag("destination:ref:lanes"))))],
way.MotorwayTrunk[lanes][destination:symbol:lanes][tag(lanes)!=eval(count(split("|", tag("destination:symbol:lanes"))))] {
throwWarning: tr("Different number of lanes in the keys {0} and {1}", "{1.key}", "{2.key}");
group: tr("suspicious tag combination");
}
/* #14125, #14323, #18185 */
way[highway][lanes][!lanes:forward][!lanes:backward][oneway!=yes][oneway!=-1][oneway!=reversible][highway!=motorway][junction!=roundabout][lanes>2][get(split(".", tag(lanes)/2), 1)=5] {
throwWarning: tr("street with odd number of {0}, but without {1} and {2} or {3}", "{1.key}", "{2.key}", "{3.key}", "{4.key}");
group: tr("missing tag");
assertNoMatch: "way highway=primary lanes=2";
assertNoMatch: "way highway=primary lanes=3 lanes:backward=2";
assertNoMatch: "way highway=primary lanes=3 oneway=-1";
assertNoMatch: "way highway=primary lanes=4";
assertMatch: "way highway=primary lanes=3";
}
/* #10932, #19609 */
way[highway][!lanes][/^.*:lanes$/][!source:lanes],
way[highway][!lanes][/^.*:lanes:(forward|backward|both_ways)$/],
way[highway][!lanes:both_ways][/^.*:lanes:both_ways$/] {
throwWarning: tr("{0} without {1}", "{2.key}", "{1.key}");
group: tr("missing tag");
assertMatch: "way highway=primary turn:lanes=left|right";
assertMatch: "way highway=primary turn:lanes:forward=left|right";
assertNoMatch: "way highway=primary turn:lanes=left|right lanes=2";
}
way[highway][!lanes:forward][/^.*:lanes:forward$/][!lanes:backward][!get(split(".", tag(lanes)/2), 1)=5],
way[highway][!lanes:backward][/^.*:lanes:backward$/][!lanes:forward][!get(split(".", tag(lanes)/2), 1)=5] {
throwOther: tr("{0} without {1}", "{2.key}", "{1.key}");
group: tr("missing tag");
assertMatch: "way highway=primary turn:lanes:forward=left|right lanes=2";
assertNoMatch: "way highway=primary turn:lanes:forward=left|right lanes:forward=2";
assertNoMatch: "way highway=primary turn:lanes:forward=left|right lanes=3";
}
/* #15774 */
node[emergency=fire_hydrant][fire_hydrant:count][fire_hydrant:count!=1] {
throwOther: tr("{0} together with {1}. Tag each hydrant separately.", "{0.tag}", "{1.tag}");
}
/* #12502 */
node[leisure=park][natural=tree] {
throwWarning: tr("{0} together with {1} on a node. Remove {0}.", "{0.tag}", "{1.tag}");
group: tr("suspicious tag combination");
fixRemove: "leisure";
}
/* #17305 */
area[boundary=administrative][landuse=residential] {
throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
group: tr("suspicious tag combination");
}
/* #17391 */
way[highway=pedestrian][width][width<3] {
throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
suggestAlternative: "highway=footway";
group: tr("suspicious tag combination");
fixAdd: "highway=footway";
assertMatch: "way highway=pedestrian width=0.8";
assertMatch: "way highway=pedestrian width=1";
assertNoMatch: "way highway=pedestrian width=3";
assertNoMatch: "way highway=pedestrian width=5.5";
}
/* see #17623 */
way:areaStyle[highway][highway =~ /motorway|trunk|primary|secondary|tertiary|unclassified|residential|service$|living_street|pedestrian|track|path|footway|cycleway|bus_guideway|bridleway/][area!=yes] {
throwOther: tr("A linear object {0} without {1} has a tag indicating that it is an area.", "{1.tag}", "{3.tag}");
group: tr("suspicious tag combination");
}
/* #17804 */
area[cemetery=sector][landuse=cemetery] {
throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
group: tr("suspicious tag combination");
}
/* #17967 */
*[highway=cycleway][cycleway=track] {
throwWarning: tr("{0} together with {1}. Remove {1}.", "{0.tag}", "{1.tag}");
group: tr("suspicious tag combination");
fixRemove: "cycleway";
}
/* #17973, #18183, #18331 */
way[highway=path ][foot][foot!=no ][foot!=use_sidepath ][!segregated][bicycle][bicycle!=no][bicycle!=use_sidepath][bicycle!=dismount]!.unpaved_surface,
way[highway=footway ][bicycle][bicycle!=no][bicycle!=use_sidepath][!segregated][bicycle!=dismount]!.unpaved_surface,
way[highway=cycleway][foot][foot!=no ][foot!=use_sidepath ][!segregated]!.unpaved_surface {
throwWarning: tr("Combined foot- and cycleway without {0}.", "{4.key}");
group: tr("missing tag");
}
/* #17989 */
node[emergency_ward_entrance][emergency!=emergency_ward_entrance] {
throwWarning: tr("{0} without {1}", "{0.tag}", "{1.tag}");
group: tr("missing tag");
fixAdd: "emergency=emergency_ward_entrance";
}
/* #18203 */
way[construction][construction!=yes][construction!=minor][highway][highway!=construction] {
throwWarning: tr("{0} together with {1}", "{3.tag}", "{0.tag}");
group: tr("suspicious tag combination");
}
/* #18374 */
*[amenity=recycling][collection_times="24/7"][!opening_hours],
*[amenity=recycling][collection_times ][!opening_hours][collection_times=~/[a-z]-[A-Z].*[0-9]-[0-9]/] {
throwWarning: tr("{0} together with {1}. Probably {2} is meant.", "{1.key}", "{0.tag}", "{2.key}");
group: tr("suspicious tag combination");
fixChangeKey: "collection_times => opening_hours";
assertMatch: "node amenity=recycling collection_times=\"Mo-Fr 06:00-20:00\"";
assertNoMatch: "node amenity=recycling collection_times=\"Mo-Fr 15:00\"";
assertNoMatch: "node amenity=recycling collection_times=\"Mo 08:00-11:00\"";
assertNoMatch: "node amenity=recycling collection_times=\"Sa[2,4] 8:00-11:00\"";
}
*[amenity=recycling][collection_times="24/7"][opening_hours],
*[amenity=recycling][collection_times ][opening_hours][collection_times=~/[a-z]-[A-Z].*[0-9]-[0-9]/] {
throwWarning: tr("{0} together with {1}. Probably {2} is meant.", "{1.key}", "{0.tag}", "{2.key}");
group: tr("suspicious tag combination");
}
/* #19018 */
way[highway][crossing][highway =~ /^(motorway|motorway_link|trunk|trunk_link|primary|primary_link|secondary|secondary_link|tertiary|tertiary_link|unclassified|residential|service|living_street)$/] {
throwWarning: tr("{0} together with {1}. Should be used on a minor highway type or a node", "{1.key}", "{0.tag}");
group: tr("suspicious tag combination");
fixRemove: "crossing";
assertMatch: "way highway=trunk crossing=unmarked";
assertNoMatch: "way highway=construction construction=footway crossing=unmarked";
}
/* #19066 */
*[amenity=recycling][!/^recycling:/][recycling_type!=centre] {
throwWarning: tr("{0} without {1}", "{0.tag}", "recycling:*");
group: tr("missing tag");
}
*[source:addr][!/^addr:/] {
throwWarning: tr("{0} without {1}", "{0.key}", "addr:*");
group: tr("missing tag");
assertMatch: "node source:addr=postman";
assertNoMatch: "node source:addr=postman addr:housenumber=42";
}
*[source:maxspeed][!/^maxspeed:?/] {
throwWarning: tr("{0} without {1} or {2}", "{0.key}", "maxspeed", "maxspeed:*");
group: tr("missing tag");
}
/* #16898, tower vs. communications_tower, wiki suggests 100m as rough guideline, so we warn for < 75m */
*[man_made=communications_tower][height][height =~ /^((7[0-4]|[1-6]?[0-9])(\.[0-9]*)?( m)?|(2(4[0-5]|[0-3][0-9])|1?[0-9]?[0-9])((\.[0-9]*)?( ft|\')|\'(11|10|[0-9])(\.[0-9]*)?\"))$/] { /* 75m ~ 246ft ~ 246' */
throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
suggestAlternative: "man_made=tower + tower:type=communication + height";
group: tr("suspicious tag combination");
assertMatch: "node man_made=communications_tower height=58";
assertMatch: "node man_made=communications_tower height=\"74 m\"";
assertMatch: "node man_made=communications_tower height=0.8";
assertMatch: "node man_made=communications_tower height=245'";
assertMatch: "node man_made=communications_tower height=\"224.22 ft\"";
assertMatch: "node man_made=communications_tower height=231'10.22\"";
assertNoMatch: "node man_made=communications_tower height=\"75 m\"";
assertNoMatch: "node man_made=communications_tower height=75.72";
assertNoMatch: "node man_made=communications_tower height=\"328.22 ft\"";
assertNoMatch: "node man_made=communications_tower height=4358'8\"";
assertNoMatch: "node height=4358'";
}
/* #17296, If the value of fixme is only an osm key, it is often a leftover from a time when the object didn't have this key. The fixme was forgotten to remove when the key was added. Or the value of fixme should be described better what exactly needs to be fixed. */
*[fixme][count(split(" ", tag("fixme"))) == 1][has_tag_key(tag("fixme"))],
*[FIXME][count(split(" ", tag("FIXME"))) == 1][has_tag_key(tag("FIXME"))] {
throwWarning: tr("{0} together with {1}. Is the fixme fixed?", "{0.tag}", "{0.value}");
group: tr("suspicious tag combination");
assertMatch: "way name=\"Florist Gump\" fixme=name";
assertMatch: "way name=\"Florist Gump\" FIXME=name";
assertNoMatch: "way fixme=name";
assertNoMatch: "way name=\"Florist Gump\"";
assertNoMatch: "way name=\"Florist Gump\" fixme=\"the name might have changed\"";
}
/* #19094 */
way[highway][placement=transition][join_list("", uniq_list(tag_regex("^placement:.*$")))==transition],
way[highway][!placement][/^placement:.*$/][join_list("", uniq_list(tag_regex("^placement:.*$")))==transition] {
throwWarning: tr("Use {0} only as value of {1}", "transition", "placement");
set PlacementTransitionWarning;
fixAdd: "placement=transition";
fixRemove: "placement:forward";
fixRemove: "placement:backward";
fixRemove: "placement:both_ways";
assertMatch: "way highway=primary placement=transition placement:both_ways=transition";
assertMatch: "way highway=primary placement:backward=transition placement:forward=transition";
assertNoMatch: "way highway=primary placement:backward=middle_of:1 placement:forward=transition";
assertNoMatch: "way highway=primary placement=middle_of:1 placement:backward=transition placement:forward=transition";
}
way[highway][placement][/^placement:.*$/]!.PlacementTransitionWarning,
way[highway]["placement:forward"]["placement:backward"]!.PlacementTransitionWarning,
way[highway]["placement:forward"]["placement:both_ways"]!.PlacementTransitionWarning,
way[highway]["placement:backward"]["placement:both_ways"]!.PlacementTransitionWarning {
throwError: tr("{0} together with {1}", "{1.key}", "{2.key}");
group: tr("suspicious tag combination");
assertMatch: "way highway=primary placement=left_of:2 placement:forward=right_of:1";
assertNoMatch: "way highway=primary placement:forward=right_of:1";
assertNoMatch: "way highway=primary placement:forward=transition placement:both_ways=transition";
}
/* #19742 */
node:righthandtraffic[highway=mini_roundabout][direction=clockwise] {
throwWarning: tr("{0} together with {1} at right-hand traffic", "{1.tag}", "{2.tag}");
group: tr("suspicious tag combination");
}
node!:righthandtraffic[highway=mini_roundabout][direction=anticlockwise] {
throwWarning: tr("{0} together with {1} at left-hand traffic", "{1.tag}", "{2.tag}");
group: tr("suspicious tag combination");
}
/* #19603 */
way[footway][highway][footway=sidewalk ][highway!~/^(path|footway|cycleway|construction|proposed)$/] {
throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
group: tr("suspicious tag combination");
suggestAlternative: "sidewalk=left";
suggestAlternative: "sidewalk=right";
suggestAlternative: "sidewalk=both";
suggestAlternative: "sidewalk=separate";
}
way[footway][highway][footway!=sidewalk][highway!~/^(path|footway|cycleway|construction|proposed)$/] {
throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
group: tr("suspicious tag combination");
}
way[footway][!highway][!/:highway$/],
way[cycleway][!highway][!/:highway$/] {
throwWarning: tr("{0} without {1}", "{0.key}", "{1.key}");
group: tr("missing tag");
assertNoMatch: "way footway=sidewalk abandoned:highway=unclassified";
}
/* #17498 */
way[bicycle][/^cycleway(:|$)/][!/^bicycle:/][bicycle=~/^(no|use_sidepath)$/][/^cycleway(:|$)/!~/^(no|none|separate)$/] {
throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
group: tr("suspicious tag combination");
assertMatch: "way bicycle=no cycleway=track";
assertMatch: "way bicycle=use_sidepath cycleway=lane";
assertMatch: "way bicycle=use_sidepath cycleway:left=lane";
assertNoMatch: "way bicycle=use_sidepath cycleway=no";
assertNoMatch: "way bicycle=use_sidepath bicycle:backward=yes cycleway:left=lane"; /* instead of :backward, could also be :forward or :conditional */
assertNoMatch: "way bicycle=no cycleway:right=no";
assertNoMatch: "way bicycle=use_sidepath cycleway:left=none";
assertNoMatch: "way highway=cycleway cycleway=separate";
assertNoMatch: "way highway=residential bicycle=use_sidepath";
}
/* #19980 */
way[highway=living_street][maxspeed][maxspeed=~/mph/][get(split(" ", tag(maxspeed)), 0) > 15],
way[highway=living_street][maxspeed][maxspeed!~/mph/][get(split(" ", tag(maxspeed)), 0) > 20] {
throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
group: tr("suspicious tag combination");
assertNoMatch: "way highway=living_street";
assertNoMatch: "way highway=living_street maxspeed=20";
assertNoMatch: "way highway=living_street maxspeed=\"15 mph\"";
assertNoMatch: "way highway=living_street maxspeed=walk";
assertMatch: "way highway=living_street maxspeed=30";
assertMatch: "way highway=living_street maxspeed=\"20 mph\"";
}
|