1 | /* relation types */
|
---|
2 |
|
---|
3 | relation[!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 */
|
---|
11 | relation[type=route][!route],
|
---|
12 | relation[type=route_master][!route_master],
|
---|
13 | relation[type=boundary][!boundary][!disused:boundary],
|
---|
14 | relation[type=public_transport][!public_transport],
|
---|
15 | relation[type=waterway][!waterway],
|
---|
16 | relation[type=enforcement][!enforcement] {
|
---|
17 | throwWarning: tr("{0} relation without {0} tag", "{1.key}");
|
---|
18 | group: tr("missing tag");
|
---|
19 | assertMatch: "relation type=route";
|
---|
20 | assertNoMatch: "relation type=route route=train";
|
---|
21 | assertMatch: "relation type=route_master";
|
---|
22 | assertNoMatch: "relation type=route_master route_master=train";
|
---|
23 | assertMatch: "relation type=boundary";
|
---|
24 | assertNoMatch: "relation type=boundary boundary=administrative";
|
---|
25 | assertNoMatch: "relation type=site site=administrative";
|
---|
26 | assertMatch: "relation type=public_transport";
|
---|
27 | assertNoMatch: "relation type=public_transport public_transport=stop_area";
|
---|
28 | assertMatch: "relation type=waterway";
|
---|
29 | assertNoMatch: "relation type=waterway waterway=river";
|
---|
30 | assertMatch: "relation type=enforcement";
|
---|
31 | assertNoMatch: "relation type=enforcement enforcement=maxspeed";
|
---|
32 | }
|
---|
33 |
|
---|
34 | /* #11586 */
|
---|
35 | relation[type=restriction][!/^restriction/]{
|
---|
36 | throwWarning: tr("{0} relation without {0} tag", "restriction");
|
---|
37 | group: tr("missing tag");
|
---|
38 | assertMatch: "relation type=restriction";
|
---|
39 | assertNoMatch: "relation type=restriction restriction=no_left_turn";
|
---|
40 | assertNoMatch: "relation type=restriction restriction:hgv=no_left_turn";
|
---|
41 | }
|
---|
42 |
|
---|
43 | /* #15208, #16242 */
|
---|
44 | relation[type=route][route=mtb ] > way[bicycle=no],
|
---|
45 | relation[type=route][route=bicycle] > way[bicycle=no],
|
---|
46 | relation[type=route][route=mtb ] > way[bicycle=use_sidepath],
|
---|
47 | relation[type=route][route=bicycle] > way[bicycle=use_sidepath] {
|
---|
48 | throwWarning: tr("way with {0} is part of a bicycle route relation", "{0.tag}");
|
---|
49 | }
|
---|