1 | /* {0} on a node, should be a way */
|
---|
2 | node[oneway],
|
---|
3 | node[bridge?],
|
---|
4 | node[sidewalk],
|
---|
5 | node[waterway=river],
|
---|
6 | node[waterway=riverbank],
|
---|
7 | node[waterway=canal],
|
---|
8 | node[waterway=wadi],
|
---|
9 | node[waterway=stream],
|
---|
10 | node[waterway=ditch],
|
---|
11 | node[natural=coastline],
|
---|
12 | node[natural=ridge],
|
---|
13 | node[natural=tree_row] {
|
---|
14 | throwWarning: tr("{0} on a node. Should be used on a way.", "{0.key}");
|
---|
15 | assertMatch: "node oneway=-1";
|
---|
16 | assertNoMatch: "way oneway=-1";
|
---|
17 | assertMatch: "node bridge=yes";
|
---|
18 | assertNoMatch: "node bridge=13";
|
---|
19 | }
|
---|
20 |
|
---|
21 | /* {0} on a node, should be an area; see ticket #10679 */
|
---|
22 | node[landuse],
|
---|
23 | node[natural=scree],
|
---|
24 | node[natural=scrub],
|
---|
25 | node[natural=fell],
|
---|
26 | node[natural=heath],
|
---|
27 | node[natural=wood],
|
---|
28 | node[natural=grassland],
|
---|
29 | node[natural=wetland],
|
---|
30 | node[natural=water],
|
---|
31 | node[natural=mud],
|
---|
32 | node[natural=beach],
|
---|
33 | node[natural=sand],
|
---|
34 | node[natural=wood],
|
---|
35 | node[natural=bare_rock],
|
---|
36 | node[waterway=riverbank],
|
---|
37 | node[source:outline] {
|
---|
38 | throwWarning: tr("{0} on a node. Should be drawn as an area.", "{0.tag}");
|
---|
39 | }
|
---|
40 |
|
---|
41 | /* see ticket:#10125 */
|
---|
42 | node[source:geometry] {
|
---|
43 | throwWarning: tr("{0} on a node", "{0.key}");
|
---|
44 | fixChangeKey: "source:geometry => source:position";
|
---|
45 | }
|
---|
46 |
|
---|
47 | /* Building inside building (spatial test) */
|
---|
48 | *[building][building!~/no|entrance/][any(tag("layer"),"0") = any(parent_tag("layer"),"0")] ∈
|
---|
49 | *[building][building!~/no|entrance/] {
|
---|
50 | throwWarning: tr("Building inside building");
|
---|
51 | }
|
---|
52 |
|
---|
53 | /* Overlapping areas (spatial test) */
|
---|
54 | area[natural =~ /^(water|wetland|coastline)$/], area[landuse=reservoir] {
|
---|
55 | set water_area;
|
---|
56 | }
|
---|
57 |
|
---|
58 | /* area:closed:areaStyle.water_area ⧉ area:closed:areaStyle.water_area -- does not work for now -- see ticket#10215 */
|
---|
59 | area:closed:areaStyle[natural =~ /^(water|wetland|coastline)$/] ⧉ area:closed:areaStyle.water_area,
|
---|
60 | area:closed:areaStyle[landuse=reservoir] ⧉ area:closed:areaStyle.water_area {
|
---|
61 | throwWarning: tr("Overlapping Water Areas");
|
---|
62 | }
|
---|
63 |
|
---|
64 | area:closed:areaStyle ⧉ area:closed:areaStyle {
|
---|
65 | throwOther: tr("Overlapping Areas");
|
---|
66 | }
|
---|
67 |
|
---|
68 | /* see ticket #9311 */
|
---|
69 | node[amenity=parking]["capacity:disabled" !~ /^(yes|[0-9]+)$/] ∈ *[amenity=parking] {
|
---|
70 | throwWarning: tr("{0} inside {1}", "amenity=parking", "amenity=parking");
|
---|
71 | }
|
---|
72 |
|
---|
73 | /* see ticket #9556 */
|
---|
74 | area:closed:areaStyle[tag("natural") = parent_tag("natural")] ⧉ area:closed:areaStyle[natural] {
|
---|
75 | throwWarning: tr("Overlapping Identical Natural Areas");
|
---|
76 | }
|
---|
77 |
|
---|
78 | area:closed:areaStyle[tag("landuse") = parent_tag("landuse")] ⧉ area:closed:areaStyle[landuse] {
|
---|
79 | throwWarning: tr("Overlapping Identical Landuses");
|
---|
80 | }
|
---|
81 |
|
---|
82 | /* see ticket:#9522 */
|
---|
83 | node[tag("amenity") = parent_tag("amenity")] ∈ *[amenity][amenity != parking] {
|
---|
84 | throwWarning: tr("{0} inside {1}", concat("amenity=", tag("amenity")), concat("amenity=", tag("amenity")));
|
---|
85 | }
|
---|
86 | node[tag("leisure") = parent_tag("leisure")] ∈ *[leisure] {
|
---|
87 | throwWarning: tr("{0} inside {1}", concat("leisure=", tag("leisure")), concat("leisure=", tag("leisure")));
|
---|
88 | }
|
---|
89 | node[tag("tourism") = parent_tag("tourism")] ∈ *[tourism] {
|
---|
90 | throwWarning: tr("{0} inside {1}", concat("tourism=", tag("tourism")), concat("tourism=", tag("tourism")));
|
---|
91 | }
|
---|
92 | node[tag("shop") = parent_tag("shop")] ∈ *[shop] {
|
---|
93 | throwWarning: tr("{0} inside {1}", concat("shop=", tag("shop")), concat("shop=", tag("shop")));
|
---|
94 | }
|
---|
95 | node[tag("power") = parent_tag("power")] ∈ *[power] {
|
---|
96 | throwWarning: tr("{0} inside {1}", concat("power=", tag("power")), concat("power=", tag("power")));
|
---|
97 | }
|
---|
98 |
|
---|
99 | /* see #10252 */
|
---|
100 | way[route=bus] {
|
---|
101 | throwWarning: tr("{0} on a way. Should be used in a relation", "{0.tag}");
|
---|
102 | }
|
---|
103 | node[route] {
|
---|
104 | throwWarning: tr("{0}=* on a node. Should be used in a relation", "{0.key}");
|
---|
105 | }
|
---|