Changeset 18199 in josm for trunk/resources
- Timestamp:
- 2021-09-08T00:58:22+02:00 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/resources/data/validator/relation.mapcss
r16255 r18199 9 9 /* from http://wiki.openstreetmap.org/wiki/Types_of_relation */ 10 10 /* see also #9071 */ 11 relation[type=boundary][!boundary][!disused:boundary], 12 relation[type=building][!building], 13 relation[type=destination_sign][!destination], 14 relation[type=enforcement][!enforcement], 15 relation[type=public_transport][!public_transport], 11 16 relation[type=route][!route], 12 17 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] { 18 relation[type=waterway][!waterway] { 17 19 throwWarning: tr("{0} relation without {0} tag", "{1.key}"); 18 20 group: tr("missing tag"); … … 44 46 relation[type=route][route=mtb ] > way[bicycle=no], 45 47 relation[type=route][route=bicycle] > way[bicycle=no], 48 relation[type=route][route=mtb ] > way[bicycle=private], 49 relation[type=route][route=bicycle] > way[bicycle=private], 46 50 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}"); 51 relation[type=route][route=bicycle] > way[bicycle=use_sidepath], 52 relation[type=route][route=fitness_trail] > way[foot=no], 53 relation[type=route][route=hiking ] > way[foot=no], 54 relation[type=route][route=running ] > way[foot=no], 55 relation[type=route][route=walking ] > way[foot=no], 56 relation[type=route][route=fitness_trail] > way[foot=private], 57 relation[type=route][route=hiking ] > way[foot=private], 58 relation[type=route][route=running ] > way[foot=private], 59 relation[type=route][route=walking ] > way[foot=private], 60 relation[type=route][route=fitness_trail] > way[foot=use_sidepath], 61 relation[type=route][route=hiking ] > way[foot=use_sidepath], 62 relation[type=route][route=running ] > way[foot=use_sidepath], 63 relation[type=route][route=walking ] > way[foot=use_sidepath], 64 relation[type=route][route=horse] > way[horse=no], 65 relation[type=route][route=horse] > way[horse=private], 66 relation[type=route][route=horse] > way[horse=use_sidepath] { 67 throwWarning: tr("way with {0} is part of a {1} route relation", "{0.tag}", "{0.key}"); 49 68 }
Note:
See TracChangeset
for help on using the changeset viewer.