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

Last change on this file since 7937 was 7937, checked in by bastiK, 9 years ago

add subversion property svn:eol=native

  • Property svn:eol-style set to native
File size: 10.2 KB
Line 
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
5/* {0.key} without {1.key} (warning level) */
6way[junction ][!highway][junction!=yes],
7*[lanes ][!highway],
8*[lcn ][!highway],
9*[living_street ][!highway],
10*[maintenance ][!highway],
11*[median ][!highway],
12*[motorroad ][!highway],
13*[ntd_id ][!highway],
14*[sac_scale ][!highway],
15*[sidewalk ][!highway],
16*[smoothness ][!highway],
17*[step_count ][!highway],
18*[tracktype ][!highway],
19*[trail_visibility ][!highway],
20*[trolley_wire ][!highway],
21*[zip_left ][!highway],
22*[zip_right ][!highway],
23*[detail ][!railway][route!=railway],
24*[eddy_current_brake ][!railway][route!=railway],
25*[electrified ][!railway][route!=railway],
26*[etcs ][!railway][route!=railway],
27*[gauge ][!railway][route!=railway],
28*[grade_of_track ][!railway][route!=railway],
29*[kursbuchstrecke ][!railway][route!=railway],
30*[lzb ][!railway][route!=railway],
31*[old_railway_operator ][!railway][route!=railway],
32*[operating_procedure ][!railway][route!=railway],
33*[pzb ][!railway][route!=railway],
34*[radio ][!railway][route!=railway],
35*[structure_gauge ][!railway][route!=railway],
36*[tilting_technology ][!railway][route!=railway],
37*[track_class ][!railway][route!=railway],
38*[tracks ][!railway][route!=railway],
39*[traffic_mode ][!railway][route!=railway],
40*[usage ][!railway][route!=railway],
41*[workrules ][!railway][route!=railway],
42*[stream ][!waterway],
43*[length_unit ][!waterway],
44*[llid ][!waterway],
45*[canal ][!waterway],
46*[have_riverbank ][!waterway],
47*[border_type ][!boundary],
48*[bridge:structure ][!bridge],
49*[source:date ][!source],
50*[source:name ][!name],
51*[source:maxspeed:forward ][!maxspeed:forward],
52*[source:maxspeed:backward ][!maxspeed:backward],
53*[source:maxspeed:forward ][!source:maxspeed:backward],
54*[source:maxspeed:backward ][!source:maxspeed:forward],
55*[source:building ][!building],
56*[source:ref ][!ref],
57*[source:population ][!population],
58*[source:postal_code ][!postal_code],
59*[source:ele ][!ele],
60*[source:ref:INSEE ][!ref:INSEE],
61*[source:lit ][!lit],
62*[source:hgv ][!hgv],
63*[source:highway ][!highway],
64*[source:maxaxleload ][!maxaxleload],
65*[source:surface ][!surface],
66*[source:bridge ][!bridge],
67*[source:old_name ][!old_name],
68*[source:bicycle ][!bicycle],
69*[source:designation ][!designation],
70*[source:height ][!height],
71*[source:lanes ][!lanes],
72*[source:postcode ][!addr:postcode],
73*[source:housenumber ][!addr:housenumber],
74*[source:addr:postcode ][!addr:postcode],
75*[source:addr:housenumber ][!addr:housenumber],
76*[source:addr ][!/^addr:/],
77*[source:maxspeed ][!/^maxspeed:?/] {
78 throwWarning: tr("{0} without {1}", "{0.key}", "{1.key}");
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
86/* {0.key} without {1.key} (info level) */
87*[leaf_type ][!leaf_cycle],
88*[leaf_cycle][!leaf_type] {
89 throwOther: tr("{0} without {1}", "{0.key}", "{1.key}");
90}
91
92/* {0.key} without {1.tag} */
93*[fence_type ][barrier!=fence],
94*[recycling_type ][amenity!=recycling],
95*[board_type ][information!=board],
96*[shelter_type ][amenity!=shelter],
97*[lamp_type ][highway!=street_lamp],
98*[map_type ][information!=map],
99*[site_type ][historic!=archaeological_site],
100*[artwork_type ][tourism!=artwork],
101*[castle_type ][historic!=castle],
102*[reservoir_type ][landuse!=reservoir][water!=reservoir],
103*[bridge:movable ][bridge!=movable],
104*[bunker_type ][military!=bunker] {
105 throwWarning: tr("{0} without {1}", "{0.key}", "{1.tag}");
106}
107
108/* {0.tag} without {1.key} */
109*[aeroway=terminal][!building],
110*[amenity=place_of_worship][!religion] {
111 throwWarning: tr("{0} without {1}", "{0.tag}", "{1.key}");
112}
113
114/* {0.key} without {1.key} or {2.key} */
115*[incline ][!highway][!railway],
116*[oneway ][!highway][!railway] {
117 throwWarning: tr("{0} without {1} or {2}", "{0.key}", "{1.key}", "{2.key}");
118}
119
120/* {0.key} without {1.key} or {2.tag} */
121*[segregated ][!highway][railway!=crossing],
122*[boat ][!waterway][natural!=water],
123*[intermittent ][!waterway][natural!=water] {
124 throwWarning: tr("{0} without {1} or {2}", "{0.key}", "{1.key}", "{2.tag}");
125}
126
127/* {0.key} without {1.tag}, {2.tag} or {3.tag} */
128*[parking ][amenity!=parking][amenity!=parking_entrance][amenity!=motorcycle_parking] {
129 throwWarning: tr("{0} without {1}, {2} or {3}", "{0.key}", "{1.tag}", "{2.tag}", "{3.tag}");
130}
131
132/* {0.key} without {1.key}, {2.key} or {3.key} */
133*[snowplowing ][!highway][!amenity][!leisure] {
134 throwWarning: tr("{0} without {1}, {2} or {3}", "{0.key}", "{1.key}", "{2.key}", "{3.key}");
135}
136
137/* {0.key} without {1.key}, {2.key} or {3.tag} */
138*[toll ][!highway][!barrier][route!~/^(ferry|road)$/] {
139 throwWarning: tr("{0} without {1}, {2} or {3}", "{0.key}", "{1.key}", "{2.key}", "{3.tag}");
140}
141
142/* {0.key} together with {1.key}, see #10837 */
143*[noname?][name],
144*[highway]["addr:street"] {
145 throwWarning: tr("{0} together with {1}", "{0.key}", "{1.key}");
146}
147
148/* {0} on suspicious object */
149*[tunnel ][!highway][!railway][!waterway][public_transport != platform][man_made != pipeline],
150*[bridge ][!highway][!railway][!waterway][!piste:type][public_transport != platform][man_made !~ /^(bridge|pipeline)$/][building != bridge],
151*[psv ][!highway][!railway][!waterway][amenity !~ /^parking.*/],
152*[width ][!highway][!railway][!waterway][!aeroway][!cycleway][!footway][!barrier][!man_made][!entrance],
153*[maxspeed][!highway][!railway][traffic_sign !~ /^(.*;)?maxspeed(;.*)?$/][type != enforcement][waterway !~ /^(river|canal|lock)$/],
154*[lit ][!highway][!railway][!piste:type][amenity !~ /^(parking|shelter)/][public_transport!=platform][advertising!=billboard][!leisure][!tourism] {
155 throwWarning: tr("{0} on suspicious object", "{0.key}");
156}
157
158node[amenity =~ /^(restaurant|cafe|fast_food)$/][!name][noname!=yes] {
159 throwOther: tr("restaurant without name");
160 assertMatch: "node amenity=restaurant";
161 assertNoMatch: "node amenity=restaurant noname=yes";
162 assertNoMatch: "node amenity=restaurant name=Foobar";
163}
164
165way[highway][barrier],
166*[highway][waterway][waterway!=dam],
167way[highway][natural],
168*[landuse][building] {
169 throwWarning: tr("{0} used with {1}", "{0.key}", "{1.key}");
170 assertNoMatch: "node highway=street_lamp natural=birds_nest note=josm#10193";
171}
172
173*[natural=water][leisure=swimming_pool],
174*[natural=water][amenity=swimming_pool] {
175 /* see #6932 */
176 throwWarning: tr("natural water used for swimming pool");
177 fixRemove: "natural";
178}
179
180/* see #9593 */
181*[sport][!building][tourism != hotel][highway != raceway][leisure !~ /^(sports_centre|stadium|track|pitch|golf_course|water_park|swimming_pool|recreation_ground)$/][natural !~ /^(beach|bare_rock|peak)$/][amenity !~ /^(pub|restaurant|swimming_pool)$/][landuse !~ /^(recreation_ground|piste|farm|farmland)$/] {
182 throwWarning: tr("sport without physical feature");
183 assertMatch: "node sport=tennis";
184 assertNoMatch: "node sport=tennis leisure=pitch";
185 assertNoMatch: "node sport=beachvolleyball natural=beach";
186 assertNoMatch: "node sport=skiiing landuse=piste";
187 assertNoMatch: "node sport=swimming tourism=hotel";
188 assertNoMatch: "node sport=10pin amenity=restaurant";
189}
190
191/* see #10140 */
192*[building:levels][!building][!building:part] {
193 throwWarning: tr("{0} without {1} or {2}", "{0.key}", "{1.key}", "{2.key}");
194}
195
196/* see #10471 */
197way[waterway] > node[ford?] { set ford_on_waterway; }
198way[highway] > node[ford?] { set ford_on_highway; }
199node[ford?]!.ford_on_waterway, node[ford?]!.ford_on_highway {
200 throwWarning: tr("{0} should be on the node where {1} and {2} intersect", "ford", "highway", "waterway");
201}
202
203/* any other *_name tag (except old_name, loc_name and uic_name) but not a name , see #10837 */
204*[/_name$/][!name][!old_name][!loc_name][!uic_name] {
205 throwWarning: tr("alternative name without {0}", "{1.key}");
206}
207
208/* see #10837 */
209way[destination][!oneway?] {
210 throwWarning: tr("incomplete usage of {0} on a way without {1}", "{0.key}", "{1.key}");
211 suggestAlternative: "destination:forward";
212 suggestAlternative: "destination:backward";
213}
Note: See TracBrowser for help on using the repository browser.