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

Last change on this file since 6788 was 6759, checked in by Don-vip, 10 years ago

fix #9612 - tagchecker: add power inside power test

File size: 2.3 KB
Line 
1/* {0} on a node */
2node[oneway],
3node[bridge?],
4node[source:geometry],
5node[source:outline] {
6 throwWarning: tr("{0} on a node", "{0.key}");
7 assertMatch: "node oneway=-1";
8 assertNoMatch: "way oneway=-1";
9 assertMatch: "node bridge=yes";
10 assertNoMatch: "node bridge=13";
11}
12
13/* Building inside building (spatial test) */
14*[building!~/no|entrance/][coalesce(tag("layer"),"0") = coalesce(parent_tag("layer"),"0")]
15*[building!~/no|entrance/] {
16 throwWarning: tr("Building inside building");
17}
18
19/* Overlapping areas (spatial test) */
20area[natural =~ /^(water|wetland|coastline)$/], area[landuse=reservoir] {
21 set water_area;
22}
23
24area:closed:areaStyle.water_area area:closed:areaStyle.water_area {
25 throwWarning: tr("Overlapping Water Areas");
26}
27
28area:closed:areaStyle area:closed:areaStyle {
29 throwOther: tr("Overlapping Areas");
30}
31
32/* see ticket #9311 */
33node[amenity=parking][!"capacity:disabled"] *[amenity=parking],
34node[amenity=parking]["capacity:disabled" !~ /^(yes|[0-9]+)$/] *[amenity=parking] {
35 throwWarning: tr("{0} inside {1}", "amenity=parking", "amenity=parking");
36}
37
38/* see ticket #9556 */
39area:closed:areaStyle[tag("natural") = parent_tag("natural")] area:closed:areaStyle[natural] {
40 throwWarning: tr("Overlapping Identical Natural Areas");
41}
42
43area:closed:areaStyle[tag("landuse") = parent_tag("landuse")] area:closed:areaStyle[landuse] {
44 throwWarning: tr("Overlapping Identical Landuses");
45}
46
47/* see ticket:#9522 */
48node[tag("amenity") = parent_tag("amenity")] *[amenity][amenity != parking] {
49 throwWarning: tr("{0} inside {1}", concat("amenity=", tag("amenity")), concat("amenity=", tag("amenity")));
50}
51node[tag("leisure") = parent_tag("leisure")] *[leisure] {
52 throwWarning: tr("{0} inside {1}", concat("leisure=", tag("leisure")), concat("leisure=", tag("leisure")));
53}
54node[tag("tourism") = parent_tag("tourism")] *[tourism] {
55 throwWarning: tr("{0} inside {1}", concat("tourism=", tag("tourism")), concat("tourism=", tag("tourism")));
56}
57node[tag("shop") = parent_tag("shop")] *[shop] {
58 throwWarning: tr("{0} inside {1}", concat("shop=", tag("shop")), concat("shop=", tag("shop")));
59}
60node[tag("power") = parent_tag("power")] *[power] {
61 throwWarning: tr("{0} inside {1}", concat("power=", tag("power")), concat("power=", tag("power")));
62}
Note: See TracBrowser for help on using the repository browser.