source: josm/trunk/data/validator/relation.mapcss@ 11263

Last change on this file since 11263 was 11146, checked in by Klumbumbus, 8 years ago

see #13804 - a bit more grouping in the validator tree, small adjustments to a few validator rules

  • Property svn:eol-style set to native
File size: 1.4 KB
Line 
1/* relation types */
2
3relation[!type] {
4 throwError: tr("relation without type");
5 assertMatch: "relation name=Foo";
6 assertNoMatch: "relation type=route name=Foo";
7}
8
9/* from http://wiki.openstreetmap.org/wiki/Types_of_relation */
10/* see also #9071 */
11relation[type=route][!route],
12relation[type=route_master][!route_master],
13relation[type=restriction][!/^restriction/], /* see #11586 */
14relation[type=boundary][!boundary],
15relation[type=public_transport][!public_transport],
16relation[type=waterway][!waterway],
17relation[type=enforcement][!enforcement] {
18 throwWarning: tr("{0} relation without {0} tag", "{1.key}");
19 group: tr("missing tag");
20 assertMatch: "relation type=route";
21 assertNoMatch: "relation type=route route=train";
22 assertMatch: "relation type=route_master";
23 assertNoMatch: "relation type=route_master route_master=train";
24 assertMatch: "relation type=restriction";
25 assertNoMatch: "relation type=restriction restriction=no_left_turn";
26 assertMatch: "relation type=boundary";
27 assertNoMatch: "relation type=boundary boundary=administrative";
28 assertNoMatch: "relation type=site site=administrative";
29 assertMatch: "relation type=public_transport";
30 assertNoMatch: "relation type=public_transport public_transport=stop_area";
31 assertMatch: "relation type=waterway";
32 assertNoMatch: "relation type=waterway waterway=river";
33 assertMatch: "relation type=enforcement";
34 assertNoMatch: "relation type=enforcement enforcement=maxspeed";
35}
Note: See TracBrowser for help on using the repository browser.