source: josm/trunk/data/validator/geometry.mapcss@ 14454

Last change on this file since 14454 was 14454, checked in by Klumbumbus, 5 years ago

warn about door=* on ways

  • Property svn:eol-style set to native
File size: 13.8 KB
Line 
1/* {0} on a node, should be a way */
2node[area=no],
3node[oneway],
4node[bridge],
5node[sidewalk],
6node[footway],
7node[man_made=embankment],
8node[man_made=groyne],
9node[man_made=cutline],
10node[power=line],
11node[cutline],
12node[aerialway=cable_car],
13node[aerialway=gondola],
14node[aerialway=chair_lift],
15node[aerialway=mixed_lift],
16node[aerialway=drag_lift],
17node[aerialway=t-bar],
18node[aerialway=j-bar],
19node[aerialway=platter],
20node[aerialway=magic_carpet],
21node[aerialway=rope_tow],
22node[aerialway=goods],
23node[aeroway=taxiway],
24node[aeroway=runway],
25node[railway=rail],
26node[railway=narrow_gauge],
27node[railway=monorail],
28node[railway=preserved],
29node[railway=light_rail],
30node[railway=subway],
31node[railway=tram],
32node[railway=disused],
33node[railway=abandoned],
34node[waterway=river],
35node[waterway=canal],
36node[waterway=stream],
37node[waterway=ditch],
38node[waterway=drain],
39node[natural=coastline],
40node[natural=ridge],
41node[natural=valley],
42node[natural=tree_row] {
43 throwWarning: tr("{0} on a node. Should be used on a way.", "{0.tag}");
44 assertMatch: "node oneway=-1";
45 assertNoMatch: "way oneway=-1";
46 assertMatch: "node bridge=yes";
47 assertMatch: "node bridge=viaduct";
48}
49
50/* {0} on a node, should be a way or relation */
51node[boundary=administrative] {
52 throwWarning: tr("{0} on a node. Should be used on a way or relation.", "{0.tag}");
53}
54
55/* {0} on a node, should be an area; #10679 #16528 #16792 */
56node[golf=green],
57node[golf=bunker],
58node[golf=fairway],
59node[area=yes],
60node[landuse],
61node[natural=scree],
62node[natural=scrub],
63node[natural=fell],
64node[natural=heath],
65node[natural=wood],
66node[natural=grassland],
67node[natural=wetland],
68node[natural=water],
69node[natural=mud],
70node[natural=beach],
71node[natural=sand],
72node[natural=wood],
73node[natural=bare_rock],
74node[natural=glacier],
75node[waterway=riverbank],
76node[man_made=bridge],
77node[man_made=breakwater],
78node[aeroway=apron],
79node[power=plant],
80node[power=switchgear],
81node[building:part],
82node[source:outline] {
83 throwWarning: tr("{0} on a node. Should be drawn as an area.", "{0.tag}");
84}
85
86/* {0} on a node, should be a relation; Error level; see #10252, #10769, #14288 */
87node[type=multipolygon],
88node[route],
89node[restriction] {
90 throwError: tr("{0} on a node. Should be used in a relation", "{0.tag}");
91}
92
93/* {0} on a way, should be a node */
94way[entrance],
95way[door],
96way[railway=subway_entrance],
97way[man_made=survey_point],
98way[aeroway=holding_position],
99way[power=transformer],
100way[power=pole],
101way[power=catenary_mast],
102way[power=terminal],
103way[power=tower]!:closed,
104way[amenity=vending_machine],
105way[natural=peak],
106way[natural=saddle],
107way[natural=volcano],
108way[natural=tree],
109way[highway=give_way],
110way[highway=milestone],
111way[highway=mini_roundabout],
112way[highway=stop],
113way[highway=street_lamp],
114way[highway=traffic_signals],
115way[highway=turning_loop],
116way[highway=turning_circle],
117way[highway=motorway_junction] {
118 throwWarning: tr("{0} on a way. Should be used on a node.", "{0.tag}");
119}
120
121/* {0} on a way, should be a relation; see #15642, #10252, #14288 */
122way[restriction][restriction =~ /^(no_right_turn|no_left_turn|no_u_turn|no_straight_on|only_right_turn|only_left_turn|only_straight_on|no_entry|no_exit)$/],
123way[type=multipolygon],
124way[route=bus] {
125 throwError: tr("{0} on a way. Should be used in a relation", "{0.tag}");
126}
127
128/* #14395 */
129way >[index=1] node,
130way >[index=-1] node {
131 set first_last_node;
132}
133way[highway][area!=yes][!tunnel][!covered] > node {
134 set node_in_highway;
135}
136way[building][building!=no] > node.node_in_highway!.first_last_node {
137 throwWarning: tr("node connects highway and building");
138}
139
140/* #15035, must not warn for node 3815077900*/
141node[man_made!=monitoring_station][at(0.0,0.0)] {
142 throwError: tr("Object at Position 0.00E 0.00N. There is nothing at this position except an already mapped weather buoy.");
143 fixDeleteObject: this;
144}
145
146/* #12502 */
147node[leisure=park][natural=tree] {
148 throwWarning: tr("{0} together with {1} on a node. Remove {0}.", "{0.tag}", "{1.tag}");
149 group: tr("suspicious tag combination");
150 fixRemove: "leisure";
151}
152node[leisure=park][natural!=tree] {
153 throwWarning: tr("{0} on a node. Should be drawn as an area.", "{0.tag}");
154}
155
156/* see ticket:#10125 */
157node[source:geometry] {
158 throwWarning: tr("{0} on a node", "{0.key}");
159 fixChangeKey: "source:geometry => source:position";
160}
161
162/* Building inside building (spatial test) */
163*[building][building!~/no|entrance/][any(tag("layer"),"0") = any(parent_tag("layer"),"0")]
164*[building][building!~/no|entrance/] {
165 throwWarning: tr("Building inside building");
166}
167
168/* Overlapping areas (spatial test) */
169area[natural =~ /^(water|wetland|coastline)$/], area[landuse=reservoir] {
170 set water_area;
171}
172
173/* area:closed:areaStyle.water_area ⧉ area:closed:areaStyle.water_area -- does not work for now -- see ticket#10215 */
174area:closed:areaStyle[natural =~ /^(water|wetland|coastline)$/] area:closed:areaStyle.water_area,
175area:closed:areaStyle[landuse=reservoir] area:closed:areaStyle.water_area {
176 throwWarning: tr("Overlapping Water Areas");
177}
178
179area:closed:areaStyle area:closed:areaStyle {
180 throwOther: tr("Overlapping Areas");
181}
182
183/* see ticket #9311 */
184node[amenity=parking]["capacity:disabled" !~ /^(yes|[0-9]+)$/] *[amenity=parking] {
185 throwWarning: tr("{0} inside {1}", "amenity=parking", "amenity=parking");
186 group: tr("{0} inside {1}", "amenity", "amenity");
187}
188
189/* see ticket #9556 */
190area:closed:areaStyle[tag("natural") = parent_tag("natural")] area:closed:areaStyle[natural] {
191 throwWarning: tr("Overlapping Identical Natural Areas");
192}
193
194area:closed:areaStyle[landuse!=residential][tag("landuse") = parent_tag("landuse")] area:closed:areaStyle[landuse][landuse!=residential] {
195 throwWarning: tr("Overlapping Identical Landuses");
196}
197
198/* see ticket:#9522 */
199node[tag("amenity") = parent_tag("amenity")] *[amenity][amenity != parking] {
200 throwWarning: tr("{0} inside {1}", concat("amenity=", tag("amenity")), concat("amenity=", tag("amenity")));
201 group: tr("{0} inside {1}", "amenity", "amenity");
202}
203node[tag("leisure") = parent_tag("leisure")] *[leisure] {
204 throwWarning: tr("{0} inside {1}", concat("leisure=", tag("leisure")), concat("leisure=", tag("leisure")));
205 group: tr("{0} inside {1}", "leisure", "leisure");
206}
207node[tag("tourism") = parent_tag("tourism")] *[tourism] {
208 throwWarning: tr("{0} inside {1}", concat("tourism=", tag("tourism")), concat("tourism=", tag("tourism")));
209 group: tr("{0} inside {1}", "tourism", "tourism");
210}
211node[tag("shop") = parent_tag("shop")] *[shop] {
212 throwWarning: tr("{0} inside {1}", concat("shop=", tag("shop")), concat("shop=", tag("shop")));
213 group: tr("{0} inside {1}", "shop", "shop");
214}
215node[tag("power") = parent_tag("power")] *[power] {
216 throwWarning: tr("{0} inside {1}", concat("power=", tag("power")), concat("power=", tag("power")));
217 group: tr("{0} inside {1}", "power", "power");
218}
219
220/* isolated nodes which should be part of a way, see #10825, #15478 */
221node:unconnected:in-downloaded-area[entrance],
222node:unconnected:in-downloaded-area[traffic_calming],
223node:unconnected:in-downloaded-area[highway=passing_place],
224node:unconnected:in-downloaded-area[highway=mini_roundabout],
225node:unconnected:in-downloaded-area[highway=motorway_junction],
226node:unconnected:in-downloaded-area[highway=turning_loop],
227node:unconnected:in-downloaded-area[highway=turning_circle],
228node:unconnected:in-downloaded-area[highway=stop],
229node:unconnected:in-downloaded-area[highway=give_way],
230node:unconnected:in-downloaded-area[highway=traffic_signals],
231node:unconnected:in-downloaded-area[highway=crossing],
232node:unconnected:in-downloaded-area[crossing],
233node:unconnected:in-downloaded-area[highway=milestone],
234node:unconnected:in-downloaded-area[railway=milestone],
235node:unconnected:in-downloaded-area[railway=crossing],
236node:unconnected:in-downloaded-area[railway=level_crossing],
237node:unconnected:in-downloaded-area[railway=buffer_stop],
238node:unconnected:in-downloaded-area[public_transport=stop_position],
239node:unconnected:in-downloaded-area[aeroway=holding_position],
240node:unconnected:in-downloaded-area[noexit],
241node:unconnected:in-downloaded-area[waterway=dam],
242node:unconnected:in-downloaded-area[waterway=weir],
243node:unconnected:in-downloaded-area[waterway=waterfall],
244node:unconnected:in-downloaded-area[amenity=ferry_terminal],
245node:unconnected:in-downloaded-area[leisure=slipway],
246node:unconnected:in-downloaded-area[mountain_pass=yes],
247node:unconnected:in-downloaded-area[barrier=gate],
248node:unconnected:in-downloaded-area[barrier=lift_gate],
249node:unconnected:in-downloaded-area[barrier=swing_gate],
250node:unconnected:in-downloaded-area[barrier=toll_booth],
251node:unconnected:in-downloaded-area[barrier=turnstile],
252node:unconnected:in-downloaded-area[barrier=full-height_turnstile],
253node:unconnected:in-downloaded-area[barrier=motorcycle_barrier],
254node:unconnected:in-downloaded-area[barrier=rope],
255node:unconnected:in-downloaded-area[barrier=sally_port],
256node:unconnected:in-downloaded-area[barrier=spikes],
257node:unconnected:in-downloaded-area[barrier=stile],
258node:unconnected:in-downloaded-area[barrier=sump_buster],
259node:unconnected:in-downloaded-area[barrier=kerb],
260node:unconnected:in-downloaded-area[barrier=border_control],
261node:unconnected:in-downloaded-area[barrier=bump_gate],
262node:unconnected:in-downloaded-area[barrier=bus_trap],
263node:unconnected:in-downloaded-area[barrier=cattle_grid],
264node:unconnected:in-downloaded-area[barrier=chain],
265node:unconnected:in-downloaded-area[barrier=cycle_barrier],
266node:unconnected:in-downloaded-area[barrier=hampshire_gate],
267node:unconnected:in-downloaded-area[barrier=height_restrictor],
268node:unconnected:in-downloaded-area[barrier=debris] {
269 throwWarning: tr("{0}", "{2.tag}");
270 group: tr("isolated node which must be connected to a way");
271}
272
273/* #11127 */
274way[railway][bridge] > node,
275way[highway][bridge] > node {
276 set node_in_bridge;
277}
278way[waterway] > node.node_in_bridge {
279 throwWarning: tr("node connects waterway and bridge");
280}
281
282/* #11128, #14812, #15032 */
283way[highway] > node[tourism=information][information=guidepost] {
284 set guidepost;
285 throwOther: tr("{0} node connected to a highway", "{1.tag}");
286}
287way[highway] > node[amenity][!entrance][amenity!~/^(parking|parking_space|parking_entrance|motorcycle_parking|bicycle_parking|bus_station|car_wash|ferry_terminal|weighbridge|taxi)$/],
288way[highway] > node[building][!entrance],
289way[highway] > node[leisure][!entrance][leisure!=slipway],
290way[highway] > node[office][!entrance],
291way[highway] > node[shop][!entrance],
292way[highway] > node[tourism][!entrance][tourism!=viewpoint]!.guidepost.first_last_node:connection,
293way[highway] > node[tourism][!entrance][tourism!=viewpoint]!.guidepost!.first_last_node {
294 throwWarning: tr("{0} node connected to a highway", "{0.key}");
295}
296
297way[junction=roundabout]:righthandtraffic:clockwise,
298way[junction=roundabout]!:righthandtraffic:anticlockwise {
299 throwWarning: tr("suspicious roundabout direction");
300}
301
302/* #12496 */
303area:closed[place=islet][eval(areasize()) > 1500000] {
304 throwWarning: tr("{0} on a large area", "{1.tag}");
305 suggestAlternative: "place=island";
306 fixAdd: "place=island";
307}
308
309area:closed[place=island][eval(areasize()) < 500000] {
310 throwWarning: tr("{0} on a small area", "{1.tag}");
311 suggestAlternative: "place=islet";
312 fixAdd: "place=islet";
313}
314
315/* #15648 */
316way[place=island]!:closed {
317 throwError: tr("Way with {1} not closed.", "{0.tag}");
318}
319
320/* #12561 - building larger than Aalsmeer Flower Auction (518000) and Tesla factory (510000) */
321area:closed[building][building!=no][eval(areasize()) > 520000] {
322 throwError: tr("Too large building");
323}
324
325/* #12577 */
326way[power=line] > node,
327way[power=minor_line] > node,
328way[power=cable] > node {
329 set node_in_power_way;
330}
331way[!power][!building] > node.node_in_power_way {
332 throwWarning: tr("Node connects a power line or cable with an object which is not related to the power infrastructure.");
333}
334
335/* #12646, #12992 */
336way[waterway=~/^(stream|ditch|river|drain)$/]!:closed >[index=-1] node[natural!=sinkhole][natural!=cave_entrance]!:connection:in-downloaded-area {
337 throwWarning: tr("Waterway ends without a connection to another waterway or the direction of the waterway is wrong.");
338}
339
340/* #10717, #14535 */
341way:closed[natural=coastline] area[natural=water],
342way:closed[natural=coastline] area[waterway=riverbank] {
343 throwError: tr("Coastline inside {1}", "{0.tag}");
344}
345
346/* #10471 */
347way[waterway] > node[ford?] { set ford_on_waterway; }
348way[highway] > node[ford?] { set ford_on_highway; }
349node[ford?]:in-downloaded-area!.ford_on_waterway, node[ford?]:in-downloaded-area!.ford_on_highway {
350 throwWarning: tr("{0} should be on the node where {1} and {2} intersect", "ford", "highway", "waterway");
351}
352
353/* #13877 */
354area:closed[waterway = canal][area!=no],
355area:closed[waterway = drain][area!=no],
356area:closed[waterway = ditch][area!=no],
357area:closed[waterway = stream][area!=no],
358area:closed[waterway = river][area!=no] {
359 throwWarning: tr("{0} is the tag for the linear waterway. To tag the water area use {1} + {2} instead.", "{1.tag}", "natural=water", "water=*");
360}
361
362/* #15097 */
363way[highway][area!=yes] > node,
364way[man_made=pier] > node {
365 set node_in_highway_pier;
366}
367way[route=ferry][tunnel=yes] > node,
368way[route=ferry][bridge=yes] > node {
369 set node_in_ferry_bridge_tunnel;
370}
371way[route=ferry]!:closed >[index= 1] node!.node_in_highway_pier!.node_in_ferry_bridge_tunnel:in-downloaded-area,
372way[route=ferry]!:closed >[index=-1] node!.node_in_highway_pier!.node_in_ferry_bridge_tunnel:in-downloaded-area {
373 throwWarning: tr("Ferry route is not connected to the road network or branches.");
374}
375way[amenity=ferry_terminal] > node,
376way[man_made=pier] > node {
377 set node_in_terminal_pier;
378}
379way[route=ferry]!:closed >[index= 1] node[amenity!=ferry_terminal][man_made!=pier]!.node_in_terminal_pier!.node_in_ferry_bridge_tunnel:in-downloaded-area,
380way[route=ferry]!:closed >[index=-1] node[amenity!=ferry_terminal][man_made!=pier]!.node_in_terminal_pier!.node_in_ferry_bridge_tunnel:in-downloaded-area {
381 throwWarning: tr("Ferry route is not connected to a ferry terminal or branches.");
382}
Note: See TracBrowser for help on using the repository browser.