source: josm/trunk/resources/data/validator/geometry.mapcss@ 17253

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

fix #19981 - Warn about closed power=line way

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