source: josm/trunk/data/validator/highway.mapcss@ 11305

Last change on this file since 11305 was 11146, checked in by Klumbumbus, 8 years ago

see #13804 - a bit more grouping in the validator tree, small adjustments to a few validator rules

  • Property svn:eol-style set to native
File size: 5.0 KB
Line 
1way[highway=~/^(motorway|trunk|primary|secondary|tertiary)$/] {
2 set major_road;
3}
4way[highway=~/^.*_link$/] {
5 set link_road;
6}
7way[highway=~/^(unclassified|residential|living_street|service)$/] {
8 set minor_road;
9}
10
11way[highway][name =~ /(?i).* (Ave|Blvd|Br|Brg|Cct|Cir|Cl|Cr|Crct|Cres|Crt|Ct|Dr|Drv|Esp|Espl|Hwy|Ln|Mw|Mwy|Pky|Pkwy|Pl|Rd|Qy|Qys|Sq|St|Str|Ter|Tce|Tr|Wy)[.]?$/] {
12 throwWarning: tr("abbreviated street name");
13 assertMatch: "way highway=unclassified name=\"Foo Ave\"";
14 assertMatch: "way highway=unclassified name=\"Foo Ave.\"";
15 assertMatch: "way highway=unclassified name=\"Bou Blvd.\"";
16 assertMatch: "way highway=unclassified name=\"Bou blvd.\"";
17}
18
19node[highway =~ /motorway|trunk|primary|secondary|tertiary|unclassified|residential|service|living_street|pedestrian|track|path|footway|cycleway|bus_guideway|bridleway/][highway!=motorway_junction][highway!=services] {
20 throwWarning: tr("wrong highway tag on a node");
21 assertMatch: "node highway=primary";
22 assertMatch: "node highway=primary_link";
23 assertNoMatch: "node highway=traffic_calming";
24 assertNoMatch: "node highway=bus_stop";
25 assertNoMatch: "node highway=crossing";
26 assertNoMatch: "node highway=emergency_access_point";
27 assertNoMatch: "node highway=give_way";
28 assertNoMatch: "node highway=mini_roundabout";
29 assertNoMatch: "node highway=motorway_junction";
30 assertNoMatch: "node highway=passing_place";
31 assertNoMatch: "node highway=rest_area";
32 assertNoMatch: "node highway=speed_camera";
33 assertNoMatch: "node highway=street_lamp";
34 assertNoMatch: "node highway=services";
35 assertNoMatch: "node highway=stop";
36 assertNoMatch: "node highway=traffic_signals";
37 assertNoMatch: "node highway=turning_circle";
38}
39
40way[highway=crossing],
41way[railway=crossing],
42way[railway=level_crossing] {
43 throwWarning: tr("wrong crossing tag on a way");
44 assertMatch: "way highway=crossing";
45 assertNoMatch: "node highway=crossing";
46}
47
48way[highway=unclassified][!name][noname!=yes] {
49 throwOther: tr("Unnamed unclassified highway");
50 assertMatch: "way highway=unclassified";
51 assertNoMatch: "way highway=unclassified noname=yes";
52 assertNoMatch: "way highway=unclassified name=Foo";
53}
54
55way.major_road[!ref] {
56 throwOther: tr("highway without a reference");
57 group: tr("missing tag");
58 assertMatch: "way highway=primary";
59 assertNoMatch: "way highway=primary ref=123";
60}
61
62way[highway=road] {
63 throwWarning: tr("temporary highway type");
64 assertMatch: "way highway=road";
65 assertNoMatch: "way highway=residential";
66}
67
68way[highway=footway][maxspeed],
69way[highway=steps][maxspeed],
70way[highway=cycleway][bicycle=no],
71way[highway=footway][foot=no],
72way[highway=cycleway][cycleway=lane] {
73 throwWarning: tr("{0} used with {1}", "{0.value}", "{1.tag}");
74 assertNoMatch: "way highway=cycleway bicycle=yes";
75 assertNoMatch: "way highway=cycleway";
76 assertNoMatch: "way highway=footway foot=yes";
77 assertNoMatch: "way highway=footway";
78 assertMatch: "way highway=cycleway cycleway=lane";
79 assertNoMatch: "way highway=cycleway";
80 assertNoMatch: "way highway=residential cycleway=lane";
81 assertMatch: "way highway=footway maxspeed=20";
82 assertNoMatch: "way highway=residential maxspeed=20";
83 assertNoMatch: "way highway=footway";
84}
85
86*[name =~ /(?i).*Strasse.*/] {
87 throwOther: tr("street name contains ss");
88 assertMatch: "way name=Foobarstrasse";
89 assertMatch: "way name=Foobar-Strassenweg";
90 assertNoMatch: "way name=Foobarstraße";
91}
92
93/* footway, see #10851 */
94way[footway=left],
95way[footway=right],
96way[footway=both],
97way[footway=no] {
98 throwWarning: tr("{0} is deprecated", "{0.tag}");
99 suggestAlternative: "sidewalk";
100 group: tr("deprecated tagging");
101 fixChangeKey: "footway => sidewalk";
102 set footway_to_sidewalk;
103}
104way[footway=none] {
105 throwWarning: tr("{0} is deprecated", "{0.tag}");
106 suggestAlternative: "sidewalk=no";
107 group: tr("deprecated tagging");
108 fixRemove: "footway";
109 fixAdd: "sidewalk=no";
110 set footway_to_sidewalk;
111}
112way[footway][footway!=sidewalk][footway!=crossing]!.footway_to_sidewalk { /* do not trigger this rule if already one of the two previous rules applied */
113 throwWarning: tr("Value of ''{0}'' should either be ''{1}'' or ''{2}''. For sidewalks use ''{3}'' instead.", "{0.key}", "{1.value}", "{2.value}", "sidewalk=left|right|both|no");
114 assertNoMatch: "way footway=left";
115 assertNoMatch: "way footway=none";
116 assertMatch: "way footway=bar";
117}
118
119/* #11270 */
120way[railway =~ /^(light_rail|miniature|narrow_gauge|preserved|rail)$/] > node { set .is_in_railway }
121way[highway =~ /^(bridleway|cycleway|footway|path|steps)$/] > node[railway != crossing].is_in_railway {
122 throwWarning: tr("pedestrian railway crossing without {0}", "{0.tag}");
123 group: tr("missing tag");
124 fixAdd: "railway=crossing";
125}
126way[highway =~ /^(bus_guideway|living_street|motorway|pedestrian|primary|raceway|residential|road|secondary|service|tertiary|track|trunk|unclassified)/] > node[railway != level_crossing].is_in_railway {
127 throwWarning: tr("railway crossing without {0}", "{0.tag}");
128 group: tr("missing tag");
129 fixAdd: "railway=level_crossing";
130}
Note: See TracBrowser for help on using the repository browser.