| | 1 | Style [http://wiki.openstreetmap.org/wiki/Josm/styles/lane_features], right-hand-traffic, arrows |
| | 2 | {{{ |
| | 3 | meta { |
| | 4 | title: "Lanes and turn lanes for right-hand traffic, arrow version"; |
| | 5 | description: "Shown tags:: lanes, turn lanes, bus lanes, changing the lane, cycleways, sidepaths and lightning"; |
| | 6 | /* |
| | 7 | link: "http://wiki.openstreetmap.org/wiki/Key:parking:lane"; |
| | 8 | */ |
| | 9 | author: "Wolfgang Hinsch"; |
| | 10 | version: "0.4_2012-11-16"; |
| | 11 | license: "CC-BY-SA"; |
| | 12 | min-josm-version: "5576"; |
| | 13 | } |
| | 14 | |
| | 15 | meta[lang=de] |
| | 16 | { |
| | 17 | title: "Fahr- und Abbiegespuren für Rechtsverkehr, Version mit Abbiegepfeilen"; |
| | 18 | description: "Darstellung der Tags für: Fahrspuren, Abbiegespuren, Busspuren, Spurwechselverbote, Radwege, Bürgersteige und Straßenbeleuchtung"; |
| | 19 | } |
| | 20 | |
| | 21 | meta[lang=es] |
| | 22 | { |
| | 23 | title: "Carriles para circulación por la derecha, versión con flechas"; |
| | 24 | description: "Representación gráfica de los tags de carriles de tráfico, de girar, de autobús y de bicicleta; aceras y alumbrado público"; |
| | 25 | } |
| | 26 | |
| | 27 | /* Alle Straßen als gültig setzen, die entsprechende highway-Typen sind und ein tag für lanes gesetzt haben */ |
| | 28 | /* Mark all streets valid beeing an appropriate type of highway and having set a tag for lanes */ |
| | 29 | way[lanes][highway=motorway], |
| | 30 | way[lanes][highway=~/.*_link/], |
| | 31 | way[lanes][highway=trunk], |
| | 32 | way[lanes][highway=~/.*ary/], |
| | 33 | way[lanes][highway=unclassified], |
| | 34 | way[lanes][highway=service], |
| | 35 | way[lanes][highway=residential], |
| | 36 | way[lanes:forward][lanes:backward][highway=motorway], |
| | 37 | way[lanes:forward][lanes:backward][highway=~/.*_link/], |
| | 38 | way[lanes:forward][lanes:backward][highway=trunk], |
| | 39 | way[lanes:forward][lanes:backward][highway=~/.*ary/], |
| | 40 | way[lanes:forward][lanes:backward][highway=unclassified], |
| | 41 | way[lanes:forward][lanes:backward][highway=service], |
| | 42 | way[lanes:forward][lanes:backward][highway=residential] |
| | 43 | {ok: true; traffic_side : right; fontsize: 8;} |
| | 44 | /* Alternative: traffic_side : left für Linksverkehr */ |
| | 45 | |
| | 46 | /* Einbahnstraßen */ |
| | 47 | /* Oneways */ |
| | 48 | way[is_prop_set(ok)][oneway][oneway=yes], |
| | 49 | way[is_prop_set(ok)][oneway][oneway=-1] |
| | 50 | { einbahn: true;} |
| | 51 | |
| | 52 | /* Für alle Straßen Parameter lanes_ges, lanes_fw, lanes_bw, lanes_bth aus den Originalwerten setzen */ |
| | 53 | /* Setting properties lanes_ges (count of lanes total), lanes_fw (forward), lanes_bw, lanes_bth from the origial tags */ |
| | 54 | way[is_prop_set(ok)][lanes] { lanes_ges : tag(lanes);} |
| | 55 | way[is_prop_set(ok)]["lanes:forward"] { lanes_fw : tag("lanes:forward");} |
| | 56 | way[is_prop_set(ok)]["lanes:backward"] { lanes_bw : tag("lanes:backward");} |
| | 57 | way[is_prop_set(ok)]["lanes:both"] { lanes_bth : tag("lanes:both");} |
| | 58 | way[is_prop_set(ok)]["turn:lanes"] { turn_lanes: tag("turn:lanes");} |
| | 59 | |
| | 60 | /* Fehlende Parameter für Einbahnstraßen ergänzen */ |
| | 61 | /* complete missing properties of oneways */ |
| | 62 | way[lanes][!"lanes:backward"][!"lanes:both"][!"lanes:forward"][oneway][oneway=yes] { lanes_fw : prop(lanes_ges); lanes_bw : 0; lanes_bth: 0;} |
| | 63 | way[lanes][!"lanes:backward"][!"lanes:both"][!"lanes:forward"][oneway][oneway=-1] { lanes_bw : prop(lanes_ges); lanes_fw : 0; lanes_bth: 0;} |
| | 64 | way[!lanes][!"lanes:backward"][!"lanes:both"]["lanes:forward"][oneway][oneway=yes] { lanes_ges : prop(lanes_fw); lanes_bw : 0; lanes_bth: 0;} |
| | 65 | way[!lanes]["lanes:backward"][!"lanes:both"][!"lanes:forward"][oneway][oneway=-1] { lanes_ges : prop(lanes_bw); lanes_fw : 0; lanes_bth: 0;} |
| | 66 | |
| | 67 | /* Alle Straßen, lanes = forward + backward (forward, backward oder lanes fehlt) */ |
| | 68 | /* Complete properies of all streets if lanes, forward or backward is missing */ |
| | 69 | way[!lanes]["lanes:backward"][!"lanes:both"]["lanes:forward"] { lanes_ges : eval((prop(lanes_fw)) + (prop(lanes_bw))); lanes_bth: 0;} |
| | 70 | way[lanes]["lanes:backward"][!"lanes:both"][!"lanes:forward"] { lanes_fw : eval((prop(lanes_ges))- (prop(lanes_bw))); lanes_bth: 0;} |
| | 71 | way[lanes][!"lanes:backward"][!"lanes:both"]["lanes:forward"] { lanes_bw : eval((prop(lanes_ges))- (prop(lanes_fw))); lanes_bth: 0;} |
| | 72 | |
| | 73 | /* Alle Straßen, both ist definiert oder die drei anderen sind definiert */ |
| | 74 | /* Complete properties if tag lanes:both is set (both for lanes used in both directions */ |
| | 75 | way[!lanes]["lanes:backward"]["lanes:both"]["lanes:forward"] { lanes_ges : eval((prop(lanes_fw)) + (prop(lanes_bw)) + (prop(lanes_bth"))); } |
| | 76 | way[lanes][!"lanes:backward"]["lanes:both"]["lanes:forward"] { lanes_bw : eval((prop(lanes_ges))- (prop(lanes_fw)) - (prop(lanes_bth"))); } |
| | 77 | way[lanes]["lanes:backward"][!"lanes:both"]["lanes:forward"] { lanes_bth : eval((prop(lanes_ges))- (prop(lanes_fw)) - (prop(lanes_bw"))); } |
| | 78 | way[lanes]["lanes:backward"]["lanes:both"][!"lanes:forward"] { lanes_fw : eval((prop(lanes_ges))- (prop(lanes_bw)) - (prop(lanes_bth"))); } |
| | 79 | |
| | 80 | /* Alle Nicht-Einbahn-Straßen, nur lanes ist definiert */ |
| | 81 | /* completing properties of non-oneways, if only tag lanes is set */ |
| | 82 | /* Until now grafical display is linited to 8 lanes per direction */ |
| | 83 | way[!is_prop_set(einbahn)][lanes = 2][!"lanes:backward"][!"lanes:both"][!"lanes:forward"] { lanes_fw : 1; lanes_bw : 1; lanes_bth: 0;} |
| | 84 | way[!is_prop_set(einbahn)][lanes = 3][!"lanes:backward"][!"lanes:both"][!"lanes:forward"] { lanes_fw : 1; lanes_bw : 1; lanes_bth: 1;} |
| | 85 | way[!is_prop_set(einbahn)][lanes = 4][!"lanes:backward"][!"lanes:both"][!"lanes:forward"] { lanes_fw : 2; lanes_bw : 2; lanes_bth: 0;} |
| | 86 | way[!is_prop_set(einbahn)][lanes = 5][!"lanes:backward"][!"lanes:both"][!"lanes:forward"] { lanes_fw : 2; lanes_bw : 2; lanes_bth: 1;} |
| | 87 | way[!is_prop_set(einbahn)][lanes = 6][!"lanes:backward"][!"lanes:both"][!"lanes:forward"] { lanes_fw : 3; lanes_bw : 3; lanes_bth: 0;} |
| | 88 | way[!is_prop_set(einbahn)][lanes = 7][!"lanes:backward"][!"lanes:both"][!"lanes:forward"] { lanes_fw : 3; lanes_bw : 3; lanes_bth: 1;} |
| | 89 | way[!is_prop_set(einbahn)][lanes = 8][!"lanes:backward"][!"lanes:both"][!"lanes:forward"] { lanes_fw : 4; lanes_bw : 4; lanes_bth: 0;} |
| | 90 | way[!is_prop_set(einbahn)][lanes = 9][!"lanes:backward"][!"lanes:both"][!"lanes:forward"] { lanes_fw : 4; lanes_bw : 4; lanes_bth: 1;} |
| | 91 | way[!is_prop_set(einbahn)][lanes = 10][!"lanes:backward"][!"lanes:both"][!"lanes:forward"] { lanes_fw : 5; lanes_bw : 5; lanes_bth: 0;} |
| | 92 | way[!is_prop_set(einbahn)][lanes = 11][!"lanes:backward"][!"lanes:both"][!"lanes:forward"] { lanes_fw : 5; lanes_bw : 5; lanes_bth: 1;} |
| | 93 | way[!is_prop_set(einbahn)][lanes = 12][!"lanes:backward"][!"lanes:both"][!"lanes:forward"] { lanes_fw : 6; lanes_bw : 6; lanes_bth: 0;} |
| | 94 | way[!is_prop_set(einbahn)][lanes = 13][!"lanes:backward"][!"lanes:both"][!"lanes:forward"] { lanes_fw : 6; lanes_bw : 6; lanes_bth: 1;} |
| | 95 | way[!is_prop_set(einbahn)][lanes = 14][!"lanes:backward"][!"lanes:both"][!"lanes:forward"] { lanes_fw : 7; lanes_bw : 7; lanes_bth: 0;} |
| | 96 | way[!is_prop_set(einbahn)][lanes = 15][!"lanes:backward"][!"lanes:both"][!"lanes:forward"] { lanes_fw : 7; lanes_bw : 7; lanes_bth: 1;} |
| | 97 | way[!is_prop_set(einbahn)][lanes = 16][!"lanes:backward"][!"lanes:both"][!"lanes:forward"] { lanes_fw : 8; lanes_bw : 8; lanes_bth: 0;} |
| | 98 | way[!is_prop_set(einbahn)][lanes = 17][!"lanes:backward"][!"lanes:both"][!"lanes:forward"] { lanes_fw : 8; lanes_bw : 8; lanes_bth: 1;} |
| | 99 | way[!is_prop_set(einbahn)][lanes = 18][!"lanes:backward"][!"lanes:both"][!"lanes:forward"] { lanes_fw : 9; lanes_bw : 9; lanes_bth: 0;} |
| | 100 | way[!is_prop_set(einbahn)][lanes = 19][!"lanes:backward"][!"lanes:both"][!"lanes:forward"] { lanes_fw : 9; lanes_bw : 9; lanes_bth: 1;} |
| | 101 | way[!is_prop_set(einbahn)][lanes = 20][!"lanes:backward"][!"lanes:both"][!"lanes:forward"] { lanes_fw : 10; lanes_bw : 10; lanes_bth: 0;} |
| | 102 | |
| | 103 | /* Vermeidung negativer Werte bei Eingabefehlern */ |
| | 104 | /* Avoid negaitive values in case of input error */ |
| | 105 | ways[prop(lanes_ges) < 0] {lanes_ges : 0;} |
| | 106 | ways[prop(lanes_fw) < 0] {lanes_fw : 0;} |
| | 107 | ways[prop(lanes_bw) < 0] {lanes_bw : 0;} |
| | 108 | ways[prop(lanes_bth) < 0] {lanes_bth : 0;} |
| | 109 | |
| | 110 | /* bis Zoomlevel 17, keine Darstellung von Fahrspuren*/ |
| | 111 | /* Until zoomlevel 17, no display of lanes */ |
| | 112 | way|z1-17[is_prop_set(ok)] |
| | 113 | { |
| | 114 | b-set: 1; /* Spurbreite - size of lane */ |
| | 115 | casing-width: 1; |
| | 116 | } |
| | 117 | |
| | 118 | /* Zoomlevel 17-18, Fahrspuren, aber keine Abbiegepfeile */ |
| | 119 | /* Zoomlevel 17-18, lanes, but no turn lanes */ |
| | 120 | way|z17-18[is_prop_set(ok)] |
| | 121 | { |
| | 122 | b-set: 2; |
| | 123 | casing-width: 2; |
| | 124 | } |
| | 125 | |
| | 126 | /* Zoomlevel 18-19, Fahrspuren, aber keine Abbiegepfeile */ |
| | 127 | /* Zoomlevel 18-19, lanes, but no turn lanes */ |
| | 128 | way|z18-19[is_prop_set(ok)] |
| | 129 | { |
| | 130 | b-set: 6; |
| | 131 | casing-width: 3; |
| | 132 | } |
| | 133 | |
| | 134 | /* Zoomlevel ab 19, Fahrspuren und Abbiegepfeile */ |
| | 135 | /* Zoomlevel > 19, lanes and turn lanes */ |
| | 136 | way|z19-[is_prop_set(ok)] |
| | 137 | { |
| | 138 | b-set: 20; |
| | 139 | casing-width: 3; |
| | 140 | } |
| | 141 | |
| | 142 | /* Spurversatz wg. Mittellinie */ |
| | 143 | /* offset to calculate center line */ |
| | 144 | way|z17-[is_prop_set(ok)] |
| | 145 | { |
| | 146 | b2-set: eval(prop(b-set) / 2); |
| | 147 | } |
| | 148 | |
| | 149 | /* Grundstraßenbild */ |
| | 150 | /* basic street */ |
| | 151 | way[is_prop_set(ok)] |
| | 152 | { |
| | 153 | color: #404040; |
| | 154 | casing-color: white; |
| | 155 | width: eval(prop(lanes_ges) * (prop(b-set))); |
| | 156 | } |
| | 157 | |
| | 158 | /* Straßenbeleuchtung */ |
| | 159 | /* Lightning */ |
| | 160 | way[is_prop_set(ok)][lit=yes] {color: #707070;} |
| | 161 | |
| | 162 | /*------------------------------------------------------------------------------------------------------------------------*/ |
| | 163 | /* */ |
| | 164 | /* Fuß- und Radwege */ |
| | 165 | /* sidewalks and cycleways */ |
| | 166 | /* */ |
| | 167 | /*------------------------------------------------------------------------------------------------------------------------*/ |
| | 168 | /* Nur Fußweg rechts */ |
| | 169 | /* at right-hand side sidewalk only */ |
| | 170 | way|z19-[is_prop_set(ok)][sidewalk=~/both|right/][cycleway:both!=track][cycleway:right!=track] |
| | 171 | { |
| | 172 | right-casing-width: 5; |
| | 173 | right-casing-color: #FF4020; |
| | 174 | right-casing-offset: 10; |
| | 175 | right-casing-dashes: 1, 1; |
| | 176 | } |
| | 177 | |
| | 178 | /* Nur Radweg rechts */ |
| | 179 | /* at right-hand side cycleway only */ |
| | 180 | way|z19-[is_prop_set(ok)][sidewalk=left][cycleway:right=track], |
| | 181 | way|z19-[is_prop_set(ok)][sidewalk=left][cycleway:both=track], |
| | 182 | way|z19-[is_prop_set(ok)][!sidewalk][cycleway:right=track], |
| | 183 | way|z19-[is_prop_set(ok)][!sidewalk][cycleway:both=track], |
| | 184 | way|z19-[is_prop_set(ok)][!sidewalk][cycleway=track] /* Aus historischen Gründen/for historc reasons */ |
| | 185 | { |
| | 186 | right-casing-width: 10; |
| | 187 | right-casing-color: #0010FF; |
| | 188 | right-casing-offset: 0; |
| | 189 | right-casing-dashes: 1, 1; |
| | 190 | } |
| | 191 | |
| | 192 | /* Fuß- und Radweg rechts */ |
| | 193 | /* at right-hand side sidewalk and cycleway */ |
| | 194 | way|z19-[is_prop_set(ok)][sidewalk=~/both|right/][cycleway:right=track], |
| | 195 | way|z19-[is_prop_set(ok)][sidewalk=~/both|right/][cycleway:both=track], |
| | 196 | way|z19-[is_prop_set(ok)][sidewalk=~/both|right/][cycleway=track] |
| | 197 | { |
| | 198 | right-casing-width: 15; |
| | 199 | right-casing-color: #00F080; |
| | 200 | right-casing-offset: 0; |
| | 201 | right-casing-dashes: 1, 1; |
| | 202 | } |
| | 203 | |
| | 204 | /* Nur Fußweg links */ |
| | 205 | /* at left-hand side sidewalk only */ |
| | 206 | way|z19-[is_prop_set(ok)][sidewalk=~/both|left/][cycleway:both!=track][cycleway:left!=track] |
| | 207 | { |
| | 208 | left-casing-width: 10; |
| | 209 | left-casing-color: #FF4020; |
| | 210 | left-casing-offset: 10; |
| | 211 | left-casing-dashes: 1, 1; |
| | 212 | } |
| | 213 | |
| | 214 | /* Nur Radweg links */ |
| | 215 | /* at left-hand side cycleway only */ |
| | 216 | way|z19-[is_prop_set(ok)][sidewalk=left][cycleway:left=track], |
| | 217 | way|z19-[is_prop_set(ok)][sidewalk=left][cycleway:both=track], |
| | 218 | way|z19-[is_prop_set(ok)][!sidewalk][cycleway:left=track], |
| | 219 | way|z19-[is_prop_set(ok)][!sidewalk][cycleway:both=track], |
| | 220 | way|z19-[is_prop_set(ok)][!sidewalk][cycleway=track][oneway!=yes] |
| | 221 | { |
| | 222 | left-casing-width: 10; |
| | 223 | left-casing-color: #0010FF; |
| | 224 | left-casing-offset: 0; |
| | 225 | left-casing-dashes: 1, 1; |
| | 226 | } |
| | 227 | |
| | 228 | /* Fuß- und Radweg links */ |
| | 229 | /* at left-hand side cycleway and sidewalk */ |
| | 230 | way|z19-[is_prop_set(ok)][sidewalk=~/both|left/][cycleway:left=track], |
| | 231 | way|z19-[is_prop_set(ok)][sidewalk=~/both|left/][cycleway:both=track], |
| | 232 | way|z19-[is_prop_set(ok)][sidewalk=~/both|left/][cycleway=track][oneway!=yes] |
| | 233 | { |
| | 234 | left-casing-width: 15; |
| | 235 | left-casing-color: #00F080; |
| | 236 | left-casing-offset: 0; |
| | 237 | left-casing-dashes: 1, 1; |
| | 238 | } |
| | 239 | |
| | 240 | /*------------------------------------------------------------------------------------------------------------------------*/ |
| | 241 | /* */ |
| | 242 | /* Busspuren / bus lanes */ |
| | 243 | /* */ |
| | 244 | /*------------------------------------------------------------------------------------------------------------------------*/ |
| | 245 | /* Farbe für Busstraßen / defining the color */ |
| | 246 | way|z19-[is_prop_set(ok)][psv=yes] |
| | 247 | { |
| | 248 | color: #B08000; |
| | 249 | } |
| | 250 | |
| | 251 | /* Using tag access:lanes:[forward|backward], value psv */ |
| | 252 | way|z19-[access:lanes=~/^psv([|]|$)/], way|z19-[access:lanes:forward=~/^psv([|]|$)/] { bus1: true; } |
| | 253 | way|z19-[access:lanes=~/^([a-z;_]*[|]){1}psv([|]|$)/], way|z19-[access:lanes:forward=~/^([a-z;_]*[|]){1}psv([|]|$)/] { bus2: true; } |
| | 254 | way|z19-[access:lanes=~/^([a-z;_]*[|]){2}psv([|]|$)/], way|z19-[access:lanes:forward=~/^([a-z;_]*[|]){2}psv([|]|$)/] { bus3: true; } |
| | 255 | way|z19-[access:lanes=~/^([a-z;_]*[|]){3}psv([|]|$)/], way|z19-[access:lanes:forward=~/^([a-z;_]*[|]){3}psv([|]|$)/] { bus4: true; } |
| | 256 | way|z19-[access:lanes=~/^([a-z;_]*[|]){4}psv([|]|$)/], way|z19-[access:lanes:forward=~/^([a-z;_]*[|]){4}psv([|]|$)/] { bus5: true; } |
| | 257 | way|z19-[access:lanes=~/^([a-z;_]*[|]){5}psv([|]|$)/], way|z19-[access:lanes:forward=~/^([a-z;_]*[|]){5}psv([|]|$)/] { bus6: true; } |
| | 258 | way|z19-[access:lanes=~/^([a-z;_]*[|]){6}psv([|]|$)/], way|z19-[access:lanes:forward=~/^([a-z;_]*[|]){6}psv([|]|$)/] { bus7: true; } |
| | 259 | way|z19-[access:lanes=~/^([a-z;_]*[|]){7}psv([|]|$)/], way|z19-[access:lanes:forward=~/^([a-z;_]*[|]){7}psv([|]|$)/] { bus8: true; } |
| | 260 | way|z19-[access:lanes:backward=~/^psv([|]|$)/] { bus1b: true; } |
| | 261 | way|z19-[access:lanes:backward=~/^([a-z;_]*[|]){1}psv([|]|$)/] { bus2b: true; } |
| | 262 | way|z19-[access:lanes:backward=~/^([a-z;_]*[|]){2}psv([|]|$)/] { bus3b: true; } |
| | 263 | way|z19-[access:lanes:backward=~/^([a-z;_]*[|]){3}psv([|]|$)/] { bus4b: true; } |
| | 264 | way|z19-[access:lanes:backward=~/^([a-z;_]*[|]){4}psv([|]|$)/] { bus5b: true; } |
| | 265 | way|z19-[access:lanes:backward=~/^([a-z;_]*[|]){5}psv([|]|$)/] { bus6b: true; } |
| | 266 | way|z19-[access:lanes:backward=~/^([a-z;_]*[|]){6}psv([|]|$)/] { bus7b: true; } |
| | 267 | way|z19-[access:lanes:backward=~/^([a-z;_]*[|]){7}psv([|]|$)/] { bus8b: true; } |
| | 268 | |
| | 269 | way[is_prop_set(bus1, "default")]::Bus1 |
| | 270 | { |
| | 271 | color: #B08000; |
| | 272 | offset: eval((prop(lanes_ges, "default") * prop(b2-set, "default")) - (prop(lanes_bw, "default") * prop(b-set, "default")) - |
| | 273 | (prop(b-set, "default") * (0)) - prop(b2-set, "default")); |
| | 274 | width: eval(prop(b-set, "default") -4); |
| | 275 | casing-width: 0; |
| | 276 | object-z-index: 1.1; |
| | 277 | } |
| | 278 | |
| | 279 | way[is_prop_set(bus2, "default")]::Bus2 |
| | 280 | { |
| | 281 | color: #B08000; |
| | 282 | offset: eval((prop(lanes_ges, "default") * prop(b2-set, "default")) - (prop(lanes_bw, "default") * prop(b-set, "default")) - |
| | 283 | (prop(b-set, "default") * (1)) - prop(b2-set, "default")); |
| | 284 | width: eval(prop(b-set, "default") -4); |
| | 285 | casing-width: 0; |
| | 286 | object-z-index: 1.1; |
| | 287 | } |
| | 288 | |
| | 289 | way[is_prop_set(bus3, "default")]::Bus3 |
| | 290 | { |
| | 291 | color: #B08000; |
| | 292 | offset: eval((prop(lanes_ges, "default") * prop(b2-set, "default")) - (prop(lanes_bw, "default") * prop(b-set, "default")) - |
| | 293 | (prop(b-set, "default") * (2)) - prop(b2-set, "default")); |
| | 294 | width: eval(prop(b-set, "default") -4); |
| | 295 | casing-width: 0; |
| | 296 | object-z-index: 1.1; |
| | 297 | } |
| | 298 | |
| | 299 | way[is_prop_set(bus4, "default")]::Bus4 |
| | 300 | { |
| | 301 | color: #B08000; |
| | 302 | offset: eval((prop(lanes_ges, "default") * prop(b2-set, "default")) - (prop(lanes_bw, "default") * prop(b-set, "default")) - |
| | 303 | (prop(b-set, "default") * (3)) - prop(b2-set, "default")); |
| | 304 | width: eval(prop(b-set, "default") -4); |
| | 305 | casing-width: 0; |
| | 306 | object-z-index: 1.1; |
| | 307 | } |
| | 308 | |
| | 309 | way[is_prop_set(bus5, "default")]::Bus5 |
| | 310 | { |
| | 311 | color: #B08000; |
| | 312 | offset: eval((prop(lanes_ges, "default") * prop(b2-set, "default")) - (prop(lanes_bw, "default") * prop(b-set, "default")) - |
| | 313 | (prop(b-set, "default") * (4)) - prop(b2-set, "default")); |
| | 314 | width: eval(prop(b-set, "default") -4); |
| | 315 | casing-width: 0; |
| | 316 | object-z-index: 1.1; |
| | 317 | } |
| | 318 | |
| | 319 | way[is_prop_set(bus6, "default")]::Bus6 |
| | 320 | { |
| | 321 | color: #B08000; |
| | 322 | offset: eval((prop(lanes_ges, "default") * prop(b2-set, "default")) - (prop(lanes_bw, "default") * prop(b-set, "default")) - |
| | 323 | (prop(b-set, "default") * (5)) - prop(b2-set, "default")); |
| | 324 | width: eval(prop(b-set, "default") -4); |
| | 325 | casing-width: 0; |
| | 326 | object-z-index: 1.1; |
| | 327 | } |
| | 328 | |
| | 329 | way[is_prop_set(bus7, "default")]::Bus7 |
| | 330 | { |
| | 331 | color: #B08000; |
| | 332 | offset: eval((prop(lanes_ges, "default") * prop(b2-set, "default")) - (prop(lanes_bw, "default") * prop(b-set, "default")) - |
| | 333 | (prop(b-set, "default") * (6)) - prop(b2-set, "default")); |
| | 334 | width: eval(prop(b-set, "default") -4); |
| | 335 | casing-width: 0; |
| | 336 | object-z-index: 1.1; |
| | 337 | } |
| | 338 | |
| | 339 | way[is_prop_set(bus8, "default")]::Bus8 |
| | 340 | { |
| | 341 | color: #B08000; |
| | 342 | offset: eval((prop(lanes_ges, "default") * prop(b2-set, "default")) - (prop(lanes_bw, "default") * prop(b-set, "default")) - |
| | 343 | (prop(b-set, "default") * (7)) - prop(b2-set, "default")); |
| | 344 | width: eval(prop(b-set, "default") -4); |
| | 345 | casing-width: 0; |
| | 346 | object-z-index: 1.1; |
| | 347 | } |
| | 348 | |
| | 349 | way[is_prop_set(bus1b, "default")]::Bus1b |
| | 350 | { |
| | 351 | color: #B08000; |
| | 352 | offset: eval((prop(lanes_ges, "default") * prop(b2-set, "default")) - (prop(b2-set, "default") *1) - (prop(b-set, "default") * (prop(lanes_bw, "default") -1))); |
| | 353 | width: eval(prop(b-set, "default") -4); |
| | 354 | casing-width: 0; |
| | 355 | object-z-index: 1.1; |
| | 356 | } |
| | 357 | |
| | 358 | way[is_prop_set(bus2b, "default")]::Bus2b |
| | 359 | { |
| | 360 | color: #B08000; |
| | 361 | offset: eval((prop(lanes_ges, "default") * prop(b2-set, "default")) - (prop(b2-set, "default") *1) - (prop(b-set, "default") * (prop(lanes_bw, "default") -2))); |
| | 362 | width: eval(prop(b-set, "default") -4); |
| | 363 | casing-width: 0; |
| | 364 | object-z-index: 1.1; |
| | 365 | } |
| | 366 | |
| | 367 | way[is_prop_set(bus3b, "default")]::Bus3b |
| | 368 | { |
| | 369 | color: #B08000; |
| | 370 | offset: eval((prop(lanes_ges, "default") * prop(b2-set, "default")) - (prop(b2-set, "default") *1) - (prop(b-set, "default") * (prop(lanes_bw, "default") -3))); |
| | 371 | width: eval(prop(b-set, "default") -4); |
| | 372 | casing-width: 0; |
| | 373 | object-z-index: 1.1; |
| | 374 | } |
| | 375 | |
| | 376 | way[is_prop_set(bus4b, "default")]::Bus4b |
| | 377 | { |
| | 378 | color: #B08000; |
| | 379 | offset: eval((prop(lanes_ges, "default") * prop(b2-set, "default")) - (prop(b2-set, "default") *1) - (prop(b-set, "default") * (prop(lanes_bw, "default") -4))); |
| | 380 | width: eval(prop(b-set, "default") -4); |
| | 381 | casing-width: 0; |
| | 382 | object-z-index: 1.1; |
| | 383 | } |
| | 384 | |
| | 385 | way[is_prop_set(bus5b, "default")]::Bus5b |
| | 386 | { |
| | 387 | color: #B08000; |
| | 388 | offset: eval((prop(lanes_ges, "default") * prop(b2-set, "default")) - (prop(b2-set, "default") *1) - (prop(b-set, "default") * (prop(lanes_bw, "default") -5))); |
| | 389 | width: eval(prop(b-set, "default") -4); |
| | 390 | casing-width: 0; |
| | 391 | object-z-index: 1.1; |
| | 392 | } |
| | 393 | |
| | 394 | way[is_prop_set(bus6b, "default")]::Bus6b |
| | 395 | { |
| | 396 | color: #B08000; |
| | 397 | offset: eval((prop(lanes_ges, "default") * prop(b2-set, "default")) - (prop(b2-set, "default") *1) - (prop(b-set, "default") * (prop(lanes_bw, "default") -6))); |
| | 398 | width: eval(prop(b-set, "default") -4); |
| | 399 | casing-width: 0; |
| | 400 | object-z-index: 1.1; |
| | 401 | } |
| | 402 | |
| | 403 | way[is_prop_set(bus7b, "default")]::Bus7b |
| | 404 | { |
| | 405 | color: #B08000; |
| | 406 | offset: eval((prop(lanes_ges, "default") * prop(b2-set, "default")) - (prop(b2-set, "default") *1) - (prop(b-set, "default") * (prop(lanes_bw, "default") -7))); |
| | 407 | width: eval(prop(b-set, "default") -4); |
| | 408 | casing-width: 0; |
| | 409 | object-z-index: 1.1; |
| | 410 | } |
| | 411 | |
| | 412 | way[is_prop_set(bus8b, "default")]::Bus8b |
| | 413 | { |
| | 414 | color: #B08000; |
| | 415 | offset: eval((prop(lanes_ges, "default") * prop(b2-set, "default")) - (prop(b2-set, "default") *1) - (prop(b-set, "default") * (prop(lanes_bw, "default") -8))); |
| | 416 | width: eval(prop(b-set, "default") -4); |
| | 417 | casing-width: 0; |
| | 418 | object-z-index: 1.1; |
| | 419 | } |
| | 420 | |
| | 421 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 422 | /* */ |
| | 423 | /* Fahrbahn-Trennlinien, wenn der Spurwechsel unbegrenzt möglich ist (keine change:lanes) */ |
| | 424 | /* road painting, if changing the lane is not linited (no change:lanes) */ |
| | 425 | /* */ |
| | 426 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 427 | way|z17-[is_prop_set(ok, "default")][prop(lanes_ges, "default") > 1][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Fahrspur_1, |
| | 428 | way|z17-[is_prop_set(ok, "default")][prop(lanes_ges, "default") > 2][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Fahrspur_2, |
| | 429 | way|z17-[is_prop_set(ok, "default")][prop(lanes_ges, "default") > 3][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Fahrspur_3, |
| | 430 | way|z17-[is_prop_set(ok, "default")][prop(lanes_ges, "default") > 4][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Fahrspur_4, |
| | 431 | way|z17-[is_prop_set(ok, "default")][prop(lanes_ges, "default") > 5][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Fahrspur_5, |
| | 432 | way|z17-[is_prop_set(ok, "default")][prop(lanes_ges, "default") > 6][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Fahrspur_6, |
| | 433 | way|z17-[is_prop_set(ok, "default")][prop(lanes_ges, "default") > 7][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Fahrspur_7, |
| | 434 | way|z17-[is_prop_set(ok, "default")][prop(lanes_ges, "default") > 8][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Fahrspur_8, |
| | 435 | way|z17-[is_prop_set(ok, "default")][prop(lanes_ges, "default") > 9][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Fahrspur_9, |
| | 436 | way|z17-[is_prop_set(ok, "default")][prop(lanes_ges, "default") > 10][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Fahrspur_10, |
| | 437 | way|z17-[is_prop_set(ok, "default")][prop(lanes_ges, "default") > 11][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Fahrspur_11, |
| | 438 | way|z17-[is_prop_set(ok, "default")][prop(lanes_ges, "default") > 12][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Fahrspur_12, |
| | 439 | way|z17-[is_prop_set(ok, "default")][prop(lanes_ges, "default") > 13][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Fahrspur_13, |
| | 440 | way|z17-[is_prop_set(ok, "default")][prop(lanes_ges, "default") > 14][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Fahrspur_14, |
| | 441 | way|z17-[is_prop_set(ok, "default")][prop(lanes_ges, "default") > 15][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Fahrspur_15, |
| | 442 | way|z17-[is_prop_set(ok, "default")][prop(lanes_ges, "default") > 16][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Fahrspur_16 |
| | 443 | { |
| | 444 | color: white; |
| | 445 | width: 1; |
| | 446 | offset: eval((prop(lanes_ges, "default") * (prop(b2-set, "default"))) - (prop(b-set, "default"))); |
| | 447 | object-z-index: 2.0; |
| | 448 | dashes: 10, 10; |
| | 449 | } |
| | 450 | |
| | 451 | way|z17-[is_prop_set(ok, "default")][prop(lanes_ges, "default") > 2][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Fahrspur_2 |
| | 452 | { offset: eval((prop(lanes_ges, "default") * (prop(b2-set, "default"))) - (prop(b-set, "default") *2)); } |
| | 453 | |
| | 454 | way|z17-[is_prop_set(ok, "default")][prop(lanes_ges, "default") > 3][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Fahrspur_3 |
| | 455 | { offset: eval((prop(lanes_ges, "default") * (prop(b2-set, "default"))) - (prop(b-set, "default") *3)); } |
| | 456 | |
| | 457 | way|z17-[is_prop_set(ok, "default")][prop(lanes_ges, "default") > 4][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Fahrspur_4 |
| | 458 | { offset: eval((prop(lanes_ges, "default") * (prop(b2-set, "default"))) - (prop(b-set, "default") *4)); } |
| | 459 | |
| | 460 | way|z17-[is_prop_set(ok, "default")][prop(lanes_ges, "default") > 5][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Fahrspur_5 |
| | 461 | { offset: eval((prop(lanes_ges, "default") * (prop(b2-set, "default"))) - (prop(b-set, "default") *5)); } |
| | 462 | |
| | 463 | way|z17-[is_prop_set(ok, "default")][prop(lanes_ges, "default") > 6][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Fahrspur_6 |
| | 464 | { offset: eval((prop(lanes_ges, "default") * (prop(b2-set, "default"))) - (prop(b-set, "default") *6)); } |
| | 465 | |
| | 466 | way|z17-[is_prop_set(ok, "default")][prop(lanes_ges, "default") > 7][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Fahrspur_7 |
| | 467 | { offset: eval((prop(lanes_ges, "default") * (prop(b2-set, "default"))) - (prop(b-set, "default") *7)); } |
| | 468 | |
| | 469 | way|z17-[is_prop_set(ok, "default")][prop(lanes_ges, "default") > 8][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Fahrspur_8 |
| | 470 | { offset: eval((prop(lanes_ges, "default") * (prop(b2-set, "default"))) - (prop(b-set, "default") *8)); } |
| | 471 | |
| | 472 | way|z17-[is_prop_set(ok, "default")][prop(lanes_ges, "default") > 9][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Fahrspur_9 |
| | 473 | { offset: eval((prop(lanes_ges, "default") * (prop(b2-set, "default"))) - (prop(b-set, "default") *9)); } |
| | 474 | |
| | 475 | way|z17-[is_prop_set(ok, "default")][prop(lanes_ges, "default") > 10][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Fahrspur_10 |
| | 476 | { offset: eval((prop(lanes_ges, "default") * (prop(b2-set, "default"))) - (prop(b-set, "default") *10)); } |
| | 477 | |
| | 478 | way|z17-[is_prop_set(ok, "default")][prop(lanes_ges, "default") > 11][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Fahrspur_11 |
| | 479 | { offset: eval((prop(lanes_ges, "default") * (prop(b2-set, "default"))) - (prop(b-set, "default") *11)); } |
| | 480 | |
| | 481 | way|z17-[is_prop_set(ok, "default")][prop(lanes_ges, "default") > 12][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Fahrspur_12 |
| | 482 | { offset: eval((prop(lanes_ges, "default") * (prop(b2-set, "default"))) - (prop(b-set, "default") *12)); } |
| | 483 | |
| | 484 | way|z17-[is_prop_set(ok, "default")][prop(lanes_ges, "default") > 13][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Fahrspur_13 |
| | 485 | { offset: eval((prop(lanes_ges, "default") * (prop(b2-set, "default"))) - (prop(b-set, "default") *13)); } |
| | 486 | |
| | 487 | way|z17-[is_prop_set(ok, "default")][prop(lanes_ges, "default") > 14][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Fahrspur_14 |
| | 488 | { offset: eval((prop(lanes_ges, "default") * (prop(b2-set, "default"))) - (prop(b-set, "default") *14)); } |
| | 489 | |
| | 490 | way|z17-[is_prop_set(ok, "default")][prop(lanes_ges, "default") > 15][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Fahrspur_15 |
| | 491 | { offset: eval((prop(lanes_ges, "default") * (prop(b2-set, "default"))) - (prop(b-set, "default") *15)); } |
| | 492 | |
| | 493 | way|z17-[is_prop_set(ok, "default")][prop(lanes_ges, "default") > 16][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Fahrspur_16 |
| | 494 | { offset: eval((prop(lanes_ges, "default") * (prop(b2-set, "default"))) - (prop(b-set, "default") *16)); } |
| | 495 | |
| | 496 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bth, "default") > 0][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Begegnungsspur |
| | 497 | { |
| | 498 | color: #A0A020; |
| | 499 | width: eval(prop(b-set, "default") * prop(lanes_bth, "default")); |
| | 500 | offset: eval(((prop(lanes_ges, "default")) * (prop(b2-set, "default"))) - ((prop(b-set, "default")) * (prop("lanes_bw", "default"))) - (((prop(b-set, "default")) * (prop(lanes_bth, "default"))) / 2)); |
| | 501 | object-z-index: 2.5; |
| | 502 | } |
| | 503 | |
| | 504 | /* Centerline */ |
| | 505 | way|z17-[is_prop_set(ok, "default")][!is_prop_set(einbahn, "default")][prop(lanes_ges, "default")>1][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Mittelstrich_1 |
| | 506 | { |
| | 507 | color: white; |
| | 508 | width: 3; |
| | 509 | lanes_bw: 2; |
| | 510 | offset: eval(((prop(lanes_ges, "default")) * (prop(b2-set, "default"))) - ((prop(b-set, "default")) * (prop(lanes_bw, "default")))); |
| | 511 | dashes: 10, 10; |
| | 512 | object-z-index: 3.0; |
| | 513 | } |
| | 514 | |
| | 515 | /* Centerline2 if # of lanes is odd and no lanes:forward defined */ |
| | 516 | way|z17-[is_prop_set(ok, "default")][!is_prop_set(einbahn, "default")][prop(lanes_ges, "default")>2][prop(lanes_bth, "default") > 0][!change:lanes][!change:lanes:forward][!change:lanes:backward]::Mittelstrich_2 |
| | 517 | { |
| | 518 | color: white; |
| | 519 | width: 3; |
| | 520 | offset: eval(((prop(lanes_ges, "default")) * ((prop(b2-set, "default")))) - ((prop(b-set, "default")) * ((prop("lanes_bw", "default")) + (prop(lanes_bth, "default"))))); |
| | 521 | dashes: 10, 10; |
| | 522 | object-z-index: 3.1; |
| | 523 | } |
| | 524 | |
| | 525 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 526 | /* */ |
| | 527 | /* Mit tag "change:lanes" definierte Fahrspurwechselmöglichkeiten, / Posibiliy of changing the lanes, defined with tag "change:lanes" */ |
| | 528 | /* ausgewertete Werte / evaluated values : yes, no, to_left, to_right */ |
| | 529 | /* */ |
| | 530 | /* Fahrspur 1 */ |
| | 531 | /* */ |
| | 532 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 533 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 0][change:lanes=~/^(yes|to_left)([|]|$)/][prop(lanes_bw, "default") > 0]::Fahrspur_1_F_L, |
| | 534 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 0][change:lanes:forward=~/^(yes|to_left)([|]|$)/][prop(lanes_bw, "default") > 0]::Fahrspur_1_F_L |
| | 535 | { |
| | 536 | color: white; |
| | 537 | width: 3; |
| | 538 | offset: eval((prop(lanes_ges, "default") * (prop(b2-set, "default"))) - (prop(b-set, "default") *0) - (prop(b-set, "default") * prop(lanes_bw, "default"))-2); |
| | 539 | dashes: 10, 10; |
| | 540 | object-z-index: 2.1; |
| | 541 | } |
| | 542 | |
| | 543 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 0][change:lanes=~/^(no|to_right)([|]|$)/][prop(lanes_bw, "default") > 0]::Fahrspur_1_F_L, |
| | 544 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 0][change:lanes:forward=~/^(no|to_right)([|]|$)/][prop(lanes_bw, "default") > 0]::Fahrspur_1_F_L |
| | 545 | { |
| | 546 | color: white; |
| | 547 | width: 3; |
| | 548 | offset: eval((prop(lanes_ges, "default") * (prop(b2-set, "default"))) - (prop(b-set, "default") *0) - (prop(b-set, "default") * prop(lanes_bw, "default"))-2); |
| | 549 | object-z-index: 2.1; |
| | 550 | } |
| | 551 | |
| | 552 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 1][change:lanes=~/^(yes|to_right)([|]|$)/]::Fahrspur_1_F_R, |
| | 553 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 1][change:lanes:forward=~/^(yes|to_right)([|]|$)/]::Fahrspur_1_F_R |
| | 554 | { |
| | 555 | color: white; |
| | 556 | width: 1; |
| | 557 | offset: eval((prop(lanes_ges, "default") * (prop(b2-set, "default"))) - (prop(b-set, "default") *1) - (prop(b-set, "default") * prop(lanes_bw, "default"))-(-1)); |
| | 558 | dashes: 10, 10; |
| | 559 | object-z-index: 2.1; |
| | 560 | } |
| | 561 | |
| | 562 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 1][change:lanes=~/^(no|to_left)([|]|$)/]::Fahrspur_1_F_R, |
| | 563 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 1][change:lanes:forward=~/^(no|to_left)([|]|$)/]::Fahrspur_1_F_R |
| | 564 | { |
| | 565 | color: white; |
| | 566 | width: 1; |
| | 567 | offset: eval((prop(lanes_ges, "default") * (prop(b2-set, "default"))) - (prop(b-set, "default") *1) - (prop(b-set, "default") * prop(lanes_bw, "default"))-(-1)); |
| | 568 | object-z-index: 2.1; |
| | 569 | } |
| | 570 | |
| | 571 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 0][change:lanes:backward=~/^(yes|to_left)([|]|$)/][prop(lanes_fw, "default") > 0]::Fahrspur_1_B_L |
| | 572 | { |
| | 573 | color: white; |
| | 574 | width: 3; |
| | 575 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*0)-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-(-2)); |
| | 576 | dashes: 10, 10; |
| | 577 | object-z-index: 2.1; |
| | 578 | } |
| | 579 | |
| | 580 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 0][change:lanes:backward=~/^(no|to_right)([|]|$)/][prop(lanes_fw, "default") > 0]::Fahrspur_1_B_L |
| | 581 | { |
| | 582 | color: white; |
| | 583 | width: 3; |
| | 584 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*0)-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-(-2)); |
| | 585 | object-z-index: 2.1; |
| | 586 | } |
| | 587 | |
| | 588 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 1][change:lanes:backward=~/^(yes|to_right)([|]|$)/]::Fahrspur_1_B_R |
| | 589 | { |
| | 590 | color: white; |
| | 591 | width: 1; |
| | 592 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*(-1))-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-1); |
| | 593 | dashes: 10, 10; |
| | 594 | object-z-index: 2.1; |
| | 595 | } |
| | 596 | |
| | 597 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 1][change:lanes:backward=~/^(no|to_left)([|]|$)/]::Fahrspur_1_B_R |
| | 598 | { |
| | 599 | color: white; |
| | 600 | width: 1; |
| | 601 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*(-1))-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-1); |
| | 602 | object-z-index: 2.1; |
| | 603 | } |
| | 604 | |
| | 605 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 606 | /* */ |
| | 607 | /* Fahrspur 2 */ |
| | 608 | /* */ |
| | 609 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 610 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 1][change:lanes=~/^([a-z_]*[|]){1}(yes|to_left)([|]|$)/]::Fahrspur_2_F_L, |
| | 611 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 1][change:lanes:forward=~/^([a-z_]*[|]){1}(yes|to_left)([|]|$)/]::Fahrspur_2_F_L |
| | 612 | { |
| | 613 | color: white; |
| | 614 | width: 1; |
| | 615 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*1)-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-1); |
| | 616 | dashes: 10, 10; |
| | 617 | object-z-index: 2.1; |
| | 618 | } |
| | 619 | |
| | 620 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 1][change:lanes=~/^([a-z_]*[|]){1}(no|to_right)([|]|$)/]::Fahrspur_2_F_L, |
| | 621 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 1][change:lanes:forward=~/^([a-z_]*[|]){1}(no|to_right)([|]|$)/]::Fahrspur_2_F_L |
| | 622 | { |
| | 623 | color: white; |
| | 624 | width: 1; |
| | 625 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*1)-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-1); |
| | 626 | object-z-index: 2.1; |
| | 627 | } |
| | 628 | |
| | 629 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 2][change:lanes=~/^([a-z_]*[|]){1}(yes|to_right)([|]|$)/]::Fahrspur_2_F_R, |
| | 630 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 2][change:lanes:forward=~/^([a-z_]*[|]){1}(yes|to_right)([|]|$)/]::Fahrspur_2_F_R |
| | 631 | { |
| | 632 | color: white; |
| | 633 | width: 1; |
| | 634 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*2)-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-(-1)); |
| | 635 | dashes: 10, 10; |
| | 636 | object-z-index: 2.1; |
| | 637 | } |
| | 638 | |
| | 639 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 2][change:lanes=~/^([a-z_]*[|]){1}(no|to_left)([|]|$)/]::Fahrspur_2_F_R, |
| | 640 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 2][change:lanes:forward=~/^([a-z_]*[|]){1}(no|to_left)([|]|$)/]::Fahrspur_2_F_R |
| | 641 | { |
| | 642 | color: white; |
| | 643 | width: 1; |
| | 644 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*2)-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-(-1)); |
| | 645 | object-z-index: 2.1; |
| | 646 | } |
| | 647 | |
| | 648 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 1][change:lanes:backward=~/^([a-z_]*[|]){1}(yes|to_left)([|]|$)/]::Fahrspur_2_B_L |
| | 649 | { |
| | 650 | color: white; |
| | 651 | width: 1; |
| | 652 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*(-1))-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-(-1)); |
| | 653 | dashes: 10, 10; |
| | 654 | object-z-index: 2.1; |
| | 655 | } |
| | 656 | |
| | 657 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 1][change:lanes:backward=~/^([a-z_]*[|]){1}(no|to_right)([|]|$)/]::Fahrspur_2_B_L |
| | 658 | { |
| | 659 | color: white; |
| | 660 | width: 1; |
| | 661 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*(-1))-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-(-1)); |
| | 662 | object-z-index: 2.1; |
| | 663 | } |
| | 664 | |
| | 665 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 2][change:lanes:backward=~/^([a-z_]*[|]){1}(yes|to_right)([|]|$)/]::Fahrspur_2_B_R |
| | 666 | { |
| | 667 | color: white; |
| | 668 | width: 1; |
| | 669 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*(-2))-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-1); |
| | 670 | dashes: 10, 10; |
| | 671 | object-z-index: 2.1; |
| | 672 | } |
| | 673 | |
| | 674 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 2][change:lanes:backward=~/^([a-z_]*[|]){1}(no|to_left)([|]|$)/]::Fahrspur_2_B_R |
| | 675 | { |
| | 676 | color: white; |
| | 677 | width: 1; |
| | 678 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*(-2))-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-1); |
| | 679 | object-z-index: 2.1; |
| | 680 | } |
| | 681 | |
| | 682 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 683 | /* */ |
| | 684 | /* Fahrspur 3 */ |
| | 685 | /* */ |
| | 686 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 687 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 2][change:lanes=~/^([a-z_]*[|]){2}(yes|to_left)([|]|$)/]::Fahrspur_3_F_L, |
| | 688 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 2][change:lanes:forward=~/^([a-z_]*[|]){2}(yes|to_left)([|]|$)/]::Fahrspur_3_F_L |
| | 689 | { |
| | 690 | color: white; |
| | 691 | width: 1; |
| | 692 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*2)-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-1); |
| | 693 | dashes: 10, 10; |
| | 694 | object-z-index: 2.1; |
| | 695 | } |
| | 696 | |
| | 697 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 2][change:lanes=~/^([a-z_]*[|]){2}(no|to_right)([|]|$)/]::Fahrspur_3_F_L, |
| | 698 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 2][change:lanes:forward=~/^([a-z_]*[|]){2}(no|to_right)([|]|$)/]::Fahrspur_3_F_L |
| | 699 | { |
| | 700 | color: white; |
| | 701 | width: 1; |
| | 702 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*2)-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-1); |
| | 703 | object-z-index: 2.1; |
| | 704 | } |
| | 705 | |
| | 706 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 3][change:lanes=~/^([a-z_]*[|]){2}(yes|to_right)([|]|$)/]::Fahrspur_3_F_R, |
| | 707 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 3][change:lanes:forward=~/^([a-z_]*[|]){2}(yes|to_right)([|]|$)/]::Fahrspur_3_F_R |
| | 708 | { |
| | 709 | color: white; |
| | 710 | width: 1; |
| | 711 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*3)-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-(-1)); |
| | 712 | dashes: 10, 10; |
| | 713 | object-z-index: 2.1; |
| | 714 | } |
| | 715 | |
| | 716 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 3][change:lanes=~/^([a-z_]*[|]){2}(no|to_left)([|]|$)/]::Fahrspur_3_F_R, |
| | 717 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 3][change:lanes:forward=~/^([a-z_]*[|]){2}(no|to_left)([|]|$)/]::Fahrspur_3_F_R |
| | 718 | { |
| | 719 | color: white; |
| | 720 | width: 1; |
| | 721 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*3)-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-(-1)); |
| | 722 | object-z-index: 2.1; |
| | 723 | } |
| | 724 | |
| | 725 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 2][change:lanes:backward=~/^([a-z_]*[|]){2}(yes|to_left)([|]|$)/]::Fahrspur_3_B_L |
| | 726 | { |
| | 727 | color: white; |
| | 728 | width: 1; |
| | 729 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*(-2))-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-(-1)); |
| | 730 | dashes: 10, 10; |
| | 731 | object-z-index: 2.1; |
| | 732 | } |
| | 733 | |
| | 734 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 2][change:lanes:backward=~/^([a-z_]*[|]){2}(no|to_right)([|]|$)/]::Fahrspur_3_B_L |
| | 735 | { |
| | 736 | color: white; |
| | 737 | width: 1; |
| | 738 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*(-2))-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-(-1)); |
| | 739 | object-z-index: 2.1; |
| | 740 | } |
| | 741 | |
| | 742 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 3][change:lanes:backward=~/^([a-z_]*[|]){2}(yes|to_right)([|]|$)/]::Fahrspur_3_B_R |
| | 743 | { |
| | 744 | color: white; |
| | 745 | width: 1; |
| | 746 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*(-3))-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-1); |
| | 747 | dashes: 10, 10; |
| | 748 | object-z-index: 2.1; |
| | 749 | } |
| | 750 | |
| | 751 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 3][change:lanes:backward=~/^([a-z_]*[|]){2}(no|to_left)([|]|$)/]::Fahrspur_3_B_R |
| | 752 | { |
| | 753 | color: white; |
| | 754 | width: 1; |
| | 755 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*(-3))-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-1); |
| | 756 | object-z-index: 2.1; |
| | 757 | } |
| | 758 | |
| | 759 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 760 | /* */ |
| | 761 | /* Fahrspur 4 */ |
| | 762 | /* */ |
| | 763 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 764 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 3][change:lanes=~/^([a-z_]*[|]){3}(yes|to_left)([|]|$)/]::Fahrspur_4_F_L, |
| | 765 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 3][change:lanes:forward=~/^([a-z_]*[|]){3}(yes|to_left)([|]|$)/]::Fahrspur_4_F_L |
| | 766 | { |
| | 767 | color: white; |
| | 768 | width: 1; |
| | 769 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*3)-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-1); |
| | 770 | dashes: 10, 10; |
| | 771 | object-z-index: 2.1; |
| | 772 | } |
| | 773 | |
| | 774 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 3][change:lanes=~/^([a-z_]*[|]){3}(no|to_right)([|]|$)/]::Fahrspur_4_F_L, |
| | 775 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 3][change:lanes:forward=~/^([a-z_]*[|]){3}(no|to_right)([|]|$)/]::Fahrspur_4_F_L |
| | 776 | { |
| | 777 | color: white; |
| | 778 | width: 1; |
| | 779 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*3)-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-1); |
| | 780 | object-z-index: 2.1; |
| | 781 | } |
| | 782 | |
| | 783 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 4][change:lanes=~/^([a-z_]*[|]){3}(yes|to_right)([|]|$)/]::Fahrspur_4_F_R, |
| | 784 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 4][change:lanes:forward=~/^([a-z_]*[|]){3}(yes|to_right)([|]|$)/]::Fahrspur_4_F_R |
| | 785 | { |
| | 786 | color: white; |
| | 787 | width: 1; |
| | 788 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*4)-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-(-1)); |
| | 789 | dashes: 10, 10; |
| | 790 | object-z-index: 2.1; |
| | 791 | } |
| | 792 | |
| | 793 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 4][change:lanes=~/^([a-z_]*[|]){3}(no|to_left)([|]|$)/]::Fahrspur_4_F_R, |
| | 794 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 4][change:lanes:forward=~/^([a-z_]*[|]){3}(no|to_left)([|]|$)/]::Fahrspur_4_F_R |
| | 795 | { |
| | 796 | color: white; |
| | 797 | width: 1; |
| | 798 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*4)-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-(-1)); |
| | 799 | object-z-index: 2.1; |
| | 800 | } |
| | 801 | |
| | 802 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 3][change:lanes:backward=~/^([a-z_]*[|]){3}(yes|to_left)([|]|$)/]::Fahrspur_4_B_L |
| | 803 | { |
| | 804 | color: white; |
| | 805 | width: 1; |
| | 806 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*(-3))-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-(-1)); |
| | 807 | dashes: 10, 10; |
| | 808 | object-z-index: 2.1; |
| | 809 | } |
| | 810 | |
| | 811 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 3][change:lanes:backward=~/^([a-z_]*[|]){3}(no|to_right)([|]|$)/]::Fahrspur_4_B_L |
| | 812 | { |
| | 813 | color: white; |
| | 814 | width: 1; |
| | 815 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*(-3))-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-(-1)); |
| | 816 | object-z-index: 2.1; |
| | 817 | } |
| | 818 | |
| | 819 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 4][change:lanes:backward=~/^([a-z_]*[|]){3}(yes|to_right)([|]|$)/]::Fahrspur_4_B_R |
| | 820 | { |
| | 821 | color: white; |
| | 822 | width: 1; |
| | 823 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*(-4))-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-1); |
| | 824 | dashes: 10, 10; |
| | 825 | object-z-index: 2.1; |
| | 826 | } |
| | 827 | |
| | 828 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 4][change:lanes:backward=~/^([a-z_]*[|]){3}(no|to_left)([|]|$)/]::Fahrspur_4_B_R |
| | 829 | { |
| | 830 | color: white; |
| | 831 | width: 1; |
| | 832 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*(-4))-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-1); |
| | 833 | object-z-index: 2.1; |
| | 834 | } |
| | 835 | |
| | 836 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 837 | /* */ |
| | 838 | /* Fahrspur 5 */ |
| | 839 | /* */ |
| | 840 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 841 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 4][change:lanes=~/^([a-z_]*[|]){4}(yes|to_left)([|]|$)/]::Fahrspur_5_F_L, |
| | 842 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 4][change:lanes:forward=~/^([a-z_]*[|]){4}(yes|to_left)([|]|$)/]::Fahrspur_5_F_L |
| | 843 | { |
| | 844 | color: white; |
| | 845 | width: 1; |
| | 846 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*4)-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-1); |
| | 847 | dashes: 10, 10; |
| | 848 | object-z-index: 2.1; |
| | 849 | } |
| | 850 | |
| | 851 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 4][change:lanes=~/^([a-z_]*[|]){4}(no|to_right)([|]|$)/]::Fahrspur_5_F_L, |
| | 852 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 4][change:lanes:forward=~/^([a-z_]*[|]){4}(no|to_right)([|]|$)/]::Fahrspur_5_F_L |
| | 853 | { |
| | 854 | color: white; |
| | 855 | width: 1; |
| | 856 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*4)-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-1); |
| | 857 | object-z-index: 2.1; |
| | 858 | } |
| | 859 | |
| | 860 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 5][change:lanes=~/^([a-z_]*[|]){4}(yes|to_right)([|]|$)/]::Fahrspur_5_F_R, |
| | 861 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 5][change:lanes:forward=~/^([a-z_]*[|]){4}(yes|to_right)([|]|$)/]::Fahrspur_5_F_R |
| | 862 | { |
| | 863 | color: white; |
| | 864 | width: 1; |
| | 865 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*5)-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-(-1)); |
| | 866 | dashes: 10, 10; |
| | 867 | object-z-index: 2.1; |
| | 868 | } |
| | 869 | |
| | 870 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 5][change:lanes=~/^([a-z_]*[|]){4}(no|to_left)([|]|$)/]::Fahrspur_5_F_R, |
| | 871 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 5][change:lanes:forward=~/^([a-z_]*[|]){4}(no|to_left)([|]|$)/]::Fahrspur_5_F_R |
| | 872 | { |
| | 873 | color: white; |
| | 874 | width: 1; |
| | 875 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*5)-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-(-1)); |
| | 876 | object-z-index: 2.1; |
| | 877 | } |
| | 878 | |
| | 879 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 4][change:lanes:backward=~/^([a-z_]*[|]){4}(yes|to_left)([|]|$)/]::Fahrspur_5_B_L |
| | 880 | { |
| | 881 | color: white; |
| | 882 | width: 1; |
| | 883 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*(-4))-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-(-1)); |
| | 884 | dashes: 10, 10; |
| | 885 | object-z-index: 2.1; |
| | 886 | } |
| | 887 | |
| | 888 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 4][change:lanes:backward=~/^([a-z_]*[|]){4}(no|to_right)([|]|$)/]::Fahrspur_5_B_L |
| | 889 | { |
| | 890 | color: white; |
| | 891 | width: 1; |
| | 892 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*(-4))-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-(-1)); |
| | 893 | object-z-index: 2.1; |
| | 894 | } |
| | 895 | |
| | 896 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 5][change:lanes:backward=~/^([a-z_]*[|]){4}(yes|to_right)([|]|$)/]::Fahrspur_5_B_R |
| | 897 | { |
| | 898 | color: white; |
| | 899 | width: 1; |
| | 900 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*(-5))-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-1); |
| | 901 | dashes: 10, 10; |
| | 902 | object-z-index: 2.1; |
| | 903 | } |
| | 904 | |
| | 905 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 5][change:lanes:backward=~/^([a-z_]*[|]){4}(no|to_left)([|]|$)/]::Fahrspur_5_B_R |
| | 906 | { |
| | 907 | color: white; |
| | 908 | width: 1; |
| | 909 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*(-5))-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-1); |
| | 910 | object-z-index: 2.1; |
| | 911 | } |
| | 912 | |
| | 913 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 914 | /* */ |
| | 915 | /* Fahrspur 6 */ |
| | 916 | /* */ |
| | 917 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 918 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 5][change:lanes=~/^([a-z_]*[|]){5}(yes|to_left)([|]|$)/]::Fahrspur_6_F_L, |
| | 919 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 5][change:lanes:forward=~/^([a-z_]*[|]){5}(yes|to_left)([|]|$)/]::Fahrspur_6_F_L |
| | 920 | { |
| | 921 | color: white; |
| | 922 | width: 1; |
| | 923 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*5)-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-1); |
| | 924 | dashes: 10, 10; |
| | 925 | object-z-index: 2.1; |
| | 926 | } |
| | 927 | |
| | 928 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 5][change:lanes=~/^([a-z_]*[|]){5}(no|to_right)([|]|$)/]::Fahrspur_6_F_L, |
| | 929 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 5][change:lanes:forward=~/^([a-z_]*[|]){5}(no|to_right)([|]|$)/]::Fahrspur_6_F_L |
| | 930 | { |
| | 931 | color: white; |
| | 932 | width: 1; |
| | 933 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*5)-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-1); |
| | 934 | object-z-index: 2.1; |
| | 935 | } |
| | 936 | |
| | 937 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 6][change:lanes=~/^([a-z_]*[|]){5}(yes|to_right)([|]|$)/]::Fahrspur_6_F_R, |
| | 938 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 6][change:lanes:forward=~/^([a-z_]*[|]){5}(yes|to_right)([|]|$)/]::Fahrspur_6_F_R |
| | 939 | { |
| | 940 | color: white; |
| | 941 | width: 1; |
| | 942 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*6)-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-(-1)); |
| | 943 | dashes: 10, 10; |
| | 944 | object-z-index: 2.1; |
| | 945 | } |
| | 946 | |
| | 947 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 6][change:lanes=~/^([a-z_]*[|]){5}(no|to_left)([|]|$)/]::Fahrspur_6_F_R, |
| | 948 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 6][change:lanes:forward=~/^([a-z_]*[|]){5}(no|to_left)([|]|$)/]::Fahrspur_6_F_R |
| | 949 | { |
| | 950 | color: white; |
| | 951 | width: 1; |
| | 952 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*6)-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-(-1)); |
| | 953 | object-z-index: 2.1; |
| | 954 | } |
| | 955 | |
| | 956 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 5][change:lanes:backward=~/^([a-z_]*[|]){5}(yes|to_left)([|]|$)/]::Fahrspur_6_B_L |
| | 957 | { |
| | 958 | color: white; |
| | 959 | width: 1; |
| | 960 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*(-5))-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-(-1)); |
| | 961 | dashes: 10, 10; |
| | 962 | object-z-index: 2.1; |
| | 963 | } |
| | 964 | |
| | 965 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 5][change:lanes:backward=~/^([a-z_]*[|]){5}(no|to_right)([|]|$)/]::Fahrspur_6_B_L |
| | 966 | { |
| | 967 | color: white; |
| | 968 | width: 1; |
| | 969 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*(-5))-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-(-1)); |
| | 970 | object-z-index: 2.1; |
| | 971 | } |
| | 972 | |
| | 973 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 6][change:lanes:backward=~/^([a-z_]*[|]){5}(yes|to_right)([|]|$)/]::Fahrspur_6_B_R |
| | 974 | { |
| | 975 | color: white; |
| | 976 | width: 1; |
| | 977 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*(-6))-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-1); |
| | 978 | dashes: 10, 10; |
| | 979 | object-z-index: 2.1; |
| | 980 | } |
| | 981 | |
| | 982 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 6][change:lanes:backward=~/^([a-z_]*[|]){5}(no|to_left)([|]|$)/]::Fahrspur_6_B_R |
| | 983 | { |
| | 984 | color: white; |
| | 985 | width: 1; |
| | 986 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*(-6))-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-1); |
| | 987 | object-z-index: 2.1; |
| | 988 | } |
| | 989 | |
| | 990 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 991 | /* */ |
| | 992 | /* Fahrspur 7 */ |
| | 993 | /* */ |
| | 994 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 995 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 6][change:lanes=~/^([a-z_]*[|]){6}(yes|to_left)([|]|$)/]::Fahrspur_7_F_L, |
| | 996 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 6][change:lanes:forward=~/^([a-z_]*[|]){6}(yes|to_left)([|]|$)/]::Fahrspur_7_F_L |
| | 997 | { |
| | 998 | color: white; |
| | 999 | width: 1; |
| | 1000 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*6)-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-1); |
| | 1001 | dashes: 10, 10; |
| | 1002 | object-z-index: 2.1; |
| | 1003 | } |
| | 1004 | |
| | 1005 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 6][change:lanes=~/^([a-z_]*[|]){6}(no|to_right)([|]|$)/]::Fahrspur_7_F_L, |
| | 1006 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 6][change:lanes:forward=~/^([a-z_]*[|]){6}(no|to_right)([|]|$)/]::Fahrspur_7_F_L |
| | 1007 | { |
| | 1008 | color: white; |
| | 1009 | width: 1; |
| | 1010 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*6)-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-1); |
| | 1011 | object-z-index: 2.1; |
| | 1012 | } |
| | 1013 | |
| | 1014 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 7][change:lanes=~/^([a-z_]*[|]){6}(yes|to_right)([|]|$)/]::Fahrspur_7_F_R, |
| | 1015 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 7][change:lanes:forward=~/^([a-z_]*[|]){6}(yes|to_right)([|]|$)/]::Fahrspur_7_F_R |
| | 1016 | { |
| | 1017 | color: white; |
| | 1018 | width: 1; |
| | 1019 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*7)-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-(-1)); |
| | 1020 | dashes: 10, 10; |
| | 1021 | object-z-index: 2.1; |
| | 1022 | } |
| | 1023 | |
| | 1024 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 7][change:lanes=~/^([a-z_]*[|]){6}(no|to_left)([|]|$)/]::Fahrspur_7_F_R, |
| | 1025 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 7][change:lanes:forward=~/^([a-z_]*[|]){6}(no|to_left)([|]|$)/]::Fahrspur_7_F_R |
| | 1026 | { |
| | 1027 | color: white; |
| | 1028 | width: 1; |
| | 1029 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*7)-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-(-1)); |
| | 1030 | object-z-index: 2.1; |
| | 1031 | } |
| | 1032 | |
| | 1033 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 6][change:lanes:backward=~/^([a-z_]*[|]){6}(yes|to_left)([|]|$)/]::Fahrspur_7_B_L |
| | 1034 | { |
| | 1035 | color: white; |
| | 1036 | width: 1; |
| | 1037 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*(-6))-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-(-1)); |
| | 1038 | dashes: 10, 10; |
| | 1039 | object-z-index: 2.1; |
| | 1040 | } |
| | 1041 | |
| | 1042 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 6][change:lanes:backward=~/^([a-z_]*[|]){6}(no|to_right)([|]|$)/]::Fahrspur_7_B_L |
| | 1043 | { |
| | 1044 | color: white; |
| | 1045 | width: 1; |
| | 1046 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*(-6))-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-(-1)); |
| | 1047 | object-z-index: 2.1; |
| | 1048 | } |
| | 1049 | |
| | 1050 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 7][change:lanes:backward=~/^([a-z_]*[|]){6}(yes|to_right)([|]|$)/]::Fahrspur_7_B_R |
| | 1051 | { |
| | 1052 | color: white; |
| | 1053 | width: 1; |
| | 1054 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*(-7))-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-1); |
| | 1055 | dashes: 10, 10; |
| | 1056 | object-z-index: 2.1; |
| | 1057 | } |
| | 1058 | |
| | 1059 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 7][change:lanes:backward=~/^([a-z_]*[|]){6}(no|to_left)([|]|$)/]::Fahrspur_7_B_R |
| | 1060 | { |
| | 1061 | color: white; |
| | 1062 | width: 1; |
| | 1063 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*(-7))-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-1); |
| | 1064 | object-z-index: 2.1; |
| | 1065 | } |
| | 1066 | |
| | 1067 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 1068 | /* */ |
| | 1069 | /* Fahrspur 8 */ |
| | 1070 | /* */ |
| | 1071 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 1072 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 7][change:lanes=~/^([a-z_]*[|]){7}(yes|to_left)([|]|$)/]::Fahrspur_8_F_L, |
| | 1073 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 7][change:lanes:forward=~/^([a-z_]*[|]){7}(yes|to_left)([|]|$)/]::Fahrspur_8_F_L |
| | 1074 | { |
| | 1075 | color: white; |
| | 1076 | width: 1; |
| | 1077 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*7)-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-1); |
| | 1078 | dashes: 10, 10; |
| | 1079 | object-z-index: 2.1; |
| | 1080 | } |
| | 1081 | |
| | 1082 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 7][change:lanes=~/^([a-z_]*[|]){7}(no|to_right)([|]|$)/]::Fahrspur_8_F_L, |
| | 1083 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 7][change:lanes:forward=~/^([a-z_]*[|]){7}(no|to_right)([|]|$)/]::Fahrspur_8_F_L |
| | 1084 | { |
| | 1085 | color: white; |
| | 1086 | width: 1; |
| | 1087 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*7)-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-1); |
| | 1088 | object-z-index: 2.1; |
| | 1089 | } |
| | 1090 | |
| | 1091 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 8][change:lanes=~/^([a-z_]*[|]){7}(yes|to_right)([|]|$)/]::Fahrspur_8_F_R, |
| | 1092 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 8][change:lanes:forward=~/^([a-z_]*[|]){7}(yes|to_right)([|]|$)/]::Fahrspur_8_F_R |
| | 1093 | { |
| | 1094 | color: white; |
| | 1095 | width: 1; |
| | 1096 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*8)-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-(-1)); |
| | 1097 | dashes: 10, 10; |
| | 1098 | object-z-index: 2.1; |
| | 1099 | } |
| | 1100 | |
| | 1101 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 8][change:lanes=~/^([a-z_]*[|]){7}(no|to_left)([|]|$)/]::Fahrspur_8_F_R, |
| | 1102 | way|z17-[is_prop_set(ok, "default")][prop(lanes_fw, "default") > 8][change:lanes:forward=~/^([a-z_]*[|]){7}(no|to_left)([|]|$)/]::Fahrspur_8_F_R |
| | 1103 | { |
| | 1104 | color: white; |
| | 1105 | width: 1; |
| | 1106 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*8)-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-(-1)); |
| | 1107 | object-z-index: 2.1; |
| | 1108 | } |
| | 1109 | |
| | 1110 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 7][change:lanes:backward=~/^([a-z_]*[|]){7}(yes|to_left)([|]|$)/]::Fahrspur_8_B_L |
| | 1111 | { |
| | 1112 | color: white; |
| | 1113 | width: 1; |
| | 1114 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*(-7))-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-(-1)); |
| | 1115 | dashes: 10, 10; |
| | 1116 | object-z-index: 2.1; |
| | 1117 | } |
| | 1118 | |
| | 1119 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 7][change:lanes:backward=~/^([a-z_]*[|]){7}(no|to_right)([|]|$)/]::Fahrspur_8_B_L |
| | 1120 | { |
| | 1121 | color: white; |
| | 1122 | width: 1; |
| | 1123 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*(-7))-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-(-1)); |
| | 1124 | object-z-index: 2.1; |
| | 1125 | } |
| | 1126 | |
| | 1127 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 8][change:lanes:backward=~/^([a-z_]*[|]){7}(yes|to_right)([|]|$)/]::Fahrspur_8_B_R |
| | 1128 | { |
| | 1129 | color: white; |
| | 1130 | width: 1; |
| | 1131 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*(-8))-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-1); |
| | 1132 | dashes: 10, 10; |
| | 1133 | object-z-index: 2.1; |
| | 1134 | } |
| | 1135 | |
| | 1136 | way|z17-[is_prop_set(ok, "default")][prop(lanes_bw, "default") > 8][change:lanes:backward=~/^([a-z_]*[|]){7}(no|to_left)([|]|$)/]::Fahrspur_8_B_R |
| | 1137 | { |
| | 1138 | color: white; |
| | 1139 | width: 1; |
| | 1140 | offset:eval((prop(lanes_ges,"default")*(prop(b2-set,"default"))*(-1))-(prop(b-set,"default")*(-8))-(prop(b-set,"default")*prop(lanes_fw,"default")*(-1))-1); |
| | 1141 | object-z-index: 2.1; |
| | 1142 | } |
| | 1143 | |
| | 1144 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 1145 | /* */ |
| | 1146 | /* Definition der Layer für die einzelnen Spuren, vereinfacht sonst nötige Klimmzüge bei den reg. Ausdrücken */ |
| | 1147 | /* Definition of layers for each lane, avoiding trouble using regular expressions */ |
| | 1148 | /* */ |
| | 1149 | /* Fahrspur1 Vorwärts */ |
| | 1150 | /* lane1 forward */ |
| | 1151 | /* */ |
| | 1152 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 1153 | way|z19-[turn:lanes=~/^(straight|through)([|]|$)/]::Abbiegespur_1_G_1, way|z19-[turn:lanes:forward=~/^(straight|through)([|]|$)/]::Abbiegespur_1_G_1 { a1g1: true; } |
| | 1154 | way|z19-[turn:lanes=~/^(straight|through)([|]|$)/]::Abbiegespur_1_G_2, way|z19-[turn:lanes:forward=~/^(straight|through)([|]|$)/]::Abbiegespur_1_G_2 { a1g2: true; } |
| | 1155 | way|z19-[turn:lanes=~/^(straight|through)([|]|$)/]::Abbiegespur_1_G_3, way|z19-[turn:lanes:forward=~/^(straight|through)([|]|$)/]::Abbiegespur_1_G_3 { a1g3: true; } |
| | 1156 | way|z19-[turn:lanes=~/^(straight|through)([|]|$)/]::Abbiegespur_1_G_4, way|z19-[turn:lanes:forward=~/^(straight|through)([|]|$)/]::Abbiegespur_1_G_4 { a1g4: true; } |
| | 1157 | way|z19-[turn:lanes=~/^(straight|through)([|]|$)/]::Abbiegespur_1_G_5, way|z19-[turn:lanes:forward=~/^(straight|through)([|]|$)/]::Abbiegespur_1_G_5 { a1g5: true; } |
| | 1158 | way|z19-[turn:lanes=~/^(straight|through)([|]|$)/]::Abbiegespur_1_G_6, way|z19-[turn:lanes:forward=~/^(straight|through)([|]|$)/]::Abbiegespur_1_G_6 { a1g6: true; } |
| | 1159 | way|z19-[turn:lanes=~/^(straight|through)([|]|$)/]::Abbiegespur_1_G_7, way|z19-[turn:lanes:forward=~/^(straight|through)([|]|$)/]::Abbiegespur_1_G_7 { a1g7: true; } |
| | 1160 | |
| | 1161 | way|z19-[turn:lanes=~/^[a-z_]*right([|]|$)/]::Abbiegespur_1_R_1, way|z19-[turn:lanes:forward=~/^[a-z_]*right([|]|$)/]::Abbiegespur_1_R_1 { a1r1: true; } |
| | 1162 | way|z19-[turn:lanes=~/^[a-z_]*right([|]|$)/]::Abbiegespur_1_R_2, way|z19-[turn:lanes:forward=~/^[a-z_]*right([|]|$)/]::Abbiegespur_1_R_2 { a1r2: true; } |
| | 1163 | way|z19-[turn:lanes=~/^[a-z_]*right([|]|$)/]::Abbiegespur_1_R_3, way|z19-[turn:lanes:forward=~/^[a-z_]*right([|]|$)/]::Abbiegespur_1_R_3 { a1r3: true; } |
| | 1164 | way|z19-[turn:lanes=~/^[a-z_]*right([|]|$)/]::Abbiegespur_1_R_4, way|z19-[turn:lanes:forward=~/^[a-z_]*right([|]|$)/]::Abbiegespur_1_R_4 { a1r4: true; } |
| | 1165 | way|z19-[turn:lanes=~/^[a-z_]*right([|]|$)/]::Abbiegespur_1_R_5, way|z19-[turn:lanes:forward=~/^[a-z_]*right([|]|$)/]::Abbiegespur_1_R_5 { a1r5: true; } |
| | 1166 | way|z19-[turn:lanes=~/^[a-z_]*right([|]|$)/]::Abbiegespur_1_R_6, way|z19-[turn:lanes:forward=~/^[a-z_]*right([|]|$)/]::Abbiegespur_1_R_6 { a1r6: true; } |
| | 1167 | way|z19-[turn:lanes=~/^[a-z_]*right([|]|$)/]::Abbiegespur_1_R_7, way|z19-[turn:lanes:forward=~/^[a-z_]*right([|]|$)/]::Abbiegespur_1_R_7 { a1r7: true; } |
| | 1168 | |
| | 1169 | way|z19-[turn:lanes=~/^[a-z_]*left([|]|$)/]::Abbiegespur_1_L_1, way|z19-[turn:lanes:forward=~/^[a-z_]*left([|]|$)/]::Abbiegespur_1_L_1 { a1l1: true; } |
| | 1170 | way|z19-[turn:lanes=~/^[a-z_]*left([|]|$)/]::Abbiegespur_1_L_2, way|z19-[turn:lanes:forward=~/^[a-z_]*left([|]|$)/]::Abbiegespur_1_L_2 { a1l2: true; } |
| | 1171 | way|z19-[turn:lanes=~/^[a-z_]*left([|]|$)/]::Abbiegespur_1_L_3, way|z19-[turn:lanes:forward=~/^[a-z_]*left([|]|$)/]::Abbiegespur_1_L_3 { a1l3: true; } |
| | 1172 | way|z19-[turn:lanes=~/^[a-z_]*left([|]|$)/]::Abbiegespur_1_L_4, way|z19-[turn:lanes:forward=~/^[a-z_]*left([|]|$)/]::Abbiegespur_1_L_4 { a1l4: true; } |
| | 1173 | way|z19-[turn:lanes=~/^[a-z_]*left([|]|$)/]::Abbiegespur_1_L_5, way|z19-[turn:lanes:forward=~/^[a-z_]*left([|]|$)/]::Abbiegespur_1_L_5 { a1l5: true; } |
| | 1174 | way|z19-[turn:lanes=~/^[a-z_]*left([|]|$)/]::Abbiegespur_1_L_6, way|z19-[turn:lanes:forward=~/^[a-z_]*left([|]|$)/]::Abbiegespur_1_L_6 { a1l6: true; } |
| | 1175 | way|z19-[turn:lanes=~/^[a-z_]*left([|]|$)/]::Abbiegespur_1_L_7, way|z19-[turn:lanes:forward=~/^[a-z_]*left([|]|$)/]::Abbiegespur_1_L_7 { a1l7: true; } |
| | 1176 | |
| | 1177 | way|z19-[turn:lanes=~/^([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_1_LG_1, |
| | 1178 | way|z19-[turn:lanes:forward=~/^([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_1_LG_1 { a1lg1: true; } |
| | 1179 | way|z19-[turn:lanes=~/^([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_1_LG_2, |
| | 1180 | way|z19-[turn:lanes:forward=~/^([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_1_LG_2 { a1lg2: true; } |
| | 1181 | way|z19-[turn:lanes=~/^([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_1_LG_3, |
| | 1182 | way|z19-[turn:lanes:forward=~/^([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_1_LG_3 { a1lg3: true; } |
| | 1183 | way|z19-[turn:lanes=~/^([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_1_LG_4, |
| | 1184 | way|z19-[turn:lanes:forward=~/^([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_1_LG_4 { a1lg4: true; } |
| | 1185 | way|z19-[turn:lanes=~/^([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_1_LG_5, |
| | 1186 | way|z19-[turn:lanes:forward=~/^([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_1_LG_5 { a1lg5: true; } |
| | 1187 | way|z19-[turn:lanes=~/^([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_1_LG_6, |
| | 1188 | way|z19-[turn:lanes:forward=~/^([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_1_LG_6 { a1lg6: true; } |
| | 1189 | way|z19-[turn:lanes=~/^([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_1_LG_7, |
| | 1190 | way|z19-[turn:lanes:forward=~/^([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_1_LG_7 { a1lg7: true; } |
| | 1191 | |
| | 1192 | way|z19-[turn:lanes=~/^([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_1_RG_1, |
| | 1193 | way|z19-[turn:lanes:forward=~/^([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_1_RG_1 { a1rg1: true; } |
| | 1194 | way|z19-[turn:lanes=~/^([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_1_RG_2, |
| | 1195 | way|z19-[turn:lanes:forward=~/^([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_1_RG_2 { a1rg2: true; } |
| | 1196 | way|z19-[turn:lanes=~/^([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_1_RG_3, |
| | 1197 | way|z19-[turn:lanes:forward=~/^([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_1_RG_3 { a1rg3: true; } |
| | 1198 | way|z19-[turn:lanes=~/^([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_1_RG_4, |
| | 1199 | way|z19-[turn:lanes:forward=~/^([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_1_RG_4 { a1rg4: true; } |
| | 1200 | way|z19-[turn:lanes=~/^([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_1_RG_5, |
| | 1201 | way|z19-[turn:lanes:forward=~/^([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_1_RG_5 { a1rg5: true; } |
| | 1202 | way|z19-[turn:lanes=~/^([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_1_RG_6, |
| | 1203 | way|z19-[turn:lanes:forward=~/^([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_1_RG_6 { a1rg6: true; } |
| | 1204 | way|z19-[turn:lanes=~/^([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_1_RG_7, |
| | 1205 | way|z19-[turn:lanes:forward=~/^([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_1_RG_7 { a1rg7: true; } |
| | 1206 | |
| | 1207 | way|z19-[turn:lanes=~/^([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_1_RL_1, |
| | 1208 | way|z19-[turn:lanes:forward=~/^([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_1_RL_1 { a1rl1: true; } |
| | 1209 | way|z19-[turn:lanes=~/^([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_1_RL_2, |
| | 1210 | way|z19-[turn:lanes:forward=~/^([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_1_RL_2 { a1rl2: true; } |
| | 1211 | way|z19-[turn:lanes=~/^([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_1_RL_3, |
| | 1212 | way|z19-[turn:lanes:forward=~/^([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_1_RL_3 { a1rl3: true; } |
| | 1213 | way|z19-[turn:lanes=~/^([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_1_RL_4, |
| | 1214 | way|z19-[turn:lanes:forward=~/^([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_1_RL_4 { a1rl4: true; } |
| | 1215 | way|z19-[turn:lanes=~/^([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_1_RL_5, |
| | 1216 | way|z19-[turn:lanes:forward=~/^([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_1_RL_5 { a1rl5: true; } |
| | 1217 | way|z19-[turn:lanes=~/^([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_1_RL_6, |
| | 1218 | way|z19-[turn:lanes:forward=~/^([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_1_RL_6 { a1rl6: true; } |
| | 1219 | way|z19-[turn:lanes=~/^([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_1_RL_7, |
| | 1220 | way|z19-[turn:lanes:forward=~/^([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_1_RL_7 { a1rl7: true; } |
| | 1221 | |
| | 1222 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 1223 | /* */ |
| | 1224 | /* Definition der Layer für die einzelnen Spuren, Fahrspur 1 Gegenrichtung (backward) */ |
| | 1225 | /* */ |
| | 1226 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 1227 | way|z19-[turn:lanes:backward=~/^(straight|through)([|]|$)/]::Abbiegespur_1B_G_1 { a1bg1: true; } |
| | 1228 | way|z19-[turn:lanes:backward=~/^(straight|through)([|]|$)/]::Abbiegespur_1B_G_2 { a1bg2: true; } |
| | 1229 | way|z19-[turn:lanes:backward=~/^(straight|through)([|]|$)/]::Abbiegespur_1B_G_3 { a1bg3: true; } |
| | 1230 | way|z19-[turn:lanes:backward=~/^(straight|through)([|]|$)/]::Abbiegespur_1B_G_4 { a1bg4: true; } |
| | 1231 | way|z19-[turn:lanes:backward=~/^(straight|through)([|]|$)/]::Abbiegespur_1B_G_5 { a1bg5: true; } |
| | 1232 | way|z19-[turn:lanes:backward=~/^(straight|through)([|]|$)/]::Abbiegespur_1B_G_6 { a1bg6: true; } |
| | 1233 | way|z19-[turn:lanes:backward=~/^(straight|through)([|]|$)/]::Abbiegespur_1B_G_7 { a1bg7: true; } |
| | 1234 | |
| | 1235 | way|z19-[turn:lanes:backward=~/^[a-z_]*right([|]|$)/]::Abbiegespur_1B_R_1 { a1br1: true; } |
| | 1236 | way|z19-[turn:lanes:backward=~/^[a-z_]*right([|]|$)/]::Abbiegespur_1B_R_2 { a1br2: true; } |
| | 1237 | way|z19-[turn:lanes:backward=~/^[a-z_]*right([|]|$)/]::Abbiegespur_1B_R_3 { a1br3: true; } |
| | 1238 | way|z19-[turn:lanes:backward=~/^[a-z_]*right([|]|$)/]::Abbiegespur_1B_R_4 { a1br4: true; } |
| | 1239 | way|z19-[turn:lanes:backward=~/^[a-z_]*right([|]|$)/]::Abbiegespur_1B_R_5 { a1br5: true; } |
| | 1240 | way|z19-[turn:lanes:backward=~/^[a-z_]*right([|]|$)/]::Abbiegespur_1B_R_6 { a1br6: true; } |
| | 1241 | way|z19-[turn:lanes:backward=~/^[a-z_]*right([|]|$)/]::Abbiegespur_1B_R_7 { a1br7: true; } |
| | 1242 | |
| | 1243 | way|z19-[turn:lanes:backward=~/^[a-z_]*left([|]|$)/]::Abbiegespur_1B_L_1 { a1bl1: true; } |
| | 1244 | way|z19-[turn:lanes:backward=~/^[a-z_]*left([|]|$)/]::Abbiegespur_1B_L_2 { a1bl2: true; } |
| | 1245 | way|z19-[turn:lanes:backward=~/^[a-z_]*left([|]|$)/]::Abbiegespur_1B_L_3 { a1bl3: true; } |
| | 1246 | way|z19-[turn:lanes:backward=~/^[a-z_]*left([|]|$)/]::Abbiegespur_1B_L_4 { a1bl4: true; } |
| | 1247 | way|z19-[turn:lanes:backward=~/^[a-z_]*left([|]|$)/]::Abbiegespur_1B_L_5 { a1bl5: true; } |
| | 1248 | way|z19-[turn:lanes:backward=~/^[a-z_]*left([|]|$)/]::Abbiegespur_1B_L_6 { a1bl6: true; } |
| | 1249 | way|z19-[turn:lanes:backward=~/^[a-z_]*left([|]|$)/]::Abbiegespur_1B_L_7 { a1bl7: true; } |
| | 1250 | |
| | 1251 | way|z19-[turn:lanes:backward=~/^([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_1B_LG_1 { a1blg1: true; } |
| | 1252 | way|z19-[turn:lanes:backward=~/^([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_1B_LG_2 { a1blg2: true; } |
| | 1253 | way|z19-[turn:lanes:backward=~/^([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_1B_LG_3 { a1blg3: true; } |
| | 1254 | way|z19-[turn:lanes:backward=~/^([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_1B_LG_4 { a1blg4: true; } |
| | 1255 | way|z19-[turn:lanes:backward=~/^([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_1B_LG_5 { a1blg5: true; } |
| | 1256 | way|z19-[turn:lanes:backward=~/^([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_1B_LG_6 { a1blg6: true; } |
| | 1257 | way|z19-[turn:lanes:backward=~/^([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_1B_LG_7 { a1blg7: true; } |
| | 1258 | |
| | 1259 | way|z19-[turn:lanes:backward=~/^([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_1B_RG_1 { a1brg1: true; } |
| | 1260 | way|z19-[turn:lanes:backward=~/^([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_1B_RG_2 { a1brg2: true; } |
| | 1261 | way|z19-[turn:lanes:backward=~/^([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_1B_RG_3 { a1brg3: true; } |
| | 1262 | way|z19-[turn:lanes:backward=~/^([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_1B_RG_4 { a1brg4: true; } |
| | 1263 | way|z19-[turn:lanes:backward=~/^([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_1B_RG_5 { a1brg5: true; } |
| | 1264 | way|z19-[turn:lanes:backward=~/^([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_1B_RG_6 { a1brg6: true; } |
| | 1265 | way|z19-[turn:lanes:backward=~/^([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_1B_RG_7 { a1brg7: true; } |
| | 1266 | |
| | 1267 | way|z19-[turn:lanes:backward=~/^([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_1B_RL_1 { a1brl1: true; } |
| | 1268 | way|z19-[turn:lanes:backward=~/^([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_1B_RL_2 { a1brl2: true; } |
| | 1269 | way|z19-[turn:lanes:backward=~/^([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_1B_RL_3 { a1brl3: true; } |
| | 1270 | way|z19-[turn:lanes:backward=~/^([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_1B_RL_4 { a1brl4: true; } |
| | 1271 | way|z19-[turn:lanes:backward=~/^([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_1B_RL_5 { a1brl5: true; } |
| | 1272 | way|z19-[turn:lanes:backward=~/^([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_1B_RL_6 { a1brl6: true; } |
| | 1273 | way|z19-[turn:lanes:backward=~/^([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_1B_RL_7 { a1brl7: true; } |
| | 1274 | |
| | 1275 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 1276 | /* */ |
| | 1277 | /* Definition der Layer für die einzelnen Spuren, Fahrspur 2 Vorwärts */ |
| | 1278 | /* */ |
| | 1279 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 1280 | |
| | 1281 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}(straight|through)([|]|$)/]::Abbiegespur_2_G_1, |
| | 1282 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}(straight|through)([|]|$)/]::Abbiegespur_2_G_1 { a2g1: true; } |
| | 1283 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}(straight|through)([|]|$)/]::Abbiegespur_2_G_2, |
| | 1284 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}(straight|through)([|]|$)/]::Abbiegespur_2_G_2 { a2g2: true; } |
| | 1285 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}(straight|through)([|]|$)/]::Abbiegespur_2_G_3, |
| | 1286 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}(straight|through)([|]|$)/]::Abbiegespur_2_G_3 { a2g3: true; } |
| | 1287 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}(straight|through)([|]|$)/]::Abbiegespur_2_G_4, |
| | 1288 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}(straight|through)([|]|$)/]::Abbiegespur_2_G_4 { a2g4: true; } |
| | 1289 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}(straight|through)([|]|$)/]::Abbiegespur_2_G_5, |
| | 1290 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}(straight|through)([|]|$)/]::Abbiegespur_2_G_5 { a2g5: true; } |
| | 1291 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}(straight|through)([|]|$)/]::Abbiegespur_2_G_6, |
| | 1292 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}(straight|through)([|]|$)/]::Abbiegespur_2_G_6 { a2g6: true; } |
| | 1293 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}(straight|through)([|]|$)/]::Abbiegespur_2_G_7, |
| | 1294 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}(straight|through)([|]|$)/]::Abbiegespur_2_G_7 { a2g7: true; } |
| | 1295 | |
| | 1296 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}[a-z_]*left([|]|$)/]::Abbiegespur_2_L_1, |
| | 1297 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}[a-z_]*left([|]|$)/]::Abbiegespur_2_L_1 { a2l1: true; } |
| | 1298 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}[a-z_]*left([|]|$)/]::Abbiegespur_2_L_2, |
| | 1299 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}[a-z_]*left([|]|$)/]::Abbiegespur_2_L_2 { a2l2: true; } |
| | 1300 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}[a-z_]*left([|]|$)/]::Abbiegespur_2_L_3, |
| | 1301 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}[a-z_]*left([|]|$)/]::Abbiegespur_2_L_3 { a2l3: true; } |
| | 1302 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}[a-z_]*left([|]|$)/]::Abbiegespur_2_L_4, |
| | 1303 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}[a-z_]*left([|]|$)/]::Abbiegespur_2_L_4 { a2l4: true; } |
| | 1304 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}[a-z_]*left([|]|$)/]::Abbiegespur_2_L_5, |
| | 1305 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}[a-z_]*left([|]|$)/]::Abbiegespur_2_L_5 { a2l5: true; } |
| | 1306 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}[a-z_]*left([|]|$)/]::Abbiegespur_2_L_6, |
| | 1307 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}[a-z_]*left([|]|$)/]::Abbiegespur_2_L_6 { a2l6: true; } |
| | 1308 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}[a-z_]*left([|]|$)/]::Abbiegespur_2_L_7, |
| | 1309 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}[a-z_]*left([|]|$)/]::Abbiegespur_2_L_7 { a2l7: true; } |
| | 1310 | |
| | 1311 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}[a-z_]*right([|]|$)/]::Abbiegespur_2_R_1, |
| | 1312 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}[a-z_]*right([|]|$)/]::Abbiegespur_2_R_1 { a2r1: true; } |
| | 1313 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}[a-z_]*right([|]|$)/]::Abbiegespur_2_R_2, |
| | 1314 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}[a-z_]*right([|]|$)/]::Abbiegespur_2_R_2 { a2r2: true; } |
| | 1315 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}[a-z_]*right([|]|$)/]::Abbiegespur_2_R_3, |
| | 1316 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}[a-z_]*right([|]|$)/]::Abbiegespur_2_R_3 { a2r3: true; } |
| | 1317 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}[a-z_]*right([|]|$)/]::Abbiegespur_2_R_4, |
| | 1318 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}[a-z_]*right([|]|$)/]::Abbiegespur_2_R_4 { a2r4: true; } |
| | 1319 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}[a-z_]*right([|]|$)/]::Abbiegespur_2_R_5, |
| | 1320 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}[a-z_]*right([|]|$)/]::Abbiegespur_2_R_5 { a2r5: true; } |
| | 1321 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}[a-z_]*right([|]|$)/]::Abbiegespur_2_R_6, |
| | 1322 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}[a-z_]*right([|]|$)/]::Abbiegespur_2_R_6 { a2r6: true; } |
| | 1323 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}[a-z_]*right([|]|$)/]::Abbiegespur_2_R_7, |
| | 1324 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}[a-z_]*right([|]|$)/]::Abbiegespur_2_R_7 { a2r7: true; } |
| | 1325 | |
| | 1326 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_2_GR_1, |
| | 1327 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_2_GR_1 |
| | 1328 | { a2gr1: true; } |
| | 1329 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_2_GR_2, |
| | 1330 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_2_GR_2 |
| | 1331 | { a2gr2: true; } |
| | 1332 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_2_GR_3, |
| | 1333 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_2_GR_3 |
| | 1334 | { a2gr3: true; } |
| | 1335 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_2_GR_4, |
| | 1336 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_2_GR_4 |
| | 1337 | { a2gr4: true; } |
| | 1338 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_2_GR_5, |
| | 1339 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_2_GR_5 |
| | 1340 | { a2gr5: true; } |
| | 1341 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_2_GR_6, |
| | 1342 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_2_GR_6 |
| | 1343 | { a2gr6: true; } |
| | 1344 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_2_GR_7, |
| | 1345 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_2_GR_7 |
| | 1346 | { a2gr7: true; } |
| | 1347 | |
| | 1348 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_2_GL_1, |
| | 1349 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_2_GL_1 |
| | 1350 | { a2gl1: true; } |
| | 1351 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_2_GL_2, |
| | 1352 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_2_GL_2 |
| | 1353 | { a2gl2: true; } |
| | 1354 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_2_GL_3, |
| | 1355 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_2_GL_3 |
| | 1356 | { a2gl3: true; } |
| | 1357 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_2_GL_4, |
| | 1358 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_2_GL_4 |
| | 1359 | { a2gl4: true; } |
| | 1360 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_2_GL_5, |
| | 1361 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_2_GL_5 |
| | 1362 | { a2gl5: true; } |
| | 1363 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_2_GL_6, |
| | 1364 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_2_GL_6 |
| | 1365 | { a2gl6: true; } |
| | 1366 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_2_GL_7, |
| | 1367 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_2_GL_7 |
| | 1368 | { a2gl7: true; } |
| | 1369 | |
| | 1370 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_2_RL_1, |
| | 1371 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_2_RL_1 { a2rl1: true; } |
| | 1372 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_2_RL_2, |
| | 1373 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_2_RL_2 { a2rl2: true; } |
| | 1374 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_2_RL_3, |
| | 1375 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_2_RL_3 { a2rl3: true; } |
| | 1376 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_2_RL_4, |
| | 1377 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_2_RL_4 { a2rl4: true; } |
| | 1378 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_2_RL_5, |
| | 1379 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_2_RL_5 { a2rl5: true; } |
| | 1380 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_2_RL_6, |
| | 1381 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_2_RL_6 { a2rl6: true; } |
| | 1382 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){1}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_2_RL_7, |
| | 1383 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){1}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_2_RL_7 { a2rl7: true; } |
| | 1384 | |
| | 1385 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 1386 | /* */ |
| | 1387 | /* Definition der Layer für die einzelnen Spuren, Fahrspur 2 Gegenrichtung (backward) */ |
| | 1388 | /* */ |
| | 1389 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 1390 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}(straight|through)([|]|$)/]::Abbiegespur_2B_G_1 { a2bg1: true; } |
| | 1391 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}(straight|through)([|]|$)/]::Abbiegespur_2B_G_2 { a2bg2: true; } |
| | 1392 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}(straight|through)([|]|$)/]::Abbiegespur_2B_G_3 { a2bg3: true; } |
| | 1393 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}(straight|through)([|]|$)/]::Abbiegespur_2B_G_4 { a2bg4: true; } |
| | 1394 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}(straight|through)([|]|$)/]::Abbiegespur_2B_G_5 { a2bg5: true; } |
| | 1395 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}(straight|through)([|]|$)/]::Abbiegespur_2B_G_6 { a2bg6: true; } |
| | 1396 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}(straight|through)([|]|$)/]::Abbiegespur_2B_G_7 { a2bg7: true; } |
| | 1397 | |
| | 1398 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}[a-z_]*right([|]|$)/]::Abbiegespur_2B_R_1 { a2br1: true; } |
| | 1399 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}[a-z_]*right([|]|$)/]::Abbiegespur_2B_R_2 { a2br2: true; } |
| | 1400 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}[a-z_]*right([|]|$)/]::Abbiegespur_2B_R_3 { a2br3: true; } |
| | 1401 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}[a-z_]*right([|]|$)/]::Abbiegespur_2B_R_4 { a2br4: true; } |
| | 1402 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}[a-z_]*right([|]|$)/]::Abbiegespur_2B_R_5 { a2br5: true; } |
| | 1403 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}[a-z_]*right([|]|$)/]::Abbiegespur_2B_R_6 { a2br6: true; } |
| | 1404 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}[a-z_]*right([|]|$)/]::Abbiegespur_2B_R_7 { a2br7: true; } |
| | 1405 | |
| | 1406 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}[a-z_]*left([|]|$)/]::Abbiegespur_2B_L_1 { a2bl1: true; } |
| | 1407 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}[a-z_]*left([|]|$)/]::Abbiegespur_2B_L_2 { a2bl2: true; } |
| | 1408 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}[a-z_]*left([|]|$)/]::Abbiegespur_2B_L_3 { a2bl3: true; } |
| | 1409 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}[a-z_]*left([|]|$)/]::Abbiegespur_2B_L_4 { a2bl4: true; } |
| | 1410 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}[a-z_]*left([|]|$)/]::Abbiegespur_2B_L_5 { a2bl5: true; } |
| | 1411 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}[a-z_]*left([|]|$)/]::Abbiegespur_2B_L_6 { a2bl6: true; } |
| | 1412 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}[a-z_]*left([|]|$)/]::Abbiegespur_2B_L_7 { a2bl7: true; } |
| | 1413 | |
| | 1414 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_2B_LG_1 |
| | 1415 | { a2blg1: true; } |
| | 1416 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_2B_LG_2 |
| | 1417 | { a2blg2: true; } |
| | 1418 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_2B_LG_3 |
| | 1419 | { a2blg3: true; } |
| | 1420 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_2B_LG_4 |
| | 1421 | { a2blg4: true; } |
| | 1422 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_2B_LG_5 |
| | 1423 | { a2blg5: true; } |
| | 1424 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_2B_LG_6 |
| | 1425 | { a2blg6: true; } |
| | 1426 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_2B_LG_7 |
| | 1427 | { a2blg7: true; } |
| | 1428 | |
| | 1429 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_2B_RG_1 |
| | 1430 | { a2brg1: true; } |
| | 1431 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_2B_RG_2 |
| | 1432 | { a2brg2: true; } |
| | 1433 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_2B_RG_3 |
| | 1434 | { a2brg3: true; } |
| | 1435 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_2B_RG_4 |
| | 1436 | { a2brg4: true; } |
| | 1437 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_2B_RG_5 |
| | 1438 | { a2brg5: true; } |
| | 1439 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_2B_RG_6 |
| | 1440 | { a2brg6: true; } |
| | 1441 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_2B_RG_7 |
| | 1442 | { a2brg7: true; } |
| | 1443 | |
| | 1444 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_2B_RL_1 { a2brl1: true; } |
| | 1445 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_2B_RL_2 { a2brl2: true; } |
| | 1446 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_2B_RL_3 { a2brl3: true; } |
| | 1447 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_2B_RL_4 { a2brl4: true; } |
| | 1448 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_2B_RL_5 { a2brl5: true; } |
| | 1449 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_2B_RL_6 { a2brl6: true; } |
| | 1450 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){1}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_2B_RL_7 { a2brl7: true; } |
| | 1451 | |
| | 1452 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 1453 | /* */ |
| | 1454 | /* Definition der Layer für die einzelnen Spuren, Fahrspur 3 Vorwärts */ |
| | 1455 | /* */ |
| | 1456 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 1457 | |
| | 1458 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}(straight|through)([|]|$)/]::Abbiegespur_3_G_1, |
| | 1459 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}(straight|through)([|]|$)/]::Abbiegespur_3_G_1 { a3g1: true; } |
| | 1460 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}(straight|through)([|]|$)/]::Abbiegespur_3_G_2, |
| | 1461 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}(straight|through)([|]|$)/]::Abbiegespur_3_G_2 { a3g2: true; } |
| | 1462 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}(straight|through)([|]|$)/]::Abbiegespur_3_G_3, |
| | 1463 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}(straight|through)([|]|$)/]::Abbiegespur_3_G_3 { a3g3: true; } |
| | 1464 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}(straight|through)([|]|$)/]::Abbiegespur_3_G_4, |
| | 1465 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}(straight|through)([|]|$)/]::Abbiegespur_3_G_4 { a3g4: true; } |
| | 1466 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}(straight|through)([|]|$)/]::Abbiegespur_3_G_5, |
| | 1467 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}(straight|through)([|]|$)/]::Abbiegespur_3_G_5 { a3g5: true; } |
| | 1468 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}(straight|through)([|]|$)/]::Abbiegespur_3_G_6, |
| | 1469 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}(straight|through)([|]|$)/]::Abbiegespur_3_G_6 { a3g6: true; } |
| | 1470 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}(straight|through)([|]|$)/]::Abbiegespur_3_G_7, |
| | 1471 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}(straight|through)([|]|$)/]::Abbiegespur_3_G_7 { a3g7: true; } |
| | 1472 | |
| | 1473 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}[a-z_]*left([|]|$)/]::Abbiegespur_3_L_1, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}[a-z_]*left([|]|$)/]::Abbiegespur_3_L_1 |
| | 1474 | { a3l1: true; } |
| | 1475 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}[a-z_]*left([|]|$)/]::Abbiegespur_3_L_2, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}[a-z_]*left([|]|$)/]::Abbiegespur_3_L_2 |
| | 1476 | { a3l2: true; } |
| | 1477 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}[a-z_]*left([|]|$)/]::Abbiegespur_3_L_3, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}[a-z_]*left([|]|$)/]::Abbiegespur_3_L_3 |
| | 1478 | { a3l3: true; } |
| | 1479 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}[a-z_]*left([|]|$)/]::Abbiegespur_3_L_4, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}[a-z_]*left([|]|$)/]::Abbiegespur_3_L_4 |
| | 1480 | { a3l4: true; } |
| | 1481 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}[a-z_]*left([|]|$)/]::Abbiegespur_3_L_5, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}[a-z_]*left([|]|$)/]::Abbiegespur_3_L_5 |
| | 1482 | { a3l5: true; } |
| | 1483 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}[a-z_]*left([|]|$)/]::Abbiegespur_3_L_6, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}[a-z_]*left([|]|$)/]::Abbiegespur_3_L_6 |
| | 1484 | { a3l6: true; } |
| | 1485 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}[a-z_]*left([|]|$)/]::Abbiegespur_3_L_7, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}[a-z_]*left([|]|$)/]::Abbiegespur_3_L_7 |
| | 1486 | { a3l7: true; } |
| | 1487 | |
| | 1488 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}[a-z_]*right([|]|$)/]::Abbiegespur_3_R_1, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}[a-z_]*right([|]|$)/]::Abbiegespur_3_R_1 |
| | 1489 | { a3r1: true; } |
| | 1490 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}[a-z_]*right([|]|$)/]::Abbiegespur_3_R_2, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}[a-z_]*right([|]|$)/]::Abbiegespur_3_R_2 |
| | 1491 | { a3r2: true; } |
| | 1492 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}[a-z_]*right([|]|$)/]::Abbiegespur_3_R_3, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}[a-z_]*right([|]|$)/]::Abbiegespur_3_R_3 |
| | 1493 | { a3r3: true; } |
| | 1494 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}[a-z_]*right([|]|$)/]::Abbiegespur_3_R_4, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}[a-z_]*right([|]|$)/]::Abbiegespur_3_R_4 |
| | 1495 | { a3r4: true; } |
| | 1496 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}[a-z_]*right([|]|$)/]::Abbiegespur_3_R_5, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}[a-z_]*right([|]|$)/]::Abbiegespur_3_R_5 |
| | 1497 | { a3r5: true; } |
| | 1498 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}[a-z_]*right([|]|$)/]::Abbiegespur_3_R_6, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}[a-z_]*right([|]|$)/]::Abbiegespur_3_R_6 |
| | 1499 | { a3r6: true; } |
| | 1500 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}[a-z_]*right([|]|$)/]::Abbiegespur_3_R_7, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}[a-z_]*right([|]|$)/]::Abbiegespur_3_R_7 |
| | 1501 | { a3r7: true; } |
| | 1502 | |
| | 1503 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_3_GR_1, |
| | 1504 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_3_GR_1 |
| | 1505 | { a3gr1: true; } |
| | 1506 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_3_GR_2, |
| | 1507 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_3_GR_2 |
| | 1508 | { a3gr2: true; } |
| | 1509 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_3_GR_3, |
| | 1510 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_3_GR_3 |
| | 1511 | { a3gr3: true; } |
| | 1512 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_3_GR_4, |
| | 1513 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_3_GR_4 |
| | 1514 | { a3gr4: true; } |
| | 1515 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_3_GR_5, |
| | 1516 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_3_GR_5 |
| | 1517 | { a3gr5: true; } |
| | 1518 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_3_GR_6, |
| | 1519 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_3_GR_6 |
| | 1520 | { a3gr6: true; } |
| | 1521 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_3_GR_7, |
| | 1522 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_3_GR_7 |
| | 1523 | { a3gr7: true; } |
| | 1524 | |
| | 1525 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_3_GL_1, |
| | 1526 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_3_GL_1 |
| | 1527 | { a3gl1: true; } |
| | 1528 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_3_GL_2, |
| | 1529 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_3_GL_2 |
| | 1530 | { a3gl2: true; } |
| | 1531 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_3_GL_3, |
| | 1532 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_3_GL_3 |
| | 1533 | { a3gl3: true; } |
| | 1534 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_3_GL_4, |
| | 1535 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_3_GL_4 |
| | 1536 | { a3gl4: true; } |
| | 1537 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_3_GL_5, |
| | 1538 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_3_GL_5 |
| | 1539 | { a3gl5: true; } |
| | 1540 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_3_GL_6, |
| | 1541 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_3_GL_6 |
| | 1542 | { a3gl6: true; } |
| | 1543 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_3_GL_7, |
| | 1544 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_3_GL_7 |
| | 1545 | { a3gl7: true; } |
| | 1546 | |
| | 1547 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_3_RL_1, |
| | 1548 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_3_RL_1 { a3rl1: true; } |
| | 1549 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_3_RL_2, |
| | 1550 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_3_RL_2 { a3rl2: true; } |
| | 1551 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_3_RL_3, |
| | 1552 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_3_RL_3 { a3rl3: true; } |
| | 1553 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_3_RL_4, |
| | 1554 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_3_RL_4 { a3rl4: true; } |
| | 1555 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_3_RL_5, |
| | 1556 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_3_RL_5 { a3rl5: true; } |
| | 1557 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_3_RL_6, |
| | 1558 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_3_RL_6 { a3rl6: true; } |
| | 1559 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){2}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_3_RL_7, |
| | 1560 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){2}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_3_RL_7 { a3rl7: true; } |
| | 1561 | |
| | 1562 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 1563 | /* */ |
| | 1564 | /* Definition der Layer für die einzelnen Spuren, Fahrspur 3 Gegenrichtung (backward) */ |
| | 1565 | /* */ |
| | 1566 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 1567 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}(straight|through)([|]|$)/]::Abbiegespur_3B_G_1 { a3bg1: true; } |
| | 1568 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}(straight|through)([|]|$)/]::Abbiegespur_3B_G_2 { a3bg2: true; } |
| | 1569 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}(straight|through)([|]|$)/]::Abbiegespur_3B_G_3 { a3bg3: true; } |
| | 1570 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}(straight|through)([|]|$)/]::Abbiegespur_3B_G_4 { a3bg4: true; } |
| | 1571 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}(straight|through)([|]|$)/]::Abbiegespur_3B_G_5 { a3bg5: true; } |
| | 1572 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}(straight|through)([|]|$)/]::Abbiegespur_3B_G_6 { a3bg6: true; } |
| | 1573 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}(straight|through)([|]|$)/]::Abbiegespur_3B_G_7 { a3bg7: true; } |
| | 1574 | |
| | 1575 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}[a-z_]*right([|]|$)/]::Abbiegespur_3B_R_1 { a3br1: true; } |
| | 1576 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}[a-z_]*right([|]|$)/]::Abbiegespur_3B_R_2 { a3br2: true; } |
| | 1577 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}[a-z_]*right([|]|$)/]::Abbiegespur_3B_R_3 { a3br3: true; } |
| | 1578 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}[a-z_]*right([|]|$)/]::Abbiegespur_3B_R_4 { a3br4: true; } |
| | 1579 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}[a-z_]*right([|]|$)/]::Abbiegespur_3B_R_5 { a3br5: true; } |
| | 1580 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}[a-z_]*right([|]|$)/]::Abbiegespur_3B_R_6 { a3br6: true; } |
| | 1581 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}[a-z_]*right([|]|$)/]::Abbiegespur_3B_R_7 { a3br7: true; } |
| | 1582 | |
| | 1583 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}[a-z_]*left([|]|$)/]::Abbiegespur_3B_L_1 { a3bl1: true; } |
| | 1584 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}[a-z_]*left([|]|$)/]::Abbiegespur_3B_L_2 { a3bl2: true; } |
| | 1585 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}[a-z_]*left([|]|$)/]::Abbiegespur_3B_L_3 { a3bl3: true; } |
| | 1586 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}[a-z_]*left([|]|$)/]::Abbiegespur_3B_L_4 { a3bl4: true; } |
| | 1587 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}[a-z_]*left([|]|$)/]::Abbiegespur_3B_L_5 { a3bl5: true; } |
| | 1588 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}[a-z_]*left([|]|$)/]::Abbiegespur_3B_L_6 { a3bl6: true; } |
| | 1589 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}[a-z_]*left([|]|$)/]::Abbiegespur_3B_L_7 { a3bl7: true; } |
| | 1590 | |
| | 1591 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_3B_LG_1 |
| | 1592 | { a3blg1: true; } |
| | 1593 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_3B_LG_2 |
| | 1594 | { a3blg2: true; } |
| | 1595 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_3B_LG_3 |
| | 1596 | { a3blg3: true; } |
| | 1597 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_3B_LG_4 |
| | 1598 | { a3blg4: true; } |
| | 1599 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_3B_LG_5 |
| | 1600 | { a3blg5: true; } |
| | 1601 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_3B_LG_6 |
| | 1602 | { a3blg6: true; } |
| | 1603 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_3B_LG_7 |
| | 1604 | { a3blg7: true; } |
| | 1605 | |
| | 1606 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_3B_RG_1 |
| | 1607 | { a3brg1: true; } |
| | 1608 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_3B_RG_2 |
| | 1609 | { a3brg2: true; } |
| | 1610 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_3B_RG_3 |
| | 1611 | { a3brg3: true; } |
| | 1612 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_3B_RG_4 |
| | 1613 | { a3brg4: true; } |
| | 1614 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_3B_RG_5 |
| | 1615 | { a3brg5: true; } |
| | 1616 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_3B_RG_6 |
| | 1617 | { a3brg6: true; } |
| | 1618 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_3B_RG_7 |
| | 1619 | { a3brg7: true; } |
| | 1620 | |
| | 1621 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_3B_RL_1 { a3brl1: true; } |
| | 1622 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_3B_RL_2 { a3brl2: true; } |
| | 1623 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_3B_RL_3 { a3brl3: true; } |
| | 1624 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_3B_RL_4 { a3brl4: true; } |
| | 1625 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_3B_RL_5 { a3brl5: true; } |
| | 1626 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_3B_RL_6 { a3brl6: true; } |
| | 1627 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){2}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_3B_RL_7 { a3brl7: true; } |
| | 1628 | |
| | 1629 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 1630 | /* */ |
| | 1631 | /* Definition der Layer für die einzelnen Spuren, Fahrspur 4 Vorwärts */ |
| | 1632 | /* */ |
| | 1633 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 1634 | |
| | 1635 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}(straight|through)([|]|$)/]::Abbiegespur_4_G_1, |
| | 1636 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}(straight|through)([|]|$)/]::Abbiegespur_4_G_1 { a4g1: true; } |
| | 1637 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}(straight|through)([|]|$)/]::Abbiegespur_4_G_2, |
| | 1638 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}(straight|through)([|]|$)/]::Abbiegespur_4_G_2 { a4g2: true; } |
| | 1639 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}(straight|through)([|]|$)/]::Abbiegespur_4_G_3, |
| | 1640 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}(straight|through)([|]|$)/]::Abbiegespur_4_G_3 { a4g3: true; } |
| | 1641 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}(straight|through)([|]|$)/]::Abbiegespur_4_G_4, |
| | 1642 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}(straight|through)([|]|$)/]::Abbiegespur_4_G_4 { a4g4: true; } |
| | 1643 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}(straight|through)([|]|$)/]::Abbiegespur_4_G_5, |
| | 1644 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}(straight|through)([|]|$)/]::Abbiegespur_4_G_5 { a4g5: true; } |
| | 1645 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}(straight|through)([|]|$)/]::Abbiegespur_4_G_6, |
| | 1646 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}(straight|through)([|]|$)/]::Abbiegespur_4_G_6 { a4g6: true; } |
| | 1647 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}(straight|through)([|]|$)/]::Abbiegespur_4_G_7, |
| | 1648 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}(straight|through)([|]|$)/]::Abbiegespur_4_G_7 { a4g7: true; } |
| | 1649 | |
| | 1650 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}[a-z_]*left([|]|$)/]::Abbiegespur_4_L_1, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}[a-z_]*left([|]|$)/]::Abbiegespur_4_L_1 |
| | 1651 | { a4l1: true; } |
| | 1652 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}[a-z_]*left([|]|$)/]::Abbiegespur_4_L_2, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}[a-z_]*left([|]|$)/]::Abbiegespur_4_L_2 |
| | 1653 | { a4l2: true; } |
| | 1654 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}[a-z_]*left([|]|$)/]::Abbiegespur_4_L_3, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}[a-z_]*left([|]|$)/]::Abbiegespur_4_L_3 |
| | 1655 | { a4l3: true; } |
| | 1656 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}[a-z_]*left([|]|$)/]::Abbiegespur_4_L_4, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}[a-z_]*left([|]|$)/]::Abbiegespur_4_L_4 |
| | 1657 | { a4l4: true; } |
| | 1658 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}[a-z_]*left([|]|$)/]::Abbiegespur_4_L_5, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}[a-z_]*left([|]|$)/]::Abbiegespur_4_L_5 |
| | 1659 | { a4l5: true; } |
| | 1660 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}[a-z_]*left([|]|$)/]::Abbiegespur_4_L_6, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}[a-z_]*left([|]|$)/]::Abbiegespur_4_L_6 |
| | 1661 | { a4l6: true; } |
| | 1662 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}[a-z_]*left([|]|$)/]::Abbiegespur_4_L_7, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}[a-z_]*left([|]|$)/]::Abbiegespur_4_L_7 |
| | 1663 | { a4l7: true; } |
| | 1664 | |
| | 1665 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}[a-z_]*right([|]|$)/]::Abbiegespur_4_R_1, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}[a-z_]*right([|]|$)/]::Abbiegespur_4_R_1 |
| | 1666 | { a4r1: true; } |
| | 1667 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}[a-z_]*right([|]|$)/]::Abbiegespur_4_R_2, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}[a-z_]*right([|]|$)/]::Abbiegespur_4_R_2 |
| | 1668 | { a4r2: true; } |
| | 1669 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}[a-z_]*right([|]|$)/]::Abbiegespur_4_R_3, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}[a-z_]*right([|]|$)/]::Abbiegespur_4_R_3 |
| | 1670 | { a4r3: true; } |
| | 1671 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}[a-z_]*right([|]|$)/]::Abbiegespur_4_R_4, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}[a-z_]*right([|]|$)/]::Abbiegespur_4_R_4 |
| | 1672 | { a4r4: true; } |
| | 1673 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}[a-z_]*right([|]|$)/]::Abbiegespur_4_R_5, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}[a-z_]*right([|]|$)/]::Abbiegespur_4_R_5 |
| | 1674 | { a4r5: true; } |
| | 1675 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}[a-z_]*right([|]|$)/]::Abbiegespur_4_R_6, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}[a-z_]*right([|]|$)/]::Abbiegespur_4_R_6 |
| | 1676 | { a4r6: true; } |
| | 1677 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}[a-z_]*right([|]|$)/]::Abbiegespur_4_R_7, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}[a-z_]*right([|]|$)/]::Abbiegespur_4_R_7 |
| | 1678 | { a4r7: true; } |
| | 1679 | |
| | 1680 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4_GR_1, |
| | 1681 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4_GR_1 |
| | 1682 | { a4gr1: true; } |
| | 1683 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4_GR_2, |
| | 1684 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4_GR_2 |
| | 1685 | { a4gr2: true; } |
| | 1686 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4_GR_3, |
| | 1687 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4_GR_3 |
| | 1688 | { a4gr3: true; } |
| | 1689 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4_GR_4, |
| | 1690 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4_GR_4 |
| | 1691 | { a4gr4: true; } |
| | 1692 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4_GR_5, |
| | 1693 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4_GR_5 |
| | 1694 | { a4gr5: true; } |
| | 1695 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4_GR_6, |
| | 1696 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4_GR_6 |
| | 1697 | { a4gr6: true; } |
| | 1698 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4_GR_7, |
| | 1699 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4_GR_7 |
| | 1700 | { a4gr7: true; } |
| | 1701 | |
| | 1702 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4_GL_1, |
| | 1703 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4_GL_1 |
| | 1704 | { a4gl1: true; } |
| | 1705 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4_GL_2, |
| | 1706 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4_GL_2 |
| | 1707 | { a4gl2: true; } |
| | 1708 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4_GL_3, |
| | 1709 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4_GL_3 |
| | 1710 | { a4gl3: true; } |
| | 1711 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4_GL_4, |
| | 1712 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4_GL_4 |
| | 1713 | { a4gl4: true; } |
| | 1714 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4_GL_5, |
| | 1715 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4_GL_5 |
| | 1716 | { a4gl5: true; } |
| | 1717 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4_GL_6, |
| | 1718 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4_GL_6 |
| | 1719 | { a4gl6: true; } |
| | 1720 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4_GL_7, |
| | 1721 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4_GL_7 |
| | 1722 | { a4gl7: true; } |
| | 1723 | |
| | 1724 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_4_RL_1, |
| | 1725 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_4_RL_1 { a4rl1: true; } |
| | 1726 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_4_RL_2, |
| | 1727 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_4_RL_2 { a4rl2: true; } |
| | 1728 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_4_RL_3, |
| | 1729 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_4_RL_3 { a4rl3: true; } |
| | 1730 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_4_RL_4, |
| | 1731 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_4_RL_4 { a4rl4: true; } |
| | 1732 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_4_RL_5, |
| | 1733 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_4_RL_5 { a4rl5: true; } |
| | 1734 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_4_RL_6, |
| | 1735 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_4_RL_6 { a4rl6: true; } |
| | 1736 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){3}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_4_RL_7, |
| | 1737 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){3}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_4_RL_7 { a4rl7: true; } |
| | 1738 | |
| | 1739 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 1740 | /* */ |
| | 1741 | /* Definition der Layer für die einzelnen Spuren, Fahrspur 4 Gegenrichtung (backward) */ |
| | 1742 | /* */ |
| | 1743 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 1744 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}(straight|through)([|]|$)/]::Abbiegespur_4B_G_1 { a4bg1: true; } |
| | 1745 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}(straight|through)([|]|$)/]::Abbiegespur_4B_G_2 { a4bg2: true; } |
| | 1746 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}(straight|through)([|]|$)/]::Abbiegespur_4B_G_3 { a4bg3: true; } |
| | 1747 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}(straight|through)([|]|$)/]::Abbiegespur_4B_G_4 { a4bg4: true; } |
| | 1748 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}(straight|through)([|]|$)/]::Abbiegespur_4B_G_5 { a4bg5: true; } |
| | 1749 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}(straight|through)([|]|$)/]::Abbiegespur_4B_G_6 { a4bg6: true; } |
| | 1750 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}(straight|through)([|]|$)/]::Abbiegespur_4B_G_7 { a4bg7: true; } |
| | 1751 | |
| | 1752 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}[a-z_]*right([|]|$)/]::Abbiegespur_4B_R_1 { a4br1: true; } |
| | 1753 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}[a-z_]*right([|]|$)/]::Abbiegespur_4B_R_2 { a4br2: true; } |
| | 1754 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}[a-z_]*right([|]|$)/]::Abbiegespur_4B_R_3 { a4br3: true; } |
| | 1755 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}[a-z_]*right([|]|$)/]::Abbiegespur_4B_R_4 { a4br4: true; } |
| | 1756 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}[a-z_]*right([|]|$)/]::Abbiegespur_4B_R_5 { a4br5: true; } |
| | 1757 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}[a-z_]*right([|]|$)/]::Abbiegespur_4B_R_6 { a4br6: true; } |
| | 1758 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}[a-z_]*right([|]|$)/]::Abbiegespur_4B_R_7 { a4br7: true; } |
| | 1759 | |
| | 1760 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}[a-z_]*left([|]|$)/]::Abbiegespur_4B_L_1 { a4bl1: true; } |
| | 1761 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}[a-z_]*left([|]|$)/]::Abbiegespur_4B_L_2 { a4bl2: true; } |
| | 1762 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}[a-z_]*left([|]|$)/]::Abbiegespur_4B_L_3 { a4bl3: true; } |
| | 1763 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}[a-z_]*left([|]|$)/]::Abbiegespur_4B_L_4 { a4bl4: true; } |
| | 1764 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}[a-z_]*left([|]|$)/]::Abbiegespur_4B_L_5 { a4bl5: true; } |
| | 1765 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}[a-z_]*left([|]|$)/]::Abbiegespur_4B_L_6 { a4bl6: true; } |
| | 1766 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}[a-z_]*left([|]|$)/]::Abbiegespur_4B_L_7 { a4bl7: true; } |
| | 1767 | |
| | 1768 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_4B_LG_1 |
| | 1769 | { a4blg1: true; } |
| | 1770 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_4B_LG_2 |
| | 1771 | { a4blg2: true; } |
| | 1772 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_4B_LG_3 |
| | 1773 | { a4blg3: true; } |
| | 1774 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_4B_LG_4 |
| | 1775 | { a4blg4: true; } |
| | 1776 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_4B_LG_5 |
| | 1777 | { a4blg5: true; } |
| | 1778 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_4B_LG_6 |
| | 1779 | { a4blg6: true; } |
| | 1780 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_4B_LG_7 |
| | 1781 | { a4blg7: true; } |
| | 1782 | |
| | 1783 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4B_RG_1 |
| | 1784 | { a4brg1: true; } |
| | 1785 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4B_RG_2 |
| | 1786 | { a4brg2: true; } |
| | 1787 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4B_RG_3 |
| | 1788 | { a4brg3: true; } |
| | 1789 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4B_RG_4 |
| | 1790 | { a4brg4: true; } |
| | 1791 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4B_RG_5 |
| | 1792 | { a4brg5: true; } |
| | 1793 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4B_RG_6 |
| | 1794 | { a4brg6: true; } |
| | 1795 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_4B_RG_7 |
| | 1796 | { a4brg7: true; } |
| | 1797 | |
| | 1798 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_4B_RL_1 { a4brl1: true; } |
| | 1799 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_4B_RL_2 { a4brl2: true; } |
| | 1800 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_4B_RL_3 { a4brl3: true; } |
| | 1801 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_4B_RL_4 { a4brl4: true; } |
| | 1802 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_4B_RL_5 { a4brl5: true; } |
| | 1803 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_4B_RL_6 { a4brl6: true; } |
| | 1804 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){3}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_4B_RL_7 { a4brl7: true; } |
| | 1805 | |
| | 1806 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 1807 | /* */ |
| | 1808 | /* Definition der Layer für die einzelnen Spuren, Fahrspur 5 Vorwärts */ |
| | 1809 | /* */ |
| | 1810 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 1811 | |
| | 1812 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}(straight|through)([|]|$)/]::Abbiegespur_5_G_1, |
| | 1813 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}(straight|through)([|]|$)/]::Abbiegespur_5_G_1 { a5g1: true; } |
| | 1814 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}(straight|through)([|]|$)/]::Abbiegespur_5_G_2, |
| | 1815 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}(straight|through)([|]|$)/]::Abbiegespur_5_G_2 { a5g2: true; } |
| | 1816 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}(straight|through)([|]|$)/]::Abbiegespur_5_G_3, |
| | 1817 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}(straight|through)([|]|$)/]::Abbiegespur_5_G_3 { a5g3: true; } |
| | 1818 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}(straight|through)([|]|$)/]::Abbiegespur_5_G_4, |
| | 1819 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}(straight|through)([|]|$)/]::Abbiegespur_5_G_4 { a5g4: true; } |
| | 1820 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}(straight|through)([|]|$)/]::Abbiegespur_5_G_5, |
| | 1821 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}(straight|through)([|]|$)/]::Abbiegespur_5_G_5 { a5g5: true; } |
| | 1822 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}(straight|through)([|]|$)/]::Abbiegespur_5_G_6, |
| | 1823 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}(straight|through)([|]|$)/]::Abbiegespur_5_G_6 { a5g6: true; } |
| | 1824 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}(straight|through)([|]|$)/]::Abbiegespur_5_G_7, |
| | 1825 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}(straight|through)([|]|$)/]::Abbiegespur_5_G_7 { a5g7: true; } |
| | 1826 | |
| | 1827 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}[a-z_]*left([|]|$)/]::Abbiegespur_5_L_1, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}[a-z_]*left([|]|$)/]::Abbiegespur_5_L_1 |
| | 1828 | { a5l1: true; } |
| | 1829 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}[a-z_]*left([|]|$)/]::Abbiegespur_5_L_2, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}[a-z_]*left([|]|$)/]::Abbiegespur_5_L_2 |
| | 1830 | { a5l2: true; } |
| | 1831 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}[a-z_]*left([|]|$)/]::Abbiegespur_5_L_3, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}[a-z_]*left([|]|$)/]::Abbiegespur_5_L_3 |
| | 1832 | { a5l3: true; } |
| | 1833 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}[a-z_]*left([|]|$)/]::Abbiegespur_5_L_4, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}[a-z_]*left([|]|$)/]::Abbiegespur_5_L_4 |
| | 1834 | { a5l4: true; } |
| | 1835 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}[a-z_]*left([|]|$)/]::Abbiegespur_5_L_5, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}[a-z_]*left([|]|$)/]::Abbiegespur_5_L_5 |
| | 1836 | { a5l5: true; } |
| | 1837 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}[a-z_]*left([|]|$)/]::Abbiegespur_5_L_6, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}[a-z_]*left([|]|$)/]::Abbiegespur_5_L_6 |
| | 1838 | { a5l6: true; } |
| | 1839 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}[a-z_]*left([|]|$)/]::Abbiegespur_5_L_7, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}[a-z_]*left([|]|$)/]::Abbiegespur_5_L_7 |
| | 1840 | { a5l7: true; } |
| | 1841 | |
| | 1842 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}[a-z_]*right([|]|$)/]::Abbiegespur_5_R_1, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}[a-z_]*right([|]|$)/]::Abbiegespur_5_R_1 |
| | 1843 | { a5r1: true; } |
| | 1844 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}[a-z_]*right([|]|$)/]::Abbiegespur_5_R_2, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}[a-z_]*right([|]|$)/]::Abbiegespur_5_R_2 |
| | 1845 | { a5r2: true; } |
| | 1846 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}[a-z_]*right([|]|$)/]::Abbiegespur_5_R_3, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}[a-z_]*right([|]|$)/]::Abbiegespur_5_R_3 |
| | 1847 | { a5r3: true; } |
| | 1848 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}[a-z_]*right([|]|$)/]::Abbiegespur_5_R_4, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}[a-z_]*right([|]|$)/]::Abbiegespur_5_R_4 |
| | 1849 | { a5r4: true; } |
| | 1850 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}[a-z_]*right([|]|$)/]::Abbiegespur_5_R_5, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}[a-z_]*right([|]|$)/]::Abbiegespur_5_R_5 |
| | 1851 | { a5r5: true; } |
| | 1852 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}[a-z_]*right([|]|$)/]::Abbiegespur_5_R_6, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}[a-z_]*right([|]|$)/]::Abbiegespur_5_R_6 |
| | 1853 | { a5r6: true; } |
| | 1854 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}[a-z_]*right([|]|$)/]::Abbiegespur_5_R_7, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}[a-z_]*right([|]|$)/]::Abbiegespur_5_R_7 |
| | 1855 | { a5r7: true; } |
| | 1856 | |
| | 1857 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5_GR_1, |
| | 1858 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5_GR_1 |
| | 1859 | { a5gr1: true; } |
| | 1860 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5_GR_2, |
| | 1861 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5_GR_2 |
| | 1862 | { a5gr2: true; } |
| | 1863 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5_GR_3, |
| | 1864 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5_GR_3 |
| | 1865 | { a5gr3: true; } |
| | 1866 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5_GR_4, |
| | 1867 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5_GR_4 |
| | 1868 | { a5gr4: true; } |
| | 1869 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5_GR_5, |
| | 1870 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5_GR_5 |
| | 1871 | { a5gr5: true; } |
| | 1872 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5_GR_6, |
| | 1873 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5_GR_6 |
| | 1874 | { a5gr6: true; } |
| | 1875 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5_GR_7, |
| | 1876 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5_GR_7 |
| | 1877 | { a5gr7: true; } |
| | 1878 | |
| | 1879 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5_GL_1, |
| | 1880 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5_GL_1 |
| | 1881 | { a5gl1: true; } |
| | 1882 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5_GL_2, |
| | 1883 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5_GL_2 |
| | 1884 | { a5gl2: true; } |
| | 1885 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5_GL_3, |
| | 1886 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5_GL_3 |
| | 1887 | { a5gl3: true; } |
| | 1888 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5_GL_4, |
| | 1889 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5_GL_4 |
| | 1890 | { a5gl4: true; } |
| | 1891 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5_GL_5, |
| | 1892 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5_GL_5 |
| | 1893 | { a5gl5: true; } |
| | 1894 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5_GL_6, |
| | 1895 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5_GL_6 |
| | 1896 | { a5gl6: true; } |
| | 1897 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5_GL_7, |
| | 1898 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5_GL_7 |
| | 1899 | { a5gl7: true; } |
| | 1900 | |
| | 1901 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_5_RL_1, |
| | 1902 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_5_RL_1 { a5rl1: true; } |
| | 1903 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_5_RL_2, |
| | 1904 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_5_RL_2 { a5rl2: true; } |
| | 1905 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_5_RL_3, |
| | 1906 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_5_RL_3 { a5rl3: true; } |
| | 1907 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_5_RL_4, |
| | 1908 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_5_RL_4 { a5rl4: true; } |
| | 1909 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_5_RL_5, |
| | 1910 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_5_RL_5 { a5rl5: true; } |
| | 1911 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_5_RL_6, |
| | 1912 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_5_RL_6 { a5rl6: true; } |
| | 1913 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){4}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_5_RL_7, |
| | 1914 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){4}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_5_RL_7 { a5rl7: true; } |
| | 1915 | |
| | 1916 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 1917 | /* */ |
| | 1918 | /* Definition der Layer für die einzelnen Spuren, Fahrspur 5 Gegenrichtung (backward) */ |
| | 1919 | /* */ |
| | 1920 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 1921 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}(straight|through)([|]|$)/]::Abbiegespur_5B_G_1 { a5bg1: true; } |
| | 1922 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}(straight|through)([|]|$)/]::Abbiegespur_5B_G_2 { a5bg2: true; } |
| | 1923 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}(straight|through)([|]|$)/]::Abbiegespur_5B_G_3 { a5bg3: true; } |
| | 1924 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}(straight|through)([|]|$)/]::Abbiegespur_5B_G_4 { a5bg4: true; } |
| | 1925 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}(straight|through)([|]|$)/]::Abbiegespur_5B_G_5 { a5bg5: true; } |
| | 1926 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}(straight|through)([|]|$)/]::Abbiegespur_5B_G_6 { a5bg6: true; } |
| | 1927 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}(straight|through)([|]|$)/]::Abbiegespur_5B_G_7 { a5bg7: true; } |
| | 1928 | |
| | 1929 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}[a-z_]*right([|]|$)/]::Abbiegespur_5B_R_1 { a5br1: true; } |
| | 1930 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}[a-z_]*right([|]|$)/]::Abbiegespur_5B_R_2 { a5br2: true; } |
| | 1931 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}[a-z_]*right([|]|$)/]::Abbiegespur_5B_R_3 { a5br3: true; } |
| | 1932 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}[a-z_]*right([|]|$)/]::Abbiegespur_5B_R_4 { a5br4: true; } |
| | 1933 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}[a-z_]*right([|]|$)/]::Abbiegespur_5B_R_5 { a5br5: true; } |
| | 1934 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}[a-z_]*right([|]|$)/]::Abbiegespur_5B_R_6 { a5br6: true; } |
| | 1935 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}[a-z_]*right([|]|$)/]::Abbiegespur_5B_R_7 { a5br7: true; } |
| | 1936 | |
| | 1937 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}[a-z_]*left([|]|$)/]::Abbiegespur_5B_L_1 { a5bl1: true; } |
| | 1938 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}[a-z_]*left([|]|$)/]::Abbiegespur_5B_L_2 { a5bl2: true; } |
| | 1939 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}[a-z_]*left([|]|$)/]::Abbiegespur_5B_L_3 { a5bl3: true; } |
| | 1940 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}[a-z_]*left([|]|$)/]::Abbiegespur_5B_L_4 { a5bl4: true; } |
| | 1941 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}[a-z_]*left([|]|$)/]::Abbiegespur_5B_L_5 { a5bl5: true; } |
| | 1942 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}[a-z_]*left([|]|$)/]::Abbiegespur_5B_L_6 { a5bl6: true; } |
| | 1943 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}[a-z_]*left([|]|$)/]::Abbiegespur_5B_L_7 { a5bl7: true; } |
| | 1944 | |
| | 1945 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_5B_LG_1 |
| | 1946 | { a5blg1: true; } |
| | 1947 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_5B_LG_2 |
| | 1948 | { a5blg2: true; } |
| | 1949 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_5B_LG_3 |
| | 1950 | { a5blg3: true; } |
| | 1951 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_5B_LG_4 |
| | 1952 | { a5blg4: true; } |
| | 1953 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_5B_LG_5 |
| | 1954 | { a5blg5: true; } |
| | 1955 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_5B_LG_6 |
| | 1956 | { a5blg6: true; } |
| | 1957 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_5B_LG_7 |
| | 1958 | { a5blg7: true; } |
| | 1959 | |
| | 1960 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5B_RG_1 |
| | 1961 | { a5brg1: true; } |
| | 1962 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5B_RG_2 |
| | 1963 | { a5brg2: true; } |
| | 1964 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5B_RG_3 |
| | 1965 | { a5brg3: true; } |
| | 1966 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5B_RG_4 |
| | 1967 | { a5brg4: true; } |
| | 1968 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5B_RG_5 |
| | 1969 | { a5brg5: true; } |
| | 1970 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5B_RG_6 |
| | 1971 | { a5brg6: true; } |
| | 1972 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_5B_RG_7 |
| | 1973 | { a5brg7: true; } |
| | 1974 | |
| | 1975 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_5B_RL_1 { a5brl1: true; } |
| | 1976 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_5B_RL_2 { a5brl2: true; } |
| | 1977 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_5B_RL_3 { a5brl3: true; } |
| | 1978 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_5B_RL_4 { a5brl4: true; } |
| | 1979 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_5B_RL_5 { a5brl5: true; } |
| | 1980 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_5B_RL_6 { a5brl6: true; } |
| | 1981 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){4}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_5B_RL_7 { a5brl7: true; } |
| | 1982 | |
| | 1983 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 1984 | /* */ |
| | 1985 | /* Definition der Layer für die einzelnen Spuren, Fahrspur 6 Vorwärts */ |
| | 1986 | /* */ |
| | 1987 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 1988 | |
| | 1989 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}(straight|through)([|]|$)/]::Abbiegespur_6_G_1, |
| | 1990 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}(straight|through)([|]|$)/]::Abbiegespur_6_G_1 { a6g1: true; } |
| | 1991 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}(straight|through)([|]|$)/]::Abbiegespur_6_G_2, |
| | 1992 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}(straight|through)([|]|$)/]::Abbiegespur_6_G_2 { a6g2: true; } |
| | 1993 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}(straight|through)([|]|$)/]::Abbiegespur_6_G_3, |
| | 1994 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}(straight|through)([|]|$)/]::Abbiegespur_6_G_3 { a6g3: true; } |
| | 1995 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}(straight|through)([|]|$)/]::Abbiegespur_6_G_4, |
| | 1996 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}(straight|through)([|]|$)/]::Abbiegespur_6_G_4 { a6g4: true; } |
| | 1997 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}(straight|through)([|]|$)/]::Abbiegespur_6_G_5, |
| | 1998 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}(straight|through)([|]|$)/]::Abbiegespur_6_G_5 { a6g5: true; } |
| | 1999 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}(straight|through)([|]|$)/]::Abbiegespur_6_G_6, |
| | 2000 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}(straight|through)([|]|$)/]::Abbiegespur_6_G_6 { a6g6: true; } |
| | 2001 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}(straight|through)([|]|$)/]::Abbiegespur_6_G_7, |
| | 2002 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}(straight|through)([|]|$)/]::Abbiegespur_6_G_7 { a6g7: true; } |
| | 2003 | |
| | 2004 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}[a-z_]*left([|]|$)/]::Abbiegespur_6_L_1, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}[a-z_]*left([|]|$)/]::Abbiegespur_6_L_1 |
| | 2005 | { a6l1: true; } |
| | 2006 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}[a-z_]*left([|]|$)/]::Abbiegespur_6_L_2, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}[a-z_]*left([|]|$)/]::Abbiegespur_6_L_2 |
| | 2007 | { a6l2: true; } |
| | 2008 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}[a-z_]*left([|]|$)/]::Abbiegespur_6_L_3, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}[a-z_]*left([|]|$)/]::Abbiegespur_6_L_3 |
| | 2009 | { a6l3: true; } |
| | 2010 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}[a-z_]*left([|]|$)/]::Abbiegespur_6_L_4, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}[a-z_]*left([|]|$)/]::Abbiegespur_6_L_4 |
| | 2011 | { a6l4: true; } |
| | 2012 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}[a-z_]*left([|]|$)/]::Abbiegespur_6_L_5, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}[a-z_]*left([|]|$)/]::Abbiegespur_6_L_5 |
| | 2013 | { a6l5: true; } |
| | 2014 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}[a-z_]*left([|]|$)/]::Abbiegespur_6_L_6, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}[a-z_]*left([|]|$)/]::Abbiegespur_6_L_6 |
| | 2015 | { a6l6: true; } |
| | 2016 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}[a-z_]*left([|]|$)/]::Abbiegespur_6_L_7, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}[a-z_]*left([|]|$)/]::Abbiegespur_6_L_7 |
| | 2017 | { a6l7: true; } |
| | 2018 | |
| | 2019 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}[a-z_]*right([|]|$)/]::Abbiegespur_6_R_1, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}[a-z_]*right([|]|$)/]::Abbiegespur_6_R_1 |
| | 2020 | { a6r1: true; } |
| | 2021 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}[a-z_]*right([|]|$)/]::Abbiegespur_6_R_2, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}[a-z_]*right([|]|$)/]::Abbiegespur_6_R_2 |
| | 2022 | { a6r2: true; } |
| | 2023 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}[a-z_]*right([|]|$)/]::Abbiegespur_6_R_3, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}[a-z_]*right([|]|$)/]::Abbiegespur_6_R_3 |
| | 2024 | { a6r3: true; } |
| | 2025 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}[a-z_]*right([|]|$)/]::Abbiegespur_6_R_4, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}[a-z_]*right([|]|$)/]::Abbiegespur_6_R_4 |
| | 2026 | { a6r4: true; } |
| | 2027 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}[a-z_]*right([|]|$)/]::Abbiegespur_6_R_5, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}[a-z_]*right([|]|$)/]::Abbiegespur_6_R_5 |
| | 2028 | { a6r5: true; } |
| | 2029 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}[a-z_]*right([|]|$)/]::Abbiegespur_6_R_6, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}[a-z_]*right([|]|$)/]::Abbiegespur_6_R_6 |
| | 2030 | { a6r6: true; } |
| | 2031 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}[a-z_]*right([|]|$)/]::Abbiegespur_6_R_7, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}[a-z_]*right([|]|$)/]::Abbiegespur_6_R_7 |
| | 2032 | { a6r7: true; } |
| | 2033 | |
| | 2034 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6_GR_1, |
| | 2035 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6_GR_1 |
| | 2036 | { a6gr1: true; } |
| | 2037 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6_GR_2, |
| | 2038 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6_GR_2 |
| | 2039 | { a6gr2: true; } |
| | 2040 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6_GR_3, |
| | 2041 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6_GR_3 |
| | 2042 | { a6gr3: true; } |
| | 2043 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6_GR_4, |
| | 2044 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6_GR_4 |
| | 2045 | { a6gr4: true; } |
| | 2046 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6_GR_5, |
| | 2047 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6_GR_5 |
| | 2048 | { a6gr5: true; } |
| | 2049 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6_GR_6, |
| | 2050 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6_GR_6 |
| | 2051 | { a6gr6: true; } |
| | 2052 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6_GR_7, |
| | 2053 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6_GR_7 |
| | 2054 | { a6gr7: true; } |
| | 2055 | |
| | 2056 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6_GL_1, |
| | 2057 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6_GL_1 |
| | 2058 | { a6gl1: true; } |
| | 2059 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6_GL_2, |
| | 2060 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6_GL_2 |
| | 2061 | { a6gl2: true; } |
| | 2062 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6_GL_3, |
| | 2063 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6_GL_3 |
| | 2064 | { a6gl3: true; } |
| | 2065 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6_GL_4, |
| | 2066 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6_GL_4 |
| | 2067 | { a6gl4: true; } |
| | 2068 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6_GL_5, |
| | 2069 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6_GL_5 |
| | 2070 | { a6gl5: true; } |
| | 2071 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6_GL_6, |
| | 2072 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6_GL_6 |
| | 2073 | { a6gl6: true; } |
| | 2074 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6_GL_7, |
| | 2075 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6_GL_7 |
| | 2076 | { a6gl7: true; } |
| | 2077 | |
| | 2078 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_6_RL_1, |
| | 2079 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_6_RL_1 { a6rl1: true; } |
| | 2080 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_6_RL_2, |
| | 2081 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_6_RL_2 { a6rl2: true; } |
| | 2082 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_6_RL_3, |
| | 2083 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_6_RL_3 { a6rl3: true; } |
| | 2084 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_6_RL_4, |
| | 2085 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_6_RL_4 { a6rl4: true; } |
| | 2086 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_6_RL_5, |
| | 2087 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_6_RL_5 { a6rl5: true; } |
| | 2088 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_6_RL_6, |
| | 2089 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_6_RL_6 { a6rl6: true; } |
| | 2090 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){5}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_6_RL_7, |
| | 2091 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){5}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_6_RL_7 { a6rl7: true; } |
| | 2092 | |
| | 2093 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 2094 | /* */ |
| | 2095 | /* Definition der Layer für die einzelnen Spuren, Fahrspur 6 Gegenrichtung (backward) */ |
| | 2096 | /* */ |
| | 2097 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 2098 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}(straight|through)([|]|$)/]::Abbiegespur_6B_G_1 { a6bg1: true; } |
| | 2099 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}(straight|through)([|]|$)/]::Abbiegespur_6B_G_2 { a6bg2: true; } |
| | 2100 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}(straight|through)([|]|$)/]::Abbiegespur_6B_G_3 { a6bg3: true; } |
| | 2101 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}(straight|through)([|]|$)/]::Abbiegespur_6B_G_4 { a6bg4: true; } |
| | 2102 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}(straight|through)([|]|$)/]::Abbiegespur_6B_G_5 { a6bg5: true; } |
| | 2103 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}(straight|through)([|]|$)/]::Abbiegespur_6B_G_6 { a6bg6: true; } |
| | 2104 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}(straight|through)([|]|$)/]::Abbiegespur_6B_G_7 { a6bg7: true; } |
| | 2105 | |
| | 2106 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}[a-z_]*right([|]|$)/]::Abbiegespur_6B_R_1 { a6br1: true; } |
| | 2107 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}[a-z_]*right([|]|$)/]::Abbiegespur_6B_R_2 { a6br2: true; } |
| | 2108 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}[a-z_]*right([|]|$)/]::Abbiegespur_6B_R_3 { a6br3: true; } |
| | 2109 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}[a-z_]*right([|]|$)/]::Abbiegespur_6B_R_4 { a6br4: true; } |
| | 2110 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}[a-z_]*right([|]|$)/]::Abbiegespur_6B_R_5 { a6br5: true; } |
| | 2111 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}[a-z_]*right([|]|$)/]::Abbiegespur_6B_R_6 { a6br6: true; } |
| | 2112 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}[a-z_]*right([|]|$)/]::Abbiegespur_6B_R_7 { a6br7: true; } |
| | 2113 | |
| | 2114 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}[a-z_]*left([|]|$)/]::Abbiegespur_6B_L_1 { a6bl1: true; } |
| | 2115 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}[a-z_]*left([|]|$)/]::Abbiegespur_6B_L_2 { a6bl2: true; } |
| | 2116 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}[a-z_]*left([|]|$)/]::Abbiegespur_6B_L_3 { a6bl3: true; } |
| | 2117 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}[a-z_]*left([|]|$)/]::Abbiegespur_6B_L_4 { a6bl4: true; } |
| | 2118 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}[a-z_]*left([|]|$)/]::Abbiegespur_6B_L_5 { a6bl5: true; } |
| | 2119 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}[a-z_]*left([|]|$)/]::Abbiegespur_6B_L_6 { a6bl6: true; } |
| | 2120 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}[a-z_]*left([|]|$)/]::Abbiegespur_6B_L_7 { a6bl7: true; } |
| | 2121 | |
| | 2122 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_6B_LG_1 |
| | 2123 | { a6blg1: true; } |
| | 2124 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_6B_LG_2 |
| | 2125 | { a6blg2: true; } |
| | 2126 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_6B_LG_3 |
| | 2127 | { a6blg3: true; } |
| | 2128 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_6B_LG_4 |
| | 2129 | { a6blg4: true; } |
| | 2130 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_6B_LG_5 |
| | 2131 | { a6blg5: true; } |
| | 2132 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_6B_LG_6 |
| | 2133 | { a6blg6: true; } |
| | 2134 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_6B_LG_7 |
| | 2135 | { a6blg7: true; } |
| | 2136 | |
| | 2137 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6B_RG_1 |
| | 2138 | { a6brg1: true; } |
| | 2139 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6B_RG_2 |
| | 2140 | { a6brg2: true; } |
| | 2141 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6B_RG_3 |
| | 2142 | { a6brg3: true; } |
| | 2143 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6B_RG_4 |
| | 2144 | { a6brg4: true; } |
| | 2145 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6B_RG_5 |
| | 2146 | { a6brg5: true; } |
| | 2147 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6B_RG_6 |
| | 2148 | { a6brg6: true; } |
| | 2149 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_6B_RG_7 |
| | 2150 | { a6brg7: true; } |
| | 2151 | |
| | 2152 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_6B_RL_1 { a6brl1: true; } |
| | 2153 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_6B_RL_2 { a6brl2: true; } |
| | 2154 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_6B_RL_3 { a6brl3: true; } |
| | 2155 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_6B_RL_4 { a6brl4: true; } |
| | 2156 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_6B_RL_5 { a6brl5: true; } |
| | 2157 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_6B_RL_6 { a6brl6: true; } |
| | 2158 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){5}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_6B_RL_7 { a6brl7: true; } |
| | 2159 | |
| | 2160 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 2161 | /* */ |
| | 2162 | /* Definition der Layer für die einzelnen Spuren, Fahrspur 7 Vorwärts */ |
| | 2163 | /* */ |
| | 2164 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 2165 | |
| | 2166 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}(straight|through)([|]|$)/]::Abbiegespur_7_G_1, |
| | 2167 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}(straight|through)([|]|$)/]::Abbiegespur_7_G_1 { a7g1: true; } |
| | 2168 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}(straight|through)([|]|$)/]::Abbiegespur_7_G_2, |
| | 2169 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}(straight|through)([|]|$)/]::Abbiegespur_7_G_2 { a7g2: true; } |
| | 2170 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}(straight|through)([|]|$)/]::Abbiegespur_7_G_3, |
| | 2171 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}(straight|through)([|]|$)/]::Abbiegespur_7_G_3 { a7g3: true; } |
| | 2172 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}(straight|through)([|]|$)/]::Abbiegespur_7_G_4, |
| | 2173 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}(straight|through)([|]|$)/]::Abbiegespur_7_G_4 { a7g4: true; } |
| | 2174 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}(straight|through)([|]|$)/]::Abbiegespur_7_G_5, |
| | 2175 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}(straight|through)([|]|$)/]::Abbiegespur_7_G_5 { a7g5: true; } |
| | 2176 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}(straight|through)([|]|$)/]::Abbiegespur_7_G_6, |
| | 2177 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}(straight|through)([|]|$)/]::Abbiegespur_7_G_6 { a7g6: true; } |
| | 2178 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}(straight|through)([|]|$)/]::Abbiegespur_7_G_7, |
| | 2179 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}(straight|through)([|]|$)/]::Abbiegespur_7_G_7 { a7g7: true; } |
| | 2180 | |
| | 2181 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}[a-z_]*left([|]|$)/]::Abbiegespur_7_L_1, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}[a-z_]*left([|]|$)/]::Abbiegespur_7_L_1 |
| | 2182 | { a7l1: true; } |
| | 2183 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}[a-z_]*left([|]|$)/]::Abbiegespur_7_L_2, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}[a-z_]*left([|]|$)/]::Abbiegespur_7_L_2 |
| | 2184 | { a7l2: true; } |
| | 2185 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}[a-z_]*left([|]|$)/]::Abbiegespur_7_L_3, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}[a-z_]*left([|]|$)/]::Abbiegespur_7_L_3 |
| | 2186 | { a7l3: true; } |
| | 2187 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}[a-z_]*left([|]|$)/]::Abbiegespur_7_L_4, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}[a-z_]*left([|]|$)/]::Abbiegespur_7_L_4 |
| | 2188 | { a7l4: true; } |
| | 2189 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}[a-z_]*left([|]|$)/]::Abbiegespur_7_L_5, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}[a-z_]*left([|]|$)/]::Abbiegespur_7_L_5 |
| | 2190 | { a7l5: true; } |
| | 2191 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}[a-z_]*left([|]|$)/]::Abbiegespur_7_L_6, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}[a-z_]*left([|]|$)/]::Abbiegespur_7_L_6 |
| | 2192 | { a7l6: true; } |
| | 2193 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}[a-z_]*left([|]|$)/]::Abbiegespur_7_L_7, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}[a-z_]*left([|]|$)/]::Abbiegespur_7_L_7 |
| | 2194 | { a7l7: true; } |
| | 2195 | |
| | 2196 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}[a-z_]*right([|]|$)/]::Abbiegespur_7_R_1, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}[a-z_]*right([|]|$)/]::Abbiegespur_7_R_1 |
| | 2197 | { a7r1: true; } |
| | 2198 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}[a-z_]*right([|]|$)/]::Abbiegespur_7_R_2, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}[a-z_]*right([|]|$)/]::Abbiegespur_7_R_2 |
| | 2199 | { a7r2: true; } |
| | 2200 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}[a-z_]*right([|]|$)/]::Abbiegespur_7_R_3, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}[a-z_]*right([|]|$)/]::Abbiegespur_7_R_3 |
| | 2201 | { a7r3: true; } |
| | 2202 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}[a-z_]*right([|]|$)/]::Abbiegespur_7_R_4, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}[a-z_]*right([|]|$)/]::Abbiegespur_7_R_4 |
| | 2203 | { a7r4: true; } |
| | 2204 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}[a-z_]*right([|]|$)/]::Abbiegespur_7_R_5, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}[a-z_]*right([|]|$)/]::Abbiegespur_7_R_5 |
| | 2205 | { a7r5: true; } |
| | 2206 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}[a-z_]*right([|]|$)/]::Abbiegespur_7_R_6, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}[a-z_]*right([|]|$)/]::Abbiegespur_7_R_6 |
| | 2207 | { a7r6: true; } |
| | 2208 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}[a-z_]*right([|]|$)/]::Abbiegespur_7_R_7, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}[a-z_]*right([|]|$)/]::Abbiegespur_7_R_7 |
| | 2209 | { a7r7: true; } |
| | 2210 | |
| | 2211 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7_GR_1, |
| | 2212 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7_GR_1 |
| | 2213 | { a7gr1: true; } |
| | 2214 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7_GR_2, |
| | 2215 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7_GR_2 |
| | 2216 | { a7gr2: true; } |
| | 2217 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7_GR_3, |
| | 2218 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7_GR_3 |
| | 2219 | { a7gr3: true; } |
| | 2220 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7_GR_4, |
| | 2221 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7_GR_4 |
| | 2222 | { a7gr4: true; } |
| | 2223 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7_GR_5, |
| | 2224 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7_GR_5 |
| | 2225 | { a7gr5: true; } |
| | 2226 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7_GR_6, |
| | 2227 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7_GR_6 |
| | 2228 | { a7gr6: true; } |
| | 2229 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7_GR_7, |
| | 2230 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7_GR_7 |
| | 2231 | { a7gr7: true; } |
| | 2232 | |
| | 2233 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7_GL_1, |
| | 2234 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7_GL_1 |
| | 2235 | { a7gl1: true; } |
| | 2236 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7_GL_2, |
| | 2237 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7_GL_2 |
| | 2238 | { a7gl2: true; } |
| | 2239 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7_GL_3, |
| | 2240 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7_GL_3 |
| | 2241 | { a7gl3: true; } |
| | 2242 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7_GL_4, |
| | 2243 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7_GL_4 |
| | 2244 | { a7gl4: true; } |
| | 2245 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7_GL_5, |
| | 2246 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7_GL_5 |
| | 2247 | { a7gl5: true; } |
| | 2248 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7_GL_6, |
| | 2249 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7_GL_6 |
| | 2250 | { a7gl6: true; } |
| | 2251 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7_GL_7, |
| | 2252 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7_GL_7 |
| | 2253 | { a7gl7: true; } |
| | 2254 | |
| | 2255 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_7_RL_1, |
| | 2256 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_7_RL_1 { a7rl1: true; } |
| | 2257 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_7_RL_2, |
| | 2258 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_7_RL_2 { a7rl2: true; } |
| | 2259 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_7_RL_3, |
| | 2260 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_7_RL_3 { a7rl3: true; } |
| | 2261 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_7_RL_4, |
| | 2262 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_7_RL_4 { a7rl4: true; } |
| | 2263 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_7_RL_5, |
| | 2264 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_7_RL_5 { a7rl5: true; } |
| | 2265 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_7_RL_6, |
| | 2266 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_7_RL_6 { a7rl6: true; } |
| | 2267 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){6}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_7_RL_7, |
| | 2268 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){6}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_7_RL_7 { a7rl7: true; } |
| | 2269 | |
| | 2270 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 2271 | /* */ |
| | 2272 | /* Definition der Layer für die einzelnen Spuren, Fahrspur 7 Gegenrichtung (backward) */ |
| | 2273 | /* */ |
| | 2274 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 2275 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}(straight|through)([|]|$)/]::Abbiegespur_7B_G_1 { a7bg1: true; } |
| | 2276 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}(straight|through)([|]|$)/]::Abbiegespur_7B_G_2 { a7bg2: true; } |
| | 2277 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}(straight|through)([|]|$)/]::Abbiegespur_7B_G_3 { a7bg3: true; } |
| | 2278 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}(straight|through)([|]|$)/]::Abbiegespur_7B_G_4 { a7bg4: true; } |
| | 2279 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}(straight|through)([|]|$)/]::Abbiegespur_7B_G_5 { a7bg5: true; } |
| | 2280 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}(straight|through)([|]|$)/]::Abbiegespur_7B_G_6 { a7bg6: true; } |
| | 2281 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}(straight|through)([|]|$)/]::Abbiegespur_7B_G_7 { a7bg7: true; } |
| | 2282 | |
| | 2283 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}[a-z_]*right([|]|$)/]::Abbiegespur_7B_R_1 { a7br1: true; } |
| | 2284 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}[a-z_]*right([|]|$)/]::Abbiegespur_7B_R_2 { a7br2: true; } |
| | 2285 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}[a-z_]*right([|]|$)/]::Abbiegespur_7B_R_3 { a7br3: true; } |
| | 2286 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}[a-z_]*right([|]|$)/]::Abbiegespur_7B_R_4 { a7br4: true; } |
| | 2287 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}[a-z_]*right([|]|$)/]::Abbiegespur_7B_R_5 { a7br5: true; } |
| | 2288 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}[a-z_]*right([|]|$)/]::Abbiegespur_7B_R_6 { a7br6: true; } |
| | 2289 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}[a-z_]*right([|]|$)/]::Abbiegespur_7B_R_7 { a7br7: true; } |
| | 2290 | |
| | 2291 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}[a-z_]*left([|]|$)/]::Abbiegespur_7B_L_1 { a7bl1: true; } |
| | 2292 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}[a-z_]*left([|]|$)/]::Abbiegespur_7B_L_2 { a7bl2: true; } |
| | 2293 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}[a-z_]*left([|]|$)/]::Abbiegespur_7B_L_3 { a7bl3: true; } |
| | 2294 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}[a-z_]*left([|]|$)/]::Abbiegespur_7B_L_4 { a7bl4: true; } |
| | 2295 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}[a-z_]*left([|]|$)/]::Abbiegespur_7B_L_5 { a7bl5: true; } |
| | 2296 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}[a-z_]*left([|]|$)/]::Abbiegespur_7B_L_6 { a7bl6: true; } |
| | 2297 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}[a-z_]*left([|]|$)/]::Abbiegespur_7B_L_7 { a7bl7: true; } |
| | 2298 | |
| | 2299 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_7B_LG_1 |
| | 2300 | { a7blg1: true; } |
| | 2301 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_7B_LG_2 |
| | 2302 | { a7blg2: true; } |
| | 2303 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_7B_LG_3 |
| | 2304 | { a7blg3: true; } |
| | 2305 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_7B_LG_4 |
| | 2306 | { a7blg4: true; } |
| | 2307 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_7B_LG_5 |
| | 2308 | { a7blg5: true; } |
| | 2309 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_7B_LG_6 |
| | 2310 | { a7blg6: true; } |
| | 2311 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_7B_LG_7 |
| | 2312 | { a7blg7: true; } |
| | 2313 | |
| | 2314 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7B_RG_1 |
| | 2315 | { a7brg1: true; } |
| | 2316 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7B_RG_2 |
| | 2317 | { a7brg2: true; } |
| | 2318 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7B_RG_3 |
| | 2319 | { a7brg3: true; } |
| | 2320 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7B_RG_4 |
| | 2321 | { a7brg4: true; } |
| | 2322 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7B_RG_5 |
| | 2323 | { a7brg5: true; } |
| | 2324 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7B_RG_6 |
| | 2325 | { a7brg6: true; } |
| | 2326 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_7B_RG_7 |
| | 2327 | { a7brg7: true; } |
| | 2328 | |
| | 2329 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_7B_RL_1 { a7brl1: true; } |
| | 2330 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_7B_RL_2 { a7brl2: true; } |
| | 2331 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_7B_RL_3 { a7brl3: true; } |
| | 2332 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_7B_RL_4 { a7brl4: true; } |
| | 2333 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_7B_RL_5 { a7brl5: true; } |
| | 2334 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_7B_RL_6 { a7brl6: true; } |
| | 2335 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){6}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_7B_RL_7 { a7brl7: true; } |
| | 2336 | |
| | 2337 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 2338 | /* */ |
| | 2339 | /* Definition der Layer für die einzelnen Spuren, Fahrspur 8 Vorwärts */ |
| | 2340 | /* */ |
| | 2341 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 2342 | |
| | 2343 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}(straight|through)([|]|$)/]::Abbiegespur_8_G_1, |
| | 2344 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}(straight|through)([|]|$)/]::Abbiegespur_8_G_1 { a8g1: true; } |
| | 2345 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}(straight|through)([|]|$)/]::Abbiegespur_8_G_2, |
| | 2346 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}(straight|through)([|]|$)/]::Abbiegespur_8_G_2 { a8g2: true; } |
| | 2347 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}(straight|through)([|]|$)/]::Abbiegespur_8_G_3, |
| | 2348 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}(straight|through)([|]|$)/]::Abbiegespur_8_G_3 { a8g3: true; } |
| | 2349 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}(straight|through)([|]|$)/]::Abbiegespur_8_G_4, |
| | 2350 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}(straight|through)([|]|$)/]::Abbiegespur_8_G_4 { a8g4: true; } |
| | 2351 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}(straight|through)([|]|$)/]::Abbiegespur_8_G_5, |
| | 2352 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}(straight|through)([|]|$)/]::Abbiegespur_8_G_5 { a8g5: true; } |
| | 2353 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}(straight|through)([|]|$)/]::Abbiegespur_8_G_6, |
| | 2354 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}(straight|through)([|]|$)/]::Abbiegespur_8_G_6 { a8g6: true; } |
| | 2355 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}(straight|through)([|]|$)/]::Abbiegespur_8_G_7, |
| | 2356 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}(straight|through)([|]|$)/]::Abbiegespur_8_G_7 { a8g7: true; } |
| | 2357 | |
| | 2358 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}[a-z_]*left([|]|$)/]::Abbiegespur_8_L_1, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}[a-z_]*left([|]|$)/]::Abbiegespur_8_L_1 |
| | 2359 | { a8l1: true; } |
| | 2360 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}[a-z_]*left([|]|$)/]::Abbiegespur_8_L_2, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}[a-z_]*left([|]|$)/]::Abbiegespur_8_L_2 |
| | 2361 | { a8l2: true; } |
| | 2362 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}[a-z_]*left([|]|$)/]::Abbiegespur_8_L_3, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}[a-z_]*left([|]|$)/]::Abbiegespur_8_L_3 |
| | 2363 | { a8l3: true; } |
| | 2364 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}[a-z_]*left([|]|$)/]::Abbiegespur_8_L_4, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}[a-z_]*left([|]|$)/]::Abbiegespur_8_L_4 |
| | 2365 | { a8l4: true; } |
| | 2366 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}[a-z_]*left([|]|$)/]::Abbiegespur_8_L_5, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}[a-z_]*left([|]|$)/]::Abbiegespur_8_L_5 |
| | 2367 | { a8l5: true; } |
| | 2368 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}[a-z_]*left([|]|$)/]::Abbiegespur_8_L_6, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}[a-z_]*left([|]|$)/]::Abbiegespur_8_L_6 |
| | 2369 | { a8l6: true; } |
| | 2370 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}[a-z_]*left([|]|$)/]::Abbiegespur_8_L_7, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}[a-z_]*left([|]|$)/]::Abbiegespur_8_L_7 |
| | 2371 | { a8l7: true; } |
| | 2372 | |
| | 2373 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}[a-z_]*right([|]|$)/]::Abbiegespur_8_R_1, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}[a-z_]*right([|]|$)/]::Abbiegespur_8_R_1 |
| | 2374 | { a8r1: true; } |
| | 2375 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}[a-z_]*right([|]|$)/]::Abbiegespur_8_R_2, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}[a-z_]*right([|]|$)/]::Abbiegespur_8_R_2 |
| | 2376 | { a8r2: true; } |
| | 2377 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}[a-z_]*right([|]|$)/]::Abbiegespur_8_R_3, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}[a-z_]*right([|]|$)/]::Abbiegespur_8_R_3 |
| | 2378 | { a8r3: true; } |
| | 2379 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}[a-z_]*right([|]|$)/]::Abbiegespur_8_R_4, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}[a-z_]*right([|]|$)/]::Abbiegespur_8_R_4 |
| | 2380 | { a8r4: true; } |
| | 2381 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}[a-z_]*right([|]|$)/]::Abbiegespur_8_R_5, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}[a-z_]*right([|]|$)/]::Abbiegespur_8_R_5 |
| | 2382 | { a8r5: true; } |
| | 2383 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}[a-z_]*right([|]|$)/]::Abbiegespur_8_R_6, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}[a-z_]*right([|]|$)/]::Abbiegespur_8_R_6 |
| | 2384 | { a8r6: true; } |
| | 2385 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}[a-z_]*right([|]|$)/]::Abbiegespur_8_R_7, way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}[a-z_]*right([|]|$)/]::Abbiegespur_8_R_7 |
| | 2386 | { a8r7: true; } |
| | 2387 | |
| | 2388 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8_GR_1, |
| | 2389 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8_GR_1 |
| | 2390 | { a8gr1: true; } |
| | 2391 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8_GR_2, |
| | 2392 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8_GR_2 |
| | 2393 | { a8gr2: true; } |
| | 2394 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8_GR_3, |
| | 2395 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8_GR_3 |
| | 2396 | { a8gr3: true; } |
| | 2397 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8_GR_4, |
| | 2398 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8_GR_4 |
| | 2399 | { a8gr4: true; } |
| | 2400 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8_GR_5, |
| | 2401 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8_GR_5 |
| | 2402 | { a8gr5: true; } |
| | 2403 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8_GR_6, |
| | 2404 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8_GR_6 |
| | 2405 | { a8gr6: true; } |
| | 2406 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8_GR_7, |
| | 2407 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8_GR_7 |
| | 2408 | { a8gr7: true; } |
| | 2409 | |
| | 2410 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8_GL_1, |
| | 2411 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8_GL_1 |
| | 2412 | { a8gl1: true; } |
| | 2413 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8_GL_2, |
| | 2414 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8_GL_2 |
| | 2415 | { a8gl2: true; } |
| | 2416 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8_GL_3, |
| | 2417 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8_GL_3 |
| | 2418 | { a8gl3: true; } |
| | 2419 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8_GL_4, |
| | 2420 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8_GL_4 |
| | 2421 | { a8gl4: true; } |
| | 2422 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8_GL_5, |
| | 2423 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8_GL_5 |
| | 2424 | { a8gl5: true; } |
| | 2425 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8_GL_6, |
| | 2426 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8_GL_6 |
| | 2427 | { a8gl6: true; } |
| | 2428 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8_GL_7, |
| | 2429 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}([a-z_]*right;strait|strait;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8_GL_7 |
| | 2430 | { a8gl7: true; } |
| | 2431 | |
| | 2432 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_8_RL_1, |
| | 2433 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_8_RL_1 { a8rl1: true; } |
| | 2434 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_8_RL_2, |
| | 2435 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_8_RL_2 { a8rl2: true; } |
| | 2436 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_8_RL_3, |
| | 2437 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_8_RL_3 { a8rl3: true; } |
| | 2438 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_8_RL_4, |
| | 2439 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_8_RL_4 { a8rl4: true; } |
| | 2440 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_8_RL_5, |
| | 2441 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_8_RL_5 { a8rl5: true; } |
| | 2442 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_8_RL_6, |
| | 2443 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_8_RL_6 { a8rl6: true; } |
| | 2444 | way|z19-[turn:lanes=~/^([a-z;_]*[|]){7}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_8_RL_7, |
| | 2445 | way|z19-[turn:lanes:forward=~/^([a-z;_]*[|]){7}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_8_RL_7 { a8rl7: true; } |
| | 2446 | |
| | 2447 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 2448 | /* */ |
| | 2449 | /* Definition der Layer für die einzelnen Spuren, Fahrspur 8 Gegenrichtung (backward) */ |
| | 2450 | /* */ |
| | 2451 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 2452 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}(straight|through)([|]|$)/]::Abbiegespur_8B_G_1 { a8bg1: true; } |
| | 2453 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}(straight|through)([|]|$)/]::Abbiegespur_8B_G_2 { a8bg2: true; } |
| | 2454 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}(straight|through)([|]|$)/]::Abbiegespur_8B_G_3 { a8bg3: true; } |
| | 2455 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}(straight|through)([|]|$)/]::Abbiegespur_8B_G_4 { a8bg4: true; } |
| | 2456 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}(straight|through)([|]|$)/]::Abbiegespur_8B_G_5 { a8bg5: true; } |
| | 2457 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}(straight|through)([|]|$)/]::Abbiegespur_8B_G_6 { a8bg6: true; } |
| | 2458 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}(straight|through)([|]|$)/]::Abbiegespur_8B_G_7 { a8bg7: true; } |
| | 2459 | |
| | 2460 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}[a-z_]*right([|]|$)/]::Abbiegespur_8B_R_1 { a8br1: true; } |
| | 2461 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}[a-z_]*right([|]|$)/]::Abbiegespur_8B_R_2 { a8br2: true; } |
| | 2462 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}[a-z_]*right([|]|$)/]::Abbiegespur_8B_R_3 { a8br3: true; } |
| | 2463 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}[a-z_]*right([|]|$)/]::Abbiegespur_8B_R_4 { a8br4: true; } |
| | 2464 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}[a-z_]*right([|]|$)/]::Abbiegespur_8B_R_5 { a8br5: true; } |
| | 2465 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}[a-z_]*right([|]|$)/]::Abbiegespur_8B_R_6 { a8br6: true; } |
| | 2466 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}[a-z_]*right([|]|$)/]::Abbiegespur_8B_R_7 { a8br7: true; } |
| | 2467 | |
| | 2468 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}[a-z_]*left([|]|$)/]::Abbiegespur_8B_L_1 { a8bl1: true; } |
| | 2469 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}[a-z_]*left([|]|$)/]::Abbiegespur_8B_L_2 { a8bl2: true; } |
| | 2470 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}[a-z_]*left([|]|$)/]::Abbiegespur_8B_L_3 { a8bl3: true; } |
| | 2471 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}[a-z_]*left([|]|$)/]::Abbiegespur_8B_L_4 { a8bl4: true; } |
| | 2472 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}[a-z_]*left([|]|$)/]::Abbiegespur_8B_L_5 { a8bl5: true; } |
| | 2473 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}[a-z_]*left([|]|$)/]::Abbiegespur_8B_L_6 { a8bl6: true; } |
| | 2474 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}[a-z_]*left([|]|$)/]::Abbiegespur_8B_L_7 { a8bl7: true; } |
| | 2475 | |
| | 2476 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_8B_LG_1 |
| | 2477 | { a8blg1: true; } |
| | 2478 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_8B_LG_2 |
| | 2479 | { a8blg2: true; } |
| | 2480 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_8B_LG_3 |
| | 2481 | { a8blg3: true; } |
| | 2482 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_8B_LG_4 |
| | 2483 | { a8blg4: true; } |
| | 2484 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_8B_LG_5 |
| | 2485 | { a8blg5: true; } |
| | 2486 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_8B_LG_6 |
| | 2487 | { a8blg6: true; } |
| | 2488 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}([a-z_]*left;straight|straight;[a-z_]*left|[a-z_]*left;through|through;[a-z_]*left)([|]|$)/]::Abbiegespur_8B_LG_7 |
| | 2489 | { a8blg7: true; } |
| | 2490 | |
| | 2491 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8B_RG_1 |
| | 2492 | { a8brg1: true; } |
| | 2493 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8B_RG_2 |
| | 2494 | { a8brg2: true; } |
| | 2495 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8B_RG_3 |
| | 2496 | { a8brg3: true; } |
| | 2497 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8B_RG_4 |
| | 2498 | { a8brg4: true; } |
| | 2499 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8B_RG_5 |
| | 2500 | { a8brg5: true; } |
| | 2501 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8B_RG_6 |
| | 2502 | { a8brg6: true; } |
| | 2503 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}([a-z_]*right;straight|straight;[a-z_]*right|[a-z_]*right;through|through;[a-z_]*right)([|]|$)/]::Abbiegespur_8B_RG_7 |
| | 2504 | { a8brg7: true; } |
| | 2505 | |
| | 2506 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_8B_RL_1 { a8brl1: true; } |
| | 2507 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_8B_RL_2 { a8brl2: true; } |
| | 2508 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_8B_RL_3 { a8brl3: true; } |
| | 2509 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_8B_RL_4 { a8brl4: true; } |
| | 2510 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_8B_RL_5 { a8brl5: true; } |
| | 2511 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_8B_RL_6 { a8brl6: true; } |
| | 2512 | way|z19-[turn:lanes:backward=~/^([a-z;_]*[|]){7}([a-z_]*right;[a-z_]*left|[a-z_]*left;[a-z_]*right)([|]|$)/]::Abbiegespur_8B_RL_7 { a8brl7: true; } |
| | 2513 | |
| | 2514 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 2515 | /* */ |
| | 2516 | /* Konstanten für alle Linien aller Fahrspuren */ |
| | 2517 | /* */ |
| | 2518 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 2519 | way[is_prop_set(a1g1, "Abbiegespur_1_G_1")]::Abbiegespur_1_G_1, |
| | 2520 | way[is_prop_set(a1g2, "Abbiegespur_1_G_2")]::Abbiegespur_1_G_2, |
| | 2521 | way[is_prop_set(a1g3, "Abbiegespur_1_G_3")]::Abbiegespur_1_G_3, |
| | 2522 | way[is_prop_set(a1g4, "Abbiegespur_1_G_4")]::Abbiegespur_1_G_4, |
| | 2523 | way[is_prop_set(a1g5, "Abbiegespur_1_G_5")]::Abbiegespur_1_G_5, |
| | 2524 | way[is_prop_set(a1g6, "Abbiegespur_1_G_6")]::Abbiegespur_1_G_6, |
| | 2525 | way[is_prop_set(a1g7, "Abbiegespur_1_G_7")]::Abbiegespur_1_G_7, |
| | 2526 | way[is_prop_set(a1r1, "Abbiegespur_1_R_1")]::Abbiegespur_1_R_1, |
| | 2527 | way[is_prop_set(a1r2, "Abbiegespur_1_R_2")]::Abbiegespur_1_R_2, |
| | 2528 | way[is_prop_set(a1r3, "Abbiegespur_1_R_3")]::Abbiegespur_1_R_3, |
| | 2529 | way[is_prop_set(a1r4, "Abbiegespur_1_R_4")]::Abbiegespur_1_R_4, |
| | 2530 | way[is_prop_set(a1r5, "Abbiegespur_1_R_5")]::Abbiegespur_1_R_5, |
| | 2531 | way[is_prop_set(a1r6, "Abbiegespur_1_R_6")]::Abbiegespur_1_R_6, |
| | 2532 | way[is_prop_set(a1r7, "Abbiegespur_1_R_7")]::Abbiegespur_1_R_7, |
| | 2533 | way[is_prop_set(a1l1, "Abbiegespur_1_L_1")]::Abbiegespur_1_L_1, |
| | 2534 | way[is_prop_set(a1l2, "Abbiegespur_1_L_2")]::Abbiegespur_1_L_2, |
| | 2535 | way[is_prop_set(a1l3, "Abbiegespur_1_L_3")]::Abbiegespur_1_L_3, |
| | 2536 | way[is_prop_set(a1l4, "Abbiegespur_1_L_4")]::Abbiegespur_1_L_4, |
| | 2537 | way[is_prop_set(a1l5, "Abbiegespur_1_L_5")]::Abbiegespur_1_L_5, |
| | 2538 | way[is_prop_set(a1l6, "Abbiegespur_1_L_6")]::Abbiegespur_1_L_6, |
| | 2539 | way[is_prop_set(a1l7, "Abbiegespur_1_L_7")]::Abbiegespur_1_L_7, |
| | 2540 | way[is_prop_set(a1lg1, "Abbiegespur_1_LG_1")]::Abbiegespur_1_LG_1, |
| | 2541 | way[is_prop_set(a1lg2, "Abbiegespur_1_LG_2")]::Abbiegespur_1_LG_2, |
| | 2542 | way[is_prop_set(a1lg3, "Abbiegespur_1_LG_3")]::Abbiegespur_1_LG_3, |
| | 2543 | way[is_prop_set(a1lg4, "Abbiegespur_1_LG_4")]::Abbiegespur_1_LG_4, |
| | 2544 | way[is_prop_set(a1lg5, "Abbiegespur_1_LG_5")]::Abbiegespur_1_LG_5, |
| | 2545 | way[is_prop_set(a1lg6, "Abbiegespur_1_LG_6")]::Abbiegespur_1_LG_6, |
| | 2546 | way[is_prop_set(a1lg7, "Abbiegespur_1_LG_7")]::Abbiegespur_1_LG_7, |
| | 2547 | way[is_prop_set(a1rg1, "Abbiegespur_1_RG_1")]::Abbiegespur_1_RG_1, |
| | 2548 | way[is_prop_set(a1rg2, "Abbiegespur_1_RG_2")]::Abbiegespur_1_RG_2, |
| | 2549 | way[is_prop_set(a1rg3, "Abbiegespur_1_RG_3")]::Abbiegespur_1_RG_3, |
| | 2550 | way[is_prop_set(a1rg4, "Abbiegespur_1_RG_4")]::Abbiegespur_1_RG_4, |
| | 2551 | way[is_prop_set(a1rg5, "Abbiegespur_1_RG_5")]::Abbiegespur_1_RG_5, |
| | 2552 | way[is_prop_set(a1rg6, "Abbiegespur_1_RG_6")]::Abbiegespur_1_RG_6, |
| | 2553 | way[is_prop_set(a1rg7, "Abbiegespur_1_RG_7")]::Abbiegespur_1_RG_7, |
| | 2554 | way[is_prop_set(a1rl1, "Abbiegespur_1_RL_1")]::Abbiegespur_1_RL_1, |
| | 2555 | way[is_prop_set(a1rl2, "Abbiegespur_1_RL_2")]::Abbiegespur_1_RL_2, |
| | 2556 | way[is_prop_set(a1rl3, "Abbiegespur_1_RL_3")]::Abbiegespur_1_RL_3, |
| | 2557 | way[is_prop_set(a1rl4, "Abbiegespur_1_RL_4")]::Abbiegespur_1_RL_4, |
| | 2558 | way[is_prop_set(a1rl5, "Abbiegespur_1_RL_5")]::Abbiegespur_1_RL_5, |
| | 2559 | way[is_prop_set(a1rl6, "Abbiegespur_1_RL_6")]::Abbiegespur_1_RL_6, |
| | 2560 | way[is_prop_set(a1rl7, "Abbiegespur_1_RL_7")]::Abbiegespur_1_RL_7, |
| | 2561 | way[is_prop_set(a1bg1, "Abbiegespur_1B_G_1")]::Abbiegespur_1B_G_1, |
| | 2562 | way[is_prop_set(a1bg2, "Abbiegespur_1B_G_2")]::Abbiegespur_1B_G_2, |
| | 2563 | way[is_prop_set(a1bg3, "Abbiegespur_1B_G_3")]::Abbiegespur_1B_G_3, |
| | 2564 | way[is_prop_set(a1bg4, "Abbiegespur_1B_G_4")]::Abbiegespur_1B_G_4, |
| | 2565 | way[is_prop_set(a1bg5, "Abbiegespur_1B_G_5")]::Abbiegespur_1B_G_5, |
| | 2566 | way[is_prop_set(a1bg6, "Abbiegespur_1B_G_6")]::Abbiegespur_1B_G_6, |
| | 2567 | way[is_prop_set(a1bg7, "Abbiegespur_1B_G_7")]::Abbiegespur_1B_G_7, |
| | 2568 | way[is_prop_set(a1br1, "Abbiegespur_1B_R_1")]::Abbiegespur_1B_R_1, |
| | 2569 | way[is_prop_set(a1br2, "Abbiegespur_1B_R_2")]::Abbiegespur_1B_R_2, |
| | 2570 | way[is_prop_set(a1br3, "Abbiegespur_1B_R_3")]::Abbiegespur_1B_R_3, |
| | 2571 | way[is_prop_set(a1br4, "Abbiegespur_1B_R_4")]::Abbiegespur_1B_R_4, |
| | 2572 | way[is_prop_set(a1br5, "Abbiegespur_1B_R_5")]::Abbiegespur_1B_R_5, |
| | 2573 | way[is_prop_set(a1br6, "Abbiegespur_1B_R_6")]::Abbiegespur_1B_R_6, |
| | 2574 | way[is_prop_set(a1br7, "Abbiegespur_1B_R_7")]::Abbiegespur_1B_R_7, |
| | 2575 | way[is_prop_set(a1bl1, "Abbiegespur_1B_L_1")]::Abbiegespur_1B_L_1, |
| | 2576 | way[is_prop_set(a1bl2, "Abbiegespur_1B_L_2")]::Abbiegespur_1B_L_2, |
| | 2577 | way[is_prop_set(a1bl3, "Abbiegespur_1B_L_3")]::Abbiegespur_1B_L_3, |
| | 2578 | way[is_prop_set(a1bl4, "Abbiegespur_1B_L_4")]::Abbiegespur_1B_L_4, |
| | 2579 | way[is_prop_set(a1bl5, "Abbiegespur_1B_L_5")]::Abbiegespur_1B_L_5, |
| | 2580 | way[is_prop_set(a1bl6, "Abbiegespur_1B_L_6")]::Abbiegespur_1B_L_6, |
| | 2581 | way[is_prop_set(a1bl7, "Abbiegespur_1B_L_7")]::Abbiegespur_1B_L_7, |
| | 2582 | way[is_prop_set(a1blg1, "Abbiegespur_1B_LG_1")]::Abbiegespur_1B_LG_1, |
| | 2583 | way[is_prop_set(a1blg2, "Abbiegespur_1B_LG_2")]::Abbiegespur_1B_LG_2, |
| | 2584 | way[is_prop_set(a1blg3, "Abbiegespur_1B_LG_3")]::Abbiegespur_1B_LG_3, |
| | 2585 | way[is_prop_set(a1blg4, "Abbiegespur_1B_LG_4")]::Abbiegespur_1B_LG_4, |
| | 2586 | way[is_prop_set(a1blg5, "Abbiegespur_1B_LG_5")]::Abbiegespur_1B_LG_5, |
| | 2587 | way[is_prop_set(a1blg6, "Abbiegespur_1B_LG_6")]::Abbiegespur_1B_LG_6, |
| | 2588 | way[is_prop_set(a1blg7, "Abbiegespur_1B_LG_7")]::Abbiegespur_1B_LG_7, |
| | 2589 | way[is_prop_set(a1brg1, "Abbiegespur_1B_RG_1")]::Abbiegespur_1B_RG_1, |
| | 2590 | way[is_prop_set(a1brg2, "Abbiegespur_1B_RG_2")]::Abbiegespur_1B_RG_2, |
| | 2591 | way[is_prop_set(a1brg3, "Abbiegespur_1B_RG_3")]::Abbiegespur_1B_RG_3, |
| | 2592 | way[is_prop_set(a1brg4, "Abbiegespur_1B_RG_4")]::Abbiegespur_1B_RG_4, |
| | 2593 | way[is_prop_set(a1brg5, "Abbiegespur_1B_RG_5")]::Abbiegespur_1B_RG_5, |
| | 2594 | way[is_prop_set(a1brg6, "Abbiegespur_1B_RG_6")]::Abbiegespur_1B_RG_6, |
| | 2595 | way[is_prop_set(a1brg7, "Abbiegespur_1B_RG_7")]::Abbiegespur_1B_RG_7, |
| | 2596 | way[is_prop_set(a1brl1, "Abbiegespur_1B_RL_1")]::Abbiegespur_1B_RL_1, |
| | 2597 | way[is_prop_set(a1brl2, "Abbiegespur_1B_RL_2")]::Abbiegespur_1B_RL_2, |
| | 2598 | way[is_prop_set(a1brl3, "Abbiegespur_1B_RL_3")]::Abbiegespur_1B_RL_3, |
| | 2599 | way[is_prop_set(a1brl4, "Abbiegespur_1B_RL_4")]::Abbiegespur_1B_RL_4, |
| | 2600 | way[is_prop_set(a1brl5, "Abbiegespur_1B_RL_5")]::Abbiegespur_1B_RL_5, |
| | 2601 | way[is_prop_set(a1brl6, "Abbiegespur_1B_RL_6")]::Abbiegespur_1B_RL_6, |
| | 2602 | way[is_prop_set(a1brl7, "Abbiegespur_1B_RL_7")]::Abbiegespur_1B_RL_7, |
| | 2603 | way[is_prop_set(a2g1, "Abbiegespur_2_G_1")]::Abbiegespur_2_G_1, |
| | 2604 | way[is_prop_set(a2g2, "Abbiegespur_2_G_2")]::Abbiegespur_2_G_2, |
| | 2605 | way[is_prop_set(a2g3, "Abbiegespur_2_G_3")]::Abbiegespur_2_G_3, |
| | 2606 | way[is_prop_set(a2g4, "Abbiegespur_2_G_4")]::Abbiegespur_2_G_4, |
| | 2607 | way[is_prop_set(a2g5, "Abbiegespur_2_G_5")]::Abbiegespur_2_G_5, |
| | 2608 | way[is_prop_set(a2g6, "Abbiegespur_2_G_6")]::Abbiegespur_2_G_6, |
| | 2609 | way[is_prop_set(a2g7, "Abbiegespur_2_G_7")]::Abbiegespur_2_G_7, |
| | 2610 | way[is_prop_set(a2l1, "Abbiegespur_2_L_1")]::Abbiegespur_2_L_1, |
| | 2611 | way[is_prop_set(a2l2, "Abbiegespur_2_L_2")]::Abbiegespur_2_L_2, |
| | 2612 | way[is_prop_set(a2l3, "Abbiegespur_2_L_3")]::Abbiegespur_2_L_3, |
| | 2613 | way[is_prop_set(a2l4, "Abbiegespur_2_L_4")]::Abbiegespur_2_L_4, |
| | 2614 | way[is_prop_set(a2l5, "Abbiegespur_2_L_5")]::Abbiegespur_2_L_5, |
| | 2615 | way[is_prop_set(a2l6, "Abbiegespur_2_L_6")]::Abbiegespur_2_L_6, |
| | 2616 | way[is_prop_set(a2l7, "Abbiegespur_2_L_7")]::Abbiegespur_2_L_7, |
| | 2617 | way[is_prop_set(a2r1, "Abbiegespur_2_R_1")]::Abbiegespur_2_R_1, |
| | 2618 | way[is_prop_set(a2r2, "Abbiegespur_2_R_2")]::Abbiegespur_2_R_2, |
| | 2619 | way[is_prop_set(a2r3, "Abbiegespur_2_R_3")]::Abbiegespur_2_R_3, |
| | 2620 | way[is_prop_set(a2r4, "Abbiegespur_2_R_4")]::Abbiegespur_2_R_4, |
| | 2621 | way[is_prop_set(a2r5, "Abbiegespur_2_R_5")]::Abbiegespur_2_R_5, |
| | 2622 | way[is_prop_set(a2r6, "Abbiegespur_2_R_6")]::Abbiegespur_2_R_6, |
| | 2623 | way[is_prop_set(a2r7, "Abbiegespur_2_R_7")]::Abbiegespur_2_R_7, |
| | 2624 | way[is_prop_set(a2gr1, "Abbiegespur_2_GR_1")]::Abbiegespur_2_GR_1, |
| | 2625 | way[is_prop_set(a2gr2, "Abbiegespur_2_GR_2")]::Abbiegespur_2_GR_2, |
| | 2626 | way[is_prop_set(a2gr3, "Abbiegespur_2_GR_3")]::Abbiegespur_2_GR_3, |
| | 2627 | way[is_prop_set(a2gr4, "Abbiegespur_2_GR_4")]::Abbiegespur_2_GR_4, |
| | 2628 | way[is_prop_set(a2gr5, "Abbiegespur_2_GR_5")]::Abbiegespur_2_GR_5, |
| | 2629 | way[is_prop_set(a2gr6, "Abbiegespur_2_GR_6")]::Abbiegespur_2_GR_6, |
| | 2630 | way[is_prop_set(a2gr7, "Abbiegespur_2_GR_7")]::Abbiegespur_2_GR_7, |
| | 2631 | way[is_prop_set(a2gl1, "Abbiegespur_2_GL_1")]::Abbiegespur_2_GL_1, |
| | 2632 | way[is_prop_set(a2gl2, "Abbiegespur_2_GL_2")]::Abbiegespur_2_GL_2, |
| | 2633 | way[is_prop_set(a2gl3, "Abbiegespur_2_GL_3")]::Abbiegespur_2_GL_3, |
| | 2634 | way[is_prop_set(a2gl4, "Abbiegespur_2_GL_4")]::Abbiegespur_2_GL_4, |
| | 2635 | way[is_prop_set(a2gl5, "Abbiegespur_2_GL_5")]::Abbiegespur_2_GL_5, |
| | 2636 | way[is_prop_set(a2gl6, "Abbiegespur_2_GL_6")]::Abbiegespur_2_GL_6, |
| | 2637 | way[is_prop_set(a2gl7, "Abbiegespur_2_GL_7")]::Abbiegespur_2_GL_7, |
| | 2638 | way[is_prop_set(a2rl1, "Abbiegespur_2_RL_1")]::Abbiegespur_2_RL_1, |
| | 2639 | way[is_prop_set(a2rl2, "Abbiegespur_2_RL_2")]::Abbiegespur_2_RL_2, |
| | 2640 | way[is_prop_set(a2rl3, "Abbiegespur_2_RL_3")]::Abbiegespur_2_RL_3, |
| | 2641 | way[is_prop_set(a2rl4, "Abbiegespur_2_RL_4")]::Abbiegespur_2_RL_4, |
| | 2642 | way[is_prop_set(a2rl5, "Abbiegespur_2_RL_5")]::Abbiegespur_2_RL_5, |
| | 2643 | way[is_prop_set(a2rl6, "Abbiegespur_2_RL_6")]::Abbiegespur_2_RL_6, |
| | 2644 | way[is_prop_set(a2rl7, "Abbiegespur_2_RL_7")]::Abbiegespur_2_RL_7, |
| | 2645 | way[is_prop_set(a2bg1, "Abbiegespur_2B_G_1")]::Abbiegespur_2B_G_1, |
| | 2646 | way[is_prop_set(a2bg2, "Abbiegespur_2B_G_2")]::Abbiegespur_2B_G_2, |
| | 2647 | way[is_prop_set(a2bg3, "Abbiegespur_2B_G_3")]::Abbiegespur_2B_G_3, |
| | 2648 | way[is_prop_set(a2bg4, "Abbiegespur_2B_G_4")]::Abbiegespur_2B_G_4, |
| | 2649 | way[is_prop_set(a2bg5, "Abbiegespur_2B_G_5")]::Abbiegespur_2B_G_5, |
| | 2650 | way[is_prop_set(a2bg6, "Abbiegespur_2B_G_6")]::Abbiegespur_2B_G_6, |
| | 2651 | way[is_prop_set(a2bg7, "Abbiegespur_2B_G_7")]::Abbiegespur_2B_G_7, |
| | 2652 | way[is_prop_set(a2br1, "Abbiegespur_2B_R_1")]::Abbiegespur_2B_R_1, |
| | 2653 | way[is_prop_set(a2br2, "Abbiegespur_2B_R_2")]::Abbiegespur_2B_R_2, |
| | 2654 | way[is_prop_set(a2br3, "Abbiegespur_2B_R_3")]::Abbiegespur_2B_R_3, |
| | 2655 | way[is_prop_set(a2br4, "Abbiegespur_2B_R_4")]::Abbiegespur_2B_R_4, |
| | 2656 | way[is_prop_set(a2br5, "Abbiegespur_2B_R_5")]::Abbiegespur_2B_R_5, |
| | 2657 | way[is_prop_set(a2br6, "Abbiegespur_2B_R_6")]::Abbiegespur_2B_R_6, |
| | 2658 | way[is_prop_set(a2br7, "Abbiegespur_2B_R_7")]::Abbiegespur_2B_R_7, |
| | 2659 | way[is_prop_set(a2bl1, "Abbiegespur_2B_L_1")]::Abbiegespur_2B_L_1, |
| | 2660 | way[is_prop_set(a2bl2, "Abbiegespur_2B_L_2")]::Abbiegespur_2B_L_2, |
| | 2661 | way[is_prop_set(a2bl3, "Abbiegespur_2B_L_3")]::Abbiegespur_2B_L_3, |
| | 2662 | way[is_prop_set(a2bl4, "Abbiegespur_2B_L_4")]::Abbiegespur_2B_L_4, |
| | 2663 | way[is_prop_set(a2bl5, "Abbiegespur_2B_L_5")]::Abbiegespur_2B_L_5, |
| | 2664 | way[is_prop_set(a2bl6, "Abbiegespur_2B_L_6")]::Abbiegespur_2B_L_6, |
| | 2665 | way[is_prop_set(a2bl7, "Abbiegespur_2B_L_7")]::Abbiegespur_2B_L_7, |
| | 2666 | way[is_prop_set(a2blg1, "Abbiegespur_2B_LG_1")]::Abbiegespur_2B_LG_1, |
| | 2667 | way[is_prop_set(a2blg2, "Abbiegespur_2B_LG_2")]::Abbiegespur_2B_LG_2, |
| | 2668 | way[is_prop_set(a2blg3, "Abbiegespur_2B_LG_3")]::Abbiegespur_2B_LG_3, |
| | 2669 | way[is_prop_set(a2blg4, "Abbiegespur_2B_LG_4")]::Abbiegespur_2B_LG_4, |
| | 2670 | way[is_prop_set(a2blg5, "Abbiegespur_2B_LG_5")]::Abbiegespur_2B_LG_5, |
| | 2671 | way[is_prop_set(a2blg6, "Abbiegespur_2B_LG_6")]::Abbiegespur_2B_LG_6, |
| | 2672 | way[is_prop_set(a2blg7, "Abbiegespur_2B_LG_7")]::Abbiegespur_2B_LG_7, |
| | 2673 | way[is_prop_set(a2brg1, "Abbiegespur_2B_RG_1")]::Abbiegespur_2B_RG_1, |
| | 2674 | way[is_prop_set(a2brg2, "Abbiegespur_2B_RG_2")]::Abbiegespur_2B_RG_2, |
| | 2675 | way[is_prop_set(a2brg3, "Abbiegespur_2B_RG_3")]::Abbiegespur_2B_RG_3, |
| | 2676 | way[is_prop_set(a2brg4, "Abbiegespur_2B_RG_4")]::Abbiegespur_2B_RG_4, |
| | 2677 | way[is_prop_set(a2brg5, "Abbiegespur_2B_RG_5")]::Abbiegespur_2B_RG_5, |
| | 2678 | way[is_prop_set(a2brg6, "Abbiegespur_2B_RG_6")]::Abbiegespur_2B_RG_6, |
| | 2679 | way[is_prop_set(a2brg7, "Abbiegespur_2B_RG_7")]::Abbiegespur_2B_RG_7, |
| | 2680 | way[is_prop_set(a2brl1, "Abbiegespur_2B_RL_1")]::Abbiegespur_2B_RL_1, |
| | 2681 | way[is_prop_set(a2brl2, "Abbiegespur_2B_RL_2")]::Abbiegespur_2B_RL_2, |
| | 2682 | way[is_prop_set(a2brl3, "Abbiegespur_2B_RL_3")]::Abbiegespur_2B_RL_3, |
| | 2683 | way[is_prop_set(a2brl4, "Abbiegespur_2B_RL_4")]::Abbiegespur_2B_RL_4, |
| | 2684 | way[is_prop_set(a2brl5, "Abbiegespur_2B_RL_5")]::Abbiegespur_2B_RL_5, |
| | 2685 | way[is_prop_set(a2brl6, "Abbiegespur_2B_RL_6")]::Abbiegespur_2B_RL_6, |
| | 2686 | way[is_prop_set(a2brl7, "Abbiegespur_2B_RL_7")]::Abbiegespur_2B_RL_7, |
| | 2687 | way[is_prop_set(a3g1, "Abbiegespur_3_G_1")]::Abbiegespur_3_G_1, |
| | 2688 | way[is_prop_set(a3g2, "Abbiegespur_3_G_2")]::Abbiegespur_3_G_2, |
| | 2689 | way[is_prop_set(a3g3, "Abbiegespur_3_G_3")]::Abbiegespur_3_G_3, |
| | 2690 | way[is_prop_set(a3g4, "Abbiegespur_3_G_4")]::Abbiegespur_3_G_4, |
| | 2691 | way[is_prop_set(a3g5, "Abbiegespur_3_G_5")]::Abbiegespur_3_G_5, |
| | 2692 | way[is_prop_set(a3g6, "Abbiegespur_3_G_6")]::Abbiegespur_3_G_6, |
| | 2693 | way[is_prop_set(a3g7, "Abbiegespur_3_G_7")]::Abbiegespur_3_G_7, |
| | 2694 | way[is_prop_set(a3l1, "Abbiegespur_3_L_1")]::Abbiegespur_3_L_1, |
| | 2695 | way[is_prop_set(a3l2, "Abbiegespur_3_L_2")]::Abbiegespur_3_L_2, |
| | 2696 | way[is_prop_set(a3l3, "Abbiegespur_3_L_3")]::Abbiegespur_3_L_3, |
| | 2697 | way[is_prop_set(a3l4, "Abbiegespur_3_L_4")]::Abbiegespur_3_L_4, |
| | 2698 | way[is_prop_set(a3l5, "Abbiegespur_3_L_5")]::Abbiegespur_3_L_5, |
| | 2699 | way[is_prop_set(a3l6, "Abbiegespur_3_L_6")]::Abbiegespur_3_L_6, |
| | 2700 | way[is_prop_set(a3l7, "Abbiegespur_3_L_7")]::Abbiegespur_3_L_7, |
| | 2701 | way[is_prop_set(a3r1, "Abbiegespur_3_R_1")]::Abbiegespur_3_R_1, |
| | 2702 | way[is_prop_set(a3r2, "Abbiegespur_3_R_2")]::Abbiegespur_3_R_2, |
| | 2703 | way[is_prop_set(a3r3, "Abbiegespur_3_R_3")]::Abbiegespur_3_R_3, |
| | 2704 | way[is_prop_set(a3r4, "Abbiegespur_3_R_4")]::Abbiegespur_3_R_4, |
| | 2705 | way[is_prop_set(a3r5, "Abbiegespur_3_R_5")]::Abbiegespur_3_R_5, |
| | 2706 | way[is_prop_set(a3r6, "Abbiegespur_3_R_6")]::Abbiegespur_3_R_6, |
| | 2707 | way[is_prop_set(a3r7, "Abbiegespur_3_R_7")]::Abbiegespur_3_R_7, |
| | 2708 | way[is_prop_set(a3gr1, "Abbiegespur_3_GR_1")]::Abbiegespur_3_GR_1, |
| | 2709 | way[is_prop_set(a3gr2, "Abbiegespur_3_GR_2")]::Abbiegespur_3_GR_2, |
| | 2710 | way[is_prop_set(a3gr3, "Abbiegespur_3_GR_3")]::Abbiegespur_3_GR_3, |
| | 2711 | way[is_prop_set(a3gr4, "Abbiegespur_3_GR_4")]::Abbiegespur_3_GR_4, |
| | 2712 | way[is_prop_set(a3gr5, "Abbiegespur_3_GR_5")]::Abbiegespur_3_GR_5, |
| | 2713 | way[is_prop_set(a3gr6, "Abbiegespur_3_GR_6")]::Abbiegespur_3_GR_6, |
| | 2714 | way[is_prop_set(a3gr7, "Abbiegespur_3_GR_7")]::Abbiegespur_3_GR_7, |
| | 2715 | way[is_prop_set(a3gl1, "Abbiegespur_3_GL_1")]::Abbiegespur_3_GL_1, |
| | 2716 | way[is_prop_set(a3gl2, "Abbiegespur_3_GL_2")]::Abbiegespur_3_GL_2, |
| | 2717 | way[is_prop_set(a3gl3, "Abbiegespur_3_GL_3")]::Abbiegespur_3_GL_3, |
| | 2718 | way[is_prop_set(a3gl4, "Abbiegespur_3_GL_4")]::Abbiegespur_3_GL_4, |
| | 2719 | way[is_prop_set(a3gl5, "Abbiegespur_3_GL_5")]::Abbiegespur_3_GL_5, |
| | 2720 | way[is_prop_set(a3gl6, "Abbiegespur_3_GL_6")]::Abbiegespur_3_GL_6, |
| | 2721 | way[is_prop_set(a3gl7, "Abbiegespur_3_GL_7")]::Abbiegespur_3_GL_7, |
| | 2722 | way[is_prop_set(a3rl1, "Abbiegespur_3_RL_1")]::Abbiegespur_3_RL_1, |
| | 2723 | way[is_prop_set(a3rl2, "Abbiegespur_3_RL_2")]::Abbiegespur_3_RL_2, |
| | 2724 | way[is_prop_set(a3rl3, "Abbiegespur_3_RL_3")]::Abbiegespur_3_RL_3, |
| | 2725 | way[is_prop_set(a3rl4, "Abbiegespur_3_RL_4")]::Abbiegespur_3_RL_4, |
| | 2726 | way[is_prop_set(a3rl5, "Abbiegespur_3_RL_5")]::Abbiegespur_3_RL_5, |
| | 2727 | way[is_prop_set(a3rl6, "Abbiegespur_3_RL_6")]::Abbiegespur_3_RL_6, |
| | 2728 | way[is_prop_set(a3rl7, "Abbiegespur_3_RL_7")]::Abbiegespur_3_RL_7, |
| | 2729 | way[is_prop_set(a3bg1, "Abbiegespur_3B_G_1")]::Abbiegespur_3B_G_1, |
| | 2730 | way[is_prop_set(a3bg2, "Abbiegespur_3B_G_2")]::Abbiegespur_3B_G_2, |
| | 2731 | way[is_prop_set(a3bg3, "Abbiegespur_3B_G_3")]::Abbiegespur_3B_G_3, |
| | 2732 | way[is_prop_set(a3bg4, "Abbiegespur_3B_G_4")]::Abbiegespur_3B_G_4, |
| | 2733 | way[is_prop_set(a3bg5, "Abbiegespur_3B_G_5")]::Abbiegespur_3B_G_5, |
| | 2734 | way[is_prop_set(a3bg6, "Abbiegespur_3B_G_6")]::Abbiegespur_3B_G_6, |
| | 2735 | way[is_prop_set(a3bg7, "Abbiegespur_3B_G_7")]::Abbiegespur_3B_G_7, |
| | 2736 | way[is_prop_set(a3br1, "Abbiegespur_3B_R_1")]::Abbiegespur_3B_R_1, |
| | 2737 | way[is_prop_set(a3br2, "Abbiegespur_3B_R_2")]::Abbiegespur_3B_R_2, |
| | 2738 | way[is_prop_set(a3br3, "Abbiegespur_3B_R_3")]::Abbiegespur_3B_R_3, |
| | 2739 | way[is_prop_set(a3br4, "Abbiegespur_3B_R_4")]::Abbiegespur_3B_R_4, |
| | 2740 | way[is_prop_set(a3br5, "Abbiegespur_3B_R_5")]::Abbiegespur_3B_R_5, |
| | 2741 | way[is_prop_set(a3br6, "Abbiegespur_3B_R_6")]::Abbiegespur_3B_R_6, |
| | 2742 | way[is_prop_set(a3br7, "Abbiegespur_3B_R_7")]::Abbiegespur_3B_R_7, |
| | 2743 | way[is_prop_set(a3bl1, "Abbiegespur_3B_L_1")]::Abbiegespur_3B_L_1, |
| | 2744 | way[is_prop_set(a3bl2, "Abbiegespur_3B_L_2")]::Abbiegespur_3B_L_2, |
| | 2745 | way[is_prop_set(a3bl3, "Abbiegespur_3B_L_3")]::Abbiegespur_3B_L_3, |
| | 2746 | way[is_prop_set(a3bl4, "Abbiegespur_3B_L_4")]::Abbiegespur_3B_L_4, |
| | 2747 | way[is_prop_set(a3bl5, "Abbiegespur_3B_L_5")]::Abbiegespur_3B_L_5, |
| | 2748 | way[is_prop_set(a3bl6, "Abbiegespur_3B_L_6")]::Abbiegespur_3B_L_6, |
| | 2749 | way[is_prop_set(a3bl7, "Abbiegespur_3B_L_7")]::Abbiegespur_3B_L_7, |
| | 2750 | way[is_prop_set(a3blg1, "Abbiegespur_3B_LG_1")]::Abbiegespur_3B_LG_1, |
| | 2751 | way[is_prop_set(a3blg2, "Abbiegespur_3B_LG_2")]::Abbiegespur_3B_LG_2, |
| | 2752 | way[is_prop_set(a3blg3, "Abbiegespur_3B_LG_3")]::Abbiegespur_3B_LG_3, |
| | 2753 | way[is_prop_set(a3blg4, "Abbiegespur_3B_LG_4")]::Abbiegespur_3B_LG_4, |
| | 2754 | way[is_prop_set(a3blg5, "Abbiegespur_3B_LG_5")]::Abbiegespur_3B_LG_5, |
| | 2755 | way[is_prop_set(a3blg6, "Abbiegespur_3B_LG_6")]::Abbiegespur_3B_LG_6, |
| | 2756 | way[is_prop_set(a3blg7, "Abbiegespur_3B_LG_7")]::Abbiegespur_3B_LG_7, |
| | 2757 | way[is_prop_set(a3brg1, "Abbiegespur_3B_RG_1")]::Abbiegespur_3B_RG_1, |
| | 2758 | way[is_prop_set(a3brg2, "Abbiegespur_3B_RG_2")]::Abbiegespur_3B_RG_2, |
| | 2759 | way[is_prop_set(a3brg3, "Abbiegespur_3B_RG_3")]::Abbiegespur_3B_RG_3, |
| | 2760 | way[is_prop_set(a3brg4, "Abbiegespur_3B_RG_4")]::Abbiegespur_3B_RG_4, |
| | 2761 | way[is_prop_set(a3brg5, "Abbiegespur_3B_RG_5")]::Abbiegespur_3B_RG_5, |
| | 2762 | way[is_prop_set(a3brg6, "Abbiegespur_3B_RG_6")]::Abbiegespur_3B_RG_6, |
| | 2763 | way[is_prop_set(a3brg7, "Abbiegespur_3B_RG_7")]::Abbiegespur_3B_RG_7, |
| | 2764 | way[is_prop_set(a3brl1, "Abbiegespur_3B_RL_1")]::Abbiegespur_3B_RL_1, |
| | 2765 | way[is_prop_set(a3brl2, "Abbiegespur_3B_RL_2")]::Abbiegespur_3B_RL_2, |
| | 2766 | way[is_prop_set(a3brl3, "Abbiegespur_3B_RL_3")]::Abbiegespur_3B_RL_3, |
| | 2767 | way[is_prop_set(a3brl4, "Abbiegespur_3B_RL_4")]::Abbiegespur_3B_RL_4, |
| | 2768 | way[is_prop_set(a3brl5, "Abbiegespur_3B_RL_5")]::Abbiegespur_3B_RL_5, |
| | 2769 | way[is_prop_set(a3brl6, "Abbiegespur_3B_RL_6")]::Abbiegespur_3B_RL_6, |
| | 2770 | way[is_prop_set(a3brl7, "Abbiegespur_3B_RL_7")]::Abbiegespur_3B_RL_7, |
| | 2771 | way[is_prop_set(a4g1, "Abbiegespur_4_G_1")]::Abbiegespur_4_G_1, |
| | 2772 | way[is_prop_set(a4g2, "Abbiegespur_4_G_2")]::Abbiegespur_4_G_2, |
| | 2773 | way[is_prop_set(a4g3, "Abbiegespur_4_G_3")]::Abbiegespur_4_G_3, |
| | 2774 | way[is_prop_set(a4g4, "Abbiegespur_4_G_4")]::Abbiegespur_4_G_4, |
| | 2775 | way[is_prop_set(a4g5, "Abbiegespur_4_G_5")]::Abbiegespur_4_G_5, |
| | 2776 | way[is_prop_set(a4g6, "Abbiegespur_4_G_6")]::Abbiegespur_4_G_6, |
| | 2777 | way[is_prop_set(a4g7, "Abbiegespur_4_G_7")]::Abbiegespur_4_G_7, |
| | 2778 | way[is_prop_set(a4l1, "Abbiegespur_4_L_1")]::Abbiegespur_4_L_1, |
| | 2779 | way[is_prop_set(a4l2, "Abbiegespur_4_L_2")]::Abbiegespur_4_L_2, |
| | 2780 | way[is_prop_set(a4l3, "Abbiegespur_4_L_3")]::Abbiegespur_4_L_3, |
| | 2781 | way[is_prop_set(a4l4, "Abbiegespur_4_L_4")]::Abbiegespur_4_L_4, |
| | 2782 | way[is_prop_set(a4l5, "Abbiegespur_4_L_5")]::Abbiegespur_4_L_5, |
| | 2783 | way[is_prop_set(a4l6, "Abbiegespur_4_L_6")]::Abbiegespur_4_L_6, |
| | 2784 | way[is_prop_set(a4l7, "Abbiegespur_4_L_7")]::Abbiegespur_4_L_7, |
| | 2785 | way[is_prop_set(a4r1, "Abbiegespur_4_R_1")]::Abbiegespur_4_R_1, |
| | 2786 | way[is_prop_set(a4r2, "Abbiegespur_4_R_2")]::Abbiegespur_4_R_2, |
| | 2787 | way[is_prop_set(a4r3, "Abbiegespur_4_R_3")]::Abbiegespur_4_R_3, |
| | 2788 | way[is_prop_set(a4r4, "Abbiegespur_4_R_4")]::Abbiegespur_4_R_4, |
| | 2789 | way[is_prop_set(a4r5, "Abbiegespur_4_R_5")]::Abbiegespur_4_R_5, |
| | 2790 | way[is_prop_set(a4r6, "Abbiegespur_4_R_6")]::Abbiegespur_4_R_6, |
| | 2791 | way[is_prop_set(a4r7, "Abbiegespur_4_R_7")]::Abbiegespur_4_R_7, |
| | 2792 | way[is_prop_set(a4gr1, "Abbiegespur_4_GR_1")]::Abbiegespur_4_GR_1, |
| | 2793 | way[is_prop_set(a4gr2, "Abbiegespur_4_GR_2")]::Abbiegespur_4_GR_2, |
| | 2794 | way[is_prop_set(a4gr3, "Abbiegespur_4_GR_3")]::Abbiegespur_4_GR_3, |
| | 2795 | way[is_prop_set(a4gr4, "Abbiegespur_4_GR_4")]::Abbiegespur_4_GR_4, |
| | 2796 | way[is_prop_set(a4gr5, "Abbiegespur_4_GR_5")]::Abbiegespur_4_GR_5, |
| | 2797 | way[is_prop_set(a4gr6, "Abbiegespur_4_GR_6")]::Abbiegespur_4_GR_6, |
| | 2798 | way[is_prop_set(a4gr7, "Abbiegespur_4_GR_7")]::Abbiegespur_4_GR_7, |
| | 2799 | way[is_prop_set(a4gl1, "Abbiegespur_4_GL_1")]::Abbiegespur_4_GL_1, |
| | 2800 | way[is_prop_set(a4gl2, "Abbiegespur_4_GL_2")]::Abbiegespur_4_GL_2, |
| | 2801 | way[is_prop_set(a4gl3, "Abbiegespur_4_GL_3")]::Abbiegespur_4_GL_3, |
| | 2802 | way[is_prop_set(a4gl4, "Abbiegespur_4_GL_4")]::Abbiegespur_4_GL_4, |
| | 2803 | way[is_prop_set(a4gl5, "Abbiegespur_4_GL_5")]::Abbiegespur_4_GL_5, |
| | 2804 | way[is_prop_set(a4gl6, "Abbiegespur_4_GL_6")]::Abbiegespur_4_GL_6, |
| | 2805 | way[is_prop_set(a4gl7, "Abbiegespur_4_GL_7")]::Abbiegespur_4_GL_7, |
| | 2806 | way[is_prop_set(a4rl1, "Abbiegespur_4_RL_1")]::Abbiegespur_4_RL_1, |
| | 2807 | way[is_prop_set(a4rl2, "Abbiegespur_4_RL_2")]::Abbiegespur_4_RL_2, |
| | 2808 | way[is_prop_set(a4rl3, "Abbiegespur_4_RL_3")]::Abbiegespur_4_RL_3, |
| | 2809 | way[is_prop_set(a4rl4, "Abbiegespur_4_RL_4")]::Abbiegespur_4_RL_4, |
| | 2810 | way[is_prop_set(a4rl5, "Abbiegespur_4_RL_5")]::Abbiegespur_4_RL_5, |
| | 2811 | way[is_prop_set(a4rl6, "Abbiegespur_4_RL_6")]::Abbiegespur_4_RL_6, |
| | 2812 | way[is_prop_set(a4rl7, "Abbiegespur_4_RL_7")]::Abbiegespur_4_RL_7, |
| | 2813 | way[is_prop_set(a4bg1, "Abbiegespur_4B_G_1")]::Abbiegespur_4B_G_1, |
| | 2814 | way[is_prop_set(a4bg2, "Abbiegespur_4B_G_2")]::Abbiegespur_4B_G_2, |
| | 2815 | way[is_prop_set(a4bg3, "Abbiegespur_4B_G_3")]::Abbiegespur_4B_G_3, |
| | 2816 | way[is_prop_set(a4bg4, "Abbiegespur_4B_G_4")]::Abbiegespur_4B_G_4, |
| | 2817 | way[is_prop_set(a4bg5, "Abbiegespur_4B_G_5")]::Abbiegespur_4B_G_5, |
| | 2818 | way[is_prop_set(a4bg6, "Abbiegespur_4B_G_6")]::Abbiegespur_4B_G_6, |
| | 2819 | way[is_prop_set(a4bg7, "Abbiegespur_4B_G_7")]::Abbiegespur_4B_G_7, |
| | 2820 | way[is_prop_set(a4br1, "Abbiegespur_4B_R_1")]::Abbiegespur_4B_R_1, |
| | 2821 | way[is_prop_set(a4br2, "Abbiegespur_4B_R_2")]::Abbiegespur_4B_R_2, |
| | 2822 | way[is_prop_set(a4br3, "Abbiegespur_4B_R_3")]::Abbiegespur_4B_R_3, |
| | 2823 | way[is_prop_set(a4br4, "Abbiegespur_4B_R_4")]::Abbiegespur_4B_R_4, |
| | 2824 | way[is_prop_set(a4br5, "Abbiegespur_4B_R_5")]::Abbiegespur_4B_R_5, |
| | 2825 | way[is_prop_set(a4br6, "Abbiegespur_4B_R_6")]::Abbiegespur_4B_R_6, |
| | 2826 | way[is_prop_set(a4br7, "Abbiegespur_4B_R_7")]::Abbiegespur_4B_R_7, |
| | 2827 | way[is_prop_set(a4bl1, "Abbiegespur_4B_L_1")]::Abbiegespur_4B_L_1, |
| | 2828 | way[is_prop_set(a4bl2, "Abbiegespur_4B_L_2")]::Abbiegespur_4B_L_2, |
| | 2829 | way[is_prop_set(a4bl3, "Abbiegespur_4B_L_3")]::Abbiegespur_4B_L_3, |
| | 2830 | way[is_prop_set(a4bl4, "Abbiegespur_4B_L_4")]::Abbiegespur_4B_L_4, |
| | 2831 | way[is_prop_set(a4bl5, "Abbiegespur_4B_L_5")]::Abbiegespur_4B_L_5, |
| | 2832 | way[is_prop_set(a4bl6, "Abbiegespur_4B_L_6")]::Abbiegespur_4B_L_6, |
| | 2833 | way[is_prop_set(a4bl7, "Abbiegespur_4B_L_7")]::Abbiegespur_4B_L_7, |
| | 2834 | way[is_prop_set(a4blg1, "Abbiegespur_4B_LG_1")]::Abbiegespur_4B_LG_1, |
| | 2835 | way[is_prop_set(a4blg2, "Abbiegespur_4B_LG_2")]::Abbiegespur_4B_LG_2, |
| | 2836 | way[is_prop_set(a4blg3, "Abbiegespur_4B_LG_3")]::Abbiegespur_4B_LG_3, |
| | 2837 | way[is_prop_set(a4blg4, "Abbiegespur_4B_LG_4")]::Abbiegespur_4B_LG_4, |
| | 2838 | way[is_prop_set(a4blg5, "Abbiegespur_4B_LG_5")]::Abbiegespur_4B_LG_5, |
| | 2839 | way[is_prop_set(a4blg6, "Abbiegespur_4B_LG_6")]::Abbiegespur_4B_LG_6, |
| | 2840 | way[is_prop_set(a4blg7, "Abbiegespur_4B_LG_7")]::Abbiegespur_4B_LG_7, |
| | 2841 | way[is_prop_set(a4brg1, "Abbiegespur_4B_RG_1")]::Abbiegespur_4B_RG_1, |
| | 2842 | way[is_prop_set(a4brg2, "Abbiegespur_4B_RG_2")]::Abbiegespur_4B_RG_2, |
| | 2843 | way[is_prop_set(a4brg3, "Abbiegespur_4B_RG_3")]::Abbiegespur_4B_RG_3, |
| | 2844 | way[is_prop_set(a4brg4, "Abbiegespur_4B_RG_4")]::Abbiegespur_4B_RG_4, |
| | 2845 | way[is_prop_set(a4brg5, "Abbiegespur_4B_RG_5")]::Abbiegespur_4B_RG_5, |
| | 2846 | way[is_prop_set(a4brg6, "Abbiegespur_4B_RG_6")]::Abbiegespur_4B_RG_6, |
| | 2847 | way[is_prop_set(a4brg7, "Abbiegespur_4B_RG_7")]::Abbiegespur_4B_RG_7, |
| | 2848 | way[is_prop_set(a4brl1, "Abbiegespur_4B_RL_1")]::Abbiegespur_4B_RL_1, |
| | 2849 | way[is_prop_set(a4brl2, "Abbiegespur_4B_RL_2")]::Abbiegespur_4B_RL_2, |
| | 2850 | way[is_prop_set(a4brl3, "Abbiegespur_4B_RL_3")]::Abbiegespur_4B_RL_3, |
| | 2851 | way[is_prop_set(a4brl4, "Abbiegespur_4B_RL_4")]::Abbiegespur_4B_RL_4, |
| | 2852 | way[is_prop_set(a4brl5, "Abbiegespur_4B_RL_5")]::Abbiegespur_4B_RL_5, |
| | 2853 | way[is_prop_set(a4brl6, "Abbiegespur_4B_RL_6")]::Abbiegespur_4B_RL_6, |
| | 2854 | way[is_prop_set(a4brl7, "Abbiegespur_4B_RL_7")]::Abbiegespur_4B_RL_7, |
| | 2855 | way[is_prop_set(a5g1, "Abbiegespur_5_G_1")]::Abbiegespur_5_G_1, |
| | 2856 | way[is_prop_set(a5g2, "Abbiegespur_5_G_2")]::Abbiegespur_5_G_2, |
| | 2857 | way[is_prop_set(a5g3, "Abbiegespur_5_G_3")]::Abbiegespur_5_G_3, |
| | 2858 | way[is_prop_set(a5g4, "Abbiegespur_5_G_4")]::Abbiegespur_5_G_4, |
| | 2859 | way[is_prop_set(a5g5, "Abbiegespur_5_G_5")]::Abbiegespur_5_G_5, |
| | 2860 | way[is_prop_set(a5g6, "Abbiegespur_5_G_6")]::Abbiegespur_5_G_6, |
| | 2861 | way[is_prop_set(a5g7, "Abbiegespur_5_G_7")]::Abbiegespur_5_G_7, |
| | 2862 | way[is_prop_set(a5l1, "Abbiegespur_5_L_1")]::Abbiegespur_5_L_1, |
| | 2863 | way[is_prop_set(a5l2, "Abbiegespur_5_L_2")]::Abbiegespur_5_L_2, |
| | 2864 | way[is_prop_set(a5l3, "Abbiegespur_5_L_3")]::Abbiegespur_5_L_3, |
| | 2865 | way[is_prop_set(a5l4, "Abbiegespur_5_L_4")]::Abbiegespur_5_L_4, |
| | 2866 | way[is_prop_set(a5l5, "Abbiegespur_5_L_5")]::Abbiegespur_5_L_5, |
| | 2867 | way[is_prop_set(a5l6, "Abbiegespur_5_L_6")]::Abbiegespur_5_L_6, |
| | 2868 | way[is_prop_set(a5l7, "Abbiegespur_5_L_7")]::Abbiegespur_5_L_7, |
| | 2869 | way[is_prop_set(a5r1, "Abbiegespur_5_R_1")]::Abbiegespur_5_R_1, |
| | 2870 | way[is_prop_set(a5r2, "Abbiegespur_5_R_2")]::Abbiegespur_5_R_2, |
| | 2871 | way[is_prop_set(a5r3, "Abbiegespur_5_R_3")]::Abbiegespur_5_R_3, |
| | 2872 | way[is_prop_set(a5r4, "Abbiegespur_5_R_4")]::Abbiegespur_5_R_4, |
| | 2873 | way[is_prop_set(a5r5, "Abbiegespur_5_R_5")]::Abbiegespur_5_R_5, |
| | 2874 | way[is_prop_set(a5r6, "Abbiegespur_5_R_6")]::Abbiegespur_5_R_6, |
| | 2875 | way[is_prop_set(a5r7, "Abbiegespur_5_R_7")]::Abbiegespur_5_R_7, |
| | 2876 | way[is_prop_set(a5gr1, "Abbiegespur_5_GR_1")]::Abbiegespur_5_GR_1, |
| | 2877 | way[is_prop_set(a5gr2, "Abbiegespur_5_GR_2")]::Abbiegespur_5_GR_2, |
| | 2878 | way[is_prop_set(a5gr3, "Abbiegespur_5_GR_3")]::Abbiegespur_5_GR_3, |
| | 2879 | way[is_prop_set(a5gr4, "Abbiegespur_5_GR_4")]::Abbiegespur_5_GR_4, |
| | 2880 | way[is_prop_set(a5gr5, "Abbiegespur_5_GR_5")]::Abbiegespur_5_GR_5, |
| | 2881 | way[is_prop_set(a5gr6, "Abbiegespur_5_GR_6")]::Abbiegespur_5_GR_6, |
| | 2882 | way[is_prop_set(a5gr7, "Abbiegespur_5_GR_7")]::Abbiegespur_5_GR_7, |
| | 2883 | way[is_prop_set(a5gl1, "Abbiegespur_5_GL_1")]::Abbiegespur_5_GL_1, |
| | 2884 | way[is_prop_set(a5gl2, "Abbiegespur_5_GL_2")]::Abbiegespur_5_GL_2, |
| | 2885 | way[is_prop_set(a5gl3, "Abbiegespur_5_GL_3")]::Abbiegespur_5_GL_3, |
| | 2886 | way[is_prop_set(a5gl4, "Abbiegespur_5_GL_4")]::Abbiegespur_5_GL_4, |
| | 2887 | way[is_prop_set(a5gl5, "Abbiegespur_5_GL_5")]::Abbiegespur_5_GL_5, |
| | 2888 | way[is_prop_set(a5gl6, "Abbiegespur_5_GL_6")]::Abbiegespur_5_GL_6, |
| | 2889 | way[is_prop_set(a5gl7, "Abbiegespur_5_GL_7")]::Abbiegespur_5_GL_7, |
| | 2890 | way[is_prop_set(a5rl1, "Abbiegespur_5_RL_1")]::Abbiegespur_5_RL_1, |
| | 2891 | way[is_prop_set(a5rl2, "Abbiegespur_5_RL_2")]::Abbiegespur_5_RL_2, |
| | 2892 | way[is_prop_set(a5rl3, "Abbiegespur_5_RL_3")]::Abbiegespur_5_RL_3, |
| | 2893 | way[is_prop_set(a5rl4, "Abbiegespur_5_RL_4")]::Abbiegespur_5_RL_4, |
| | 2894 | way[is_prop_set(a5rl5, "Abbiegespur_5_RL_5")]::Abbiegespur_5_RL_5, |
| | 2895 | way[is_prop_set(a5rl6, "Abbiegespur_5_RL_6")]::Abbiegespur_5_RL_6, |
| | 2896 | way[is_prop_set(a5rl7, "Abbiegespur_5_RL_7")]::Abbiegespur_5_RL_7, |
| | 2897 | way[is_prop_set(a5bg1, "Abbiegespur_5B_G_1")]::Abbiegespur_5B_G_1, |
| | 2898 | way[is_prop_set(a5bg2, "Abbiegespur_5B_G_2")]::Abbiegespur_5B_G_2, |
| | 2899 | way[is_prop_set(a5bg3, "Abbiegespur_5B_G_3")]::Abbiegespur_5B_G_3, |
| | 2900 | way[is_prop_set(a5bg4, "Abbiegespur_5B_G_4")]::Abbiegespur_5B_G_4, |
| | 2901 | way[is_prop_set(a5bg5, "Abbiegespur_5B_G_5")]::Abbiegespur_5B_G_5, |
| | 2902 | way[is_prop_set(a5bg6, "Abbiegespur_5B_G_6")]::Abbiegespur_5B_G_6, |
| | 2903 | way[is_prop_set(a5bg7, "Abbiegespur_5B_G_7")]::Abbiegespur_5B_G_7, |
| | 2904 | way[is_prop_set(a5br1, "Abbiegespur_5B_R_1")]::Abbiegespur_5B_R_1, |
| | 2905 | way[is_prop_set(a5br2, "Abbiegespur_5B_R_2")]::Abbiegespur_5B_R_2, |
| | 2906 | way[is_prop_set(a5br3, "Abbiegespur_5B_R_3")]::Abbiegespur_5B_R_3, |
| | 2907 | way[is_prop_set(a5br4, "Abbiegespur_5B_R_4")]::Abbiegespur_5B_R_4, |
| | 2908 | way[is_prop_set(a5br5, "Abbiegespur_5B_R_5")]::Abbiegespur_5B_R_5, |
| | 2909 | way[is_prop_set(a5br6, "Abbiegespur_5B_R_6")]::Abbiegespur_5B_R_6, |
| | 2910 | way[is_prop_set(a5br7, "Abbiegespur_5B_R_7")]::Abbiegespur_5B_R_7, |
| | 2911 | way[is_prop_set(a5bl1, "Abbiegespur_5B_L_1")]::Abbiegespur_5B_L_1, |
| | 2912 | way[is_prop_set(a5bl2, "Abbiegespur_5B_L_2")]::Abbiegespur_5B_L_2, |
| | 2913 | way[is_prop_set(a5bl3, "Abbiegespur_5B_L_3")]::Abbiegespur_5B_L_3, |
| | 2914 | way[is_prop_set(a5bl4, "Abbiegespur_5B_L_4")]::Abbiegespur_5B_L_4, |
| | 2915 | way[is_prop_set(a5bl5, "Abbiegespur_5B_L_5")]::Abbiegespur_5B_L_5, |
| | 2916 | way[is_prop_set(a5bl6, "Abbiegespur_5B_L_6")]::Abbiegespur_5B_L_6, |
| | 2917 | way[is_prop_set(a5bl7, "Abbiegespur_5B_L_7")]::Abbiegespur_5B_L_7, |
| | 2918 | way[is_prop_set(a5blg1, "Abbiegespur_5B_LG_1")]::Abbiegespur_5B_LG_1, |
| | 2919 | way[is_prop_set(a5blg2, "Abbiegespur_5B_LG_2")]::Abbiegespur_5B_LG_2, |
| | 2920 | way[is_prop_set(a5blg3, "Abbiegespur_5B_LG_3")]::Abbiegespur_5B_LG_3, |
| | 2921 | way[is_prop_set(a5blg4, "Abbiegespur_5B_LG_4")]::Abbiegespur_5B_LG_4, |
| | 2922 | way[is_prop_set(a5blg5, "Abbiegespur_5B_LG_5")]::Abbiegespur_5B_LG_5, |
| | 2923 | way[is_prop_set(a5blg6, "Abbiegespur_5B_LG_6")]::Abbiegespur_5B_LG_6, |
| | 2924 | way[is_prop_set(a5blg7, "Abbiegespur_5B_LG_7")]::Abbiegespur_5B_LG_7, |
| | 2925 | way[is_prop_set(a5brg1, "Abbiegespur_5B_RG_1")]::Abbiegespur_5B_RG_1, |
| | 2926 | way[is_prop_set(a5brg2, "Abbiegespur_5B_RG_2")]::Abbiegespur_5B_RG_2, |
| | 2927 | way[is_prop_set(a5brg3, "Abbiegespur_5B_RG_3")]::Abbiegespur_5B_RG_3, |
| | 2928 | way[is_prop_set(a5brg4, "Abbiegespur_5B_RG_4")]::Abbiegespur_5B_RG_4, |
| | 2929 | way[is_prop_set(a5brg5, "Abbiegespur_5B_RG_5")]::Abbiegespur_5B_RG_5, |
| | 2930 | way[is_prop_set(a5brg6, "Abbiegespur_5B_RG_6")]::Abbiegespur_5B_RG_6, |
| | 2931 | way[is_prop_set(a5brg7, "Abbiegespur_5B_RG_7")]::Abbiegespur_5B_RG_7, |
| | 2932 | way[is_prop_set(a5brl1, "Abbiegespur_5B_RL_1")]::Abbiegespur_5B_RL_1, |
| | 2933 | way[is_prop_set(a5brl2, "Abbiegespur_5B_RL_2")]::Abbiegespur_5B_RL_2, |
| | 2934 | way[is_prop_set(a5brl3, "Abbiegespur_5B_RL_3")]::Abbiegespur_5B_RL_3, |
| | 2935 | way[is_prop_set(a5brl4, "Abbiegespur_5B_RL_4")]::Abbiegespur_5B_RL_4, |
| | 2936 | way[is_prop_set(a5brl5, "Abbiegespur_5B_RL_5")]::Abbiegespur_5B_RL_5, |
| | 2937 | way[is_prop_set(a5brl6, "Abbiegespur_5B_RL_6")]::Abbiegespur_5B_RL_6, |
| | 2938 | way[is_prop_set(a5brl7, "Abbiegespur_5B_RL_7")]::Abbiegespur_5B_RL_7, |
| | 2939 | way[is_prop_set(a6g1, "Abbiegespur_6_G_1")]::Abbiegespur_6_G_1, |
| | 2940 | way[is_prop_set(a6g2, "Abbiegespur_6_G_2")]::Abbiegespur_6_G_2, |
| | 2941 | way[is_prop_set(a6g3, "Abbiegespur_6_G_3")]::Abbiegespur_6_G_3, |
| | 2942 | way[is_prop_set(a6g4, "Abbiegespur_6_G_4")]::Abbiegespur_6_G_4, |
| | 2943 | way[is_prop_set(a6g5, "Abbiegespur_6_G_5")]::Abbiegespur_6_G_5, |
| | 2944 | way[is_prop_set(a6g6, "Abbiegespur_6_G_6")]::Abbiegespur_6_G_6, |
| | 2945 | way[is_prop_set(a6g7, "Abbiegespur_6_G_7")]::Abbiegespur_6_G_7, |
| | 2946 | way[is_prop_set(a6l1, "Abbiegespur_6_L_1")]::Abbiegespur_6_L_1, |
| | 2947 | way[is_prop_set(a6l2, "Abbiegespur_6_L_2")]::Abbiegespur_6_L_2, |
| | 2948 | way[is_prop_set(a6l3, "Abbiegespur_6_L_3")]::Abbiegespur_6_L_3, |
| | 2949 | way[is_prop_set(a6l4, "Abbiegespur_6_L_4")]::Abbiegespur_6_L_4, |
| | 2950 | way[is_prop_set(a6l5, "Abbiegespur_6_L_5")]::Abbiegespur_6_L_5, |
| | 2951 | way[is_prop_set(a6l6, "Abbiegespur_6_L_6")]::Abbiegespur_6_L_6, |
| | 2952 | way[is_prop_set(a6l7, "Abbiegespur_6_L_7")]::Abbiegespur_6_L_7, |
| | 2953 | way[is_prop_set(a6r1, "Abbiegespur_6_R_1")]::Abbiegespur_6_R_1, |
| | 2954 | way[is_prop_set(a6r2, "Abbiegespur_6_R_2")]::Abbiegespur_6_R_2, |
| | 2955 | way[is_prop_set(a6r3, "Abbiegespur_6_R_3")]::Abbiegespur_6_R_3, |
| | 2956 | way[is_prop_set(a6r4, "Abbiegespur_6_R_4")]::Abbiegespur_6_R_4, |
| | 2957 | way[is_prop_set(a6r5, "Abbiegespur_6_R_5")]::Abbiegespur_6_R_5, |
| | 2958 | way[is_prop_set(a6r6, "Abbiegespur_6_R_6")]::Abbiegespur_6_R_6, |
| | 2959 | way[is_prop_set(a6r7, "Abbiegespur_6_R_7")]::Abbiegespur_6_R_7, |
| | 2960 | way[is_prop_set(a6gr1, "Abbiegespur_6_GR_1")]::Abbiegespur_6_GR_1, |
| | 2961 | way[is_prop_set(a6gr2, "Abbiegespur_6_GR_2")]::Abbiegespur_6_GR_2, |
| | 2962 | way[is_prop_set(a6gr3, "Abbiegespur_6_GR_3")]::Abbiegespur_6_GR_3, |
| | 2963 | way[is_prop_set(a6gr4, "Abbiegespur_6_GR_4")]::Abbiegespur_6_GR_4, |
| | 2964 | way[is_prop_set(a6gr5, "Abbiegespur_6_GR_5")]::Abbiegespur_6_GR_5, |
| | 2965 | way[is_prop_set(a6gr6, "Abbiegespur_6_GR_6")]::Abbiegespur_6_GR_6, |
| | 2966 | way[is_prop_set(a6gr7, "Abbiegespur_6_GR_7")]::Abbiegespur_6_GR_7, |
| | 2967 | way[is_prop_set(a6gl1, "Abbiegespur_6_GL_1")]::Abbiegespur_6_GL_1, |
| | 2968 | way[is_prop_set(a6gl2, "Abbiegespur_6_GL_2")]::Abbiegespur_6_GL_2, |
| | 2969 | way[is_prop_set(a6gl3, "Abbiegespur_6_GL_3")]::Abbiegespur_6_GL_3, |
| | 2970 | way[is_prop_set(a6gl4, "Abbiegespur_6_GL_4")]::Abbiegespur_6_GL_4, |
| | 2971 | way[is_prop_set(a6gl5, "Abbiegespur_6_GL_5")]::Abbiegespur_6_GL_5, |
| | 2972 | way[is_prop_set(a6gl6, "Abbiegespur_6_GL_6")]::Abbiegespur_6_GL_6, |
| | 2973 | way[is_prop_set(a6gl7, "Abbiegespur_6_GL_7")]::Abbiegespur_6_GL_7, |
| | 2974 | way[is_prop_set(a6rl1, "Abbiegespur_6_RL_1")]::Abbiegespur_6_RL_1, |
| | 2975 | way[is_prop_set(a6rl2, "Abbiegespur_6_RL_2")]::Abbiegespur_6_RL_2, |
| | 2976 | way[is_prop_set(a6rl3, "Abbiegespur_6_RL_3")]::Abbiegespur_6_RL_3, |
| | 2977 | way[is_prop_set(a6rl4, "Abbiegespur_6_RL_4")]::Abbiegespur_6_RL_4, |
| | 2978 | way[is_prop_set(a6rl5, "Abbiegespur_6_RL_5")]::Abbiegespur_6_RL_5, |
| | 2979 | way[is_prop_set(a6rl6, "Abbiegespur_6_RL_6")]::Abbiegespur_6_RL_6, |
| | 2980 | way[is_prop_set(a6rl7, "Abbiegespur_6_RL_7")]::Abbiegespur_6_RL_7, |
| | 2981 | way[is_prop_set(a6bg1, "Abbiegespur_6B_G_1")]::Abbiegespur_6B_G_1, |
| | 2982 | way[is_prop_set(a6bg2, "Abbiegespur_6B_G_2")]::Abbiegespur_6B_G_2, |
| | 2983 | way[is_prop_set(a6bg3, "Abbiegespur_6B_G_3")]::Abbiegespur_6B_G_3, |
| | 2984 | way[is_prop_set(a6bg4, "Abbiegespur_6B_G_4")]::Abbiegespur_6B_G_4, |
| | 2985 | way[is_prop_set(a6bg5, "Abbiegespur_6B_G_5")]::Abbiegespur_6B_G_5, |
| | 2986 | way[is_prop_set(a6bg6, "Abbiegespur_6B_G_6")]::Abbiegespur_6B_G_6, |
| | 2987 | way[is_prop_set(a6bg7, "Abbiegespur_6B_G_7")]::Abbiegespur_6B_G_7, |
| | 2988 | way[is_prop_set(a6br1, "Abbiegespur_6B_R_1")]::Abbiegespur_6B_R_1, |
| | 2989 | way[is_prop_set(a6br2, "Abbiegespur_6B_R_2")]::Abbiegespur_6B_R_2, |
| | 2990 | way[is_prop_set(a6br3, "Abbiegespur_6B_R_3")]::Abbiegespur_6B_R_3, |
| | 2991 | way[is_prop_set(a6br4, "Abbiegespur_6B_R_4")]::Abbiegespur_6B_R_4, |
| | 2992 | way[is_prop_set(a6br5, "Abbiegespur_6B_R_5")]::Abbiegespur_6B_R_5, |
| | 2993 | way[is_prop_set(a6br6, "Abbiegespur_6B_R_6")]::Abbiegespur_6B_R_6, |
| | 2994 | way[is_prop_set(a6br7, "Abbiegespur_6B_R_7")]::Abbiegespur_6B_R_7, |
| | 2995 | way[is_prop_set(a6bl1, "Abbiegespur_6B_L_1")]::Abbiegespur_6B_L_1, |
| | 2996 | way[is_prop_set(a6bl2, "Abbiegespur_6B_L_2")]::Abbiegespur_6B_L_2, |
| | 2997 | way[is_prop_set(a6bl3, "Abbiegespur_6B_L_3")]::Abbiegespur_6B_L_3, |
| | 2998 | way[is_prop_set(a6bl4, "Abbiegespur_6B_L_4")]::Abbiegespur_6B_L_4, |
| | 2999 | way[is_prop_set(a6bl5, "Abbiegespur_6B_L_5")]::Abbiegespur_6B_L_5, |
| | 3000 | way[is_prop_set(a6bl6, "Abbiegespur_6B_L_6")]::Abbiegespur_6B_L_6, |
| | 3001 | way[is_prop_set(a6bl7, "Abbiegespur_6B_L_7")]::Abbiegespur_6B_L_7, |
| | 3002 | way[is_prop_set(a6blg1, "Abbiegespur_6B_LG_1")]::Abbiegespur_6B_LG_1, |
| | 3003 | way[is_prop_set(a6blg2, "Abbiegespur_6B_LG_2")]::Abbiegespur_6B_LG_2, |
| | 3004 | way[is_prop_set(a6blg3, "Abbiegespur_6B_LG_3")]::Abbiegespur_6B_LG_3, |
| | 3005 | way[is_prop_set(a6blg4, "Abbiegespur_6B_LG_4")]::Abbiegespur_6B_LG_4, |
| | 3006 | way[is_prop_set(a6blg5, "Abbiegespur_6B_LG_5")]::Abbiegespur_6B_LG_5, |
| | 3007 | way[is_prop_set(a6blg6, "Abbiegespur_6B_LG_6")]::Abbiegespur_6B_LG_6, |
| | 3008 | way[is_prop_set(a6blg7, "Abbiegespur_6B_LG_7")]::Abbiegespur_6B_LG_7, |
| | 3009 | way[is_prop_set(a6brg1, "Abbiegespur_6B_RG_1")]::Abbiegespur_6B_RG_1, |
| | 3010 | way[is_prop_set(a6brg2, "Abbiegespur_6B_RG_2")]::Abbiegespur_6B_RG_2, |
| | 3011 | way[is_prop_set(a6brg3, "Abbiegespur_6B_RG_3")]::Abbiegespur_6B_RG_3, |
| | 3012 | way[is_prop_set(a6brg4, "Abbiegespur_6B_RG_4")]::Abbiegespur_6B_RG_4, |
| | 3013 | way[is_prop_set(a6brg5, "Abbiegespur_6B_RG_5")]::Abbiegespur_6B_RG_5, |
| | 3014 | way[is_prop_set(a6brg6, "Abbiegespur_6B_RG_6")]::Abbiegespur_6B_RG_6, |
| | 3015 | way[is_prop_set(a6brg7, "Abbiegespur_6B_RG_7")]::Abbiegespur_6B_RG_7, |
| | 3016 | way[is_prop_set(a6brl1, "Abbiegespur_6B_RL_1")]::Abbiegespur_6B_RL_1, |
| | 3017 | way[is_prop_set(a6brl2, "Abbiegespur_6B_RL_2")]::Abbiegespur_6B_RL_2, |
| | 3018 | way[is_prop_set(a6brl3, "Abbiegespur_6B_RL_3")]::Abbiegespur_6B_RL_3, |
| | 3019 | way[is_prop_set(a6brl4, "Abbiegespur_6B_RL_4")]::Abbiegespur_6B_RL_4, |
| | 3020 | way[is_prop_set(a6brl5, "Abbiegespur_6B_RL_5")]::Abbiegespur_6B_RL_5, |
| | 3021 | way[is_prop_set(a6brl6, "Abbiegespur_6B_RL_6")]::Abbiegespur_6B_RL_6, |
| | 3022 | way[is_prop_set(a6brl7, "Abbiegespur_6B_RL_7")]::Abbiegespur_6B_RL_7, |
| | 3023 | way[is_prop_set(a7g1, "Abbiegespur_7_G_1")]::Abbiegespur_7_G_1, |
| | 3024 | way[is_prop_set(a7g2, "Abbiegespur_7_G_2")]::Abbiegespur_7_G_2, |
| | 3025 | way[is_prop_set(a7g3, "Abbiegespur_7_G_3")]::Abbiegespur_7_G_3, |
| | 3026 | way[is_prop_set(a7g4, "Abbiegespur_7_G_4")]::Abbiegespur_7_G_4, |
| | 3027 | way[is_prop_set(a7g5, "Abbiegespur_7_G_5")]::Abbiegespur_7_G_5, |
| | 3028 | way[is_prop_set(a7g6, "Abbiegespur_7_G_6")]::Abbiegespur_7_G_6, |
| | 3029 | way[is_prop_set(a7g7, "Abbiegespur_7_G_7")]::Abbiegespur_7_G_7, |
| | 3030 | way[is_prop_set(a7l1, "Abbiegespur_7_L_1")]::Abbiegespur_7_L_1, |
| | 3031 | way[is_prop_set(a7l2, "Abbiegespur_7_L_2")]::Abbiegespur_7_L_2, |
| | 3032 | way[is_prop_set(a7l3, "Abbiegespur_7_L_3")]::Abbiegespur_7_L_3, |
| | 3033 | way[is_prop_set(a7l4, "Abbiegespur_7_L_4")]::Abbiegespur_7_L_4, |
| | 3034 | way[is_prop_set(a7l5, "Abbiegespur_7_L_5")]::Abbiegespur_7_L_5, |
| | 3035 | way[is_prop_set(a7l6, "Abbiegespur_7_L_6")]::Abbiegespur_7_L_6, |
| | 3036 | way[is_prop_set(a7l7, "Abbiegespur_7_L_7")]::Abbiegespur_7_L_7, |
| | 3037 | way[is_prop_set(a7r1, "Abbiegespur_7_R_1")]::Abbiegespur_7_R_1, |
| | 3038 | way[is_prop_set(a7r2, "Abbiegespur_7_R_2")]::Abbiegespur_7_R_2, |
| | 3039 | way[is_prop_set(a7r3, "Abbiegespur_7_R_3")]::Abbiegespur_7_R_3, |
| | 3040 | way[is_prop_set(a7r4, "Abbiegespur_7_R_4")]::Abbiegespur_7_R_4, |
| | 3041 | way[is_prop_set(a7r5, "Abbiegespur_7_R_5")]::Abbiegespur_7_R_5, |
| | 3042 | way[is_prop_set(a7r6, "Abbiegespur_7_R_6")]::Abbiegespur_7_R_6, |
| | 3043 | way[is_prop_set(a7r7, "Abbiegespur_7_R_7")]::Abbiegespur_7_R_7, |
| | 3044 | way[is_prop_set(a7gr1, "Abbiegespur_7_GR_1")]::Abbiegespur_7_GR_1, |
| | 3045 | way[is_prop_set(a7gr2, "Abbiegespur_7_GR_2")]::Abbiegespur_7_GR_2, |
| | 3046 | way[is_prop_set(a7gr3, "Abbiegespur_7_GR_3")]::Abbiegespur_7_GR_3, |
| | 3047 | way[is_prop_set(a7gr4, "Abbiegespur_7_GR_4")]::Abbiegespur_7_GR_4, |
| | 3048 | way[is_prop_set(a7gr5, "Abbiegespur_7_GR_5")]::Abbiegespur_7_GR_5, |
| | 3049 | way[is_prop_set(a7gr6, "Abbiegespur_7_GR_6")]::Abbiegespur_7_GR_6, |
| | 3050 | way[is_prop_set(a7gr7, "Abbiegespur_7_GR_7")]::Abbiegespur_7_GR_7, |
| | 3051 | way[is_prop_set(a7gl1, "Abbiegespur_7_GL_1")]::Abbiegespur_7_GL_1, |
| | 3052 | way[is_prop_set(a7gl2, "Abbiegespur_7_GL_2")]::Abbiegespur_7_GL_2, |
| | 3053 | way[is_prop_set(a7gl3, "Abbiegespur_7_GL_3")]::Abbiegespur_7_GL_3, |
| | 3054 | way[is_prop_set(a7gl4, "Abbiegespur_7_GL_4")]::Abbiegespur_7_GL_4, |
| | 3055 | way[is_prop_set(a7gl5, "Abbiegespur_7_GL_5")]::Abbiegespur_7_GL_5, |
| | 3056 | way[is_prop_set(a7gl6, "Abbiegespur_7_GL_6")]::Abbiegespur_7_GL_6, |
| | 3057 | way[is_prop_set(a7gl7, "Abbiegespur_7_GL_7")]::Abbiegespur_7_GL_7, |
| | 3058 | way[is_prop_set(a7rl1, "Abbiegespur_7_RL_1")]::Abbiegespur_7_RL_1, |
| | 3059 | way[is_prop_set(a7rl2, "Abbiegespur_7_RL_2")]::Abbiegespur_7_RL_2, |
| | 3060 | way[is_prop_set(a7rl3, "Abbiegespur_7_RL_3")]::Abbiegespur_7_RL_3, |
| | 3061 | way[is_prop_set(a7rl4, "Abbiegespur_7_RL_4")]::Abbiegespur_7_RL_4, |
| | 3062 | way[is_prop_set(a7rl5, "Abbiegespur_7_RL_5")]::Abbiegespur_7_RL_5, |
| | 3063 | way[is_prop_set(a7rl6, "Abbiegespur_7_RL_6")]::Abbiegespur_7_RL_6, |
| | 3064 | way[is_prop_set(a7rl7, "Abbiegespur_7_RL_7")]::Abbiegespur_7_RL_7, |
| | 3065 | way[is_prop_set(a7bg1, "Abbiegespur_7B_G_1")]::Abbiegespur_7B_G_1, |
| | 3066 | way[is_prop_set(a7bg2, "Abbiegespur_7B_G_2")]::Abbiegespur_7B_G_2, |
| | 3067 | way[is_prop_set(a7bg3, "Abbiegespur_7B_G_3")]::Abbiegespur_7B_G_3, |
| | 3068 | way[is_prop_set(a7bg4, "Abbiegespur_7B_G_4")]::Abbiegespur_7B_G_4, |
| | 3069 | way[is_prop_set(a7bg5, "Abbiegespur_7B_G_5")]::Abbiegespur_7B_G_5, |
| | 3070 | way[is_prop_set(a7bg6, "Abbiegespur_7B_G_6")]::Abbiegespur_7B_G_6, |
| | 3071 | way[is_prop_set(a7bg7, "Abbiegespur_7B_G_7")]::Abbiegespur_7B_G_7, |
| | 3072 | way[is_prop_set(a7br1, "Abbiegespur_7B_R_1")]::Abbiegespur_7B_R_1, |
| | 3073 | way[is_prop_set(a7br2, "Abbiegespur_7B_R_2")]::Abbiegespur_7B_R_2, |
| | 3074 | way[is_prop_set(a7br3, "Abbiegespur_7B_R_3")]::Abbiegespur_7B_R_3, |
| | 3075 | way[is_prop_set(a7br4, "Abbiegespur_7B_R_4")]::Abbiegespur_7B_R_4, |
| | 3076 | way[is_prop_set(a7br5, "Abbiegespur_7B_R_5")]::Abbiegespur_7B_R_5, |
| | 3077 | way[is_prop_set(a7br6, "Abbiegespur_7B_R_6")]::Abbiegespur_7B_R_6, |
| | 3078 | way[is_prop_set(a7br7, "Abbiegespur_7B_R_7")]::Abbiegespur_7B_R_7, |
| | 3079 | way[is_prop_set(a7bl1, "Abbiegespur_7B_L_1")]::Abbiegespur_7B_L_1, |
| | 3080 | way[is_prop_set(a7bl2, "Abbiegespur_7B_L_2")]::Abbiegespur_7B_L_2, |
| | 3081 | way[is_prop_set(a7bl3, "Abbiegespur_7B_L_3")]::Abbiegespur_7B_L_3, |
| | 3082 | way[is_prop_set(a7bl4, "Abbiegespur_7B_L_4")]::Abbiegespur_7B_L_4, |
| | 3083 | way[is_prop_set(a7bl5, "Abbiegespur_7B_L_5")]::Abbiegespur_7B_L_5, |
| | 3084 | way[is_prop_set(a7bl6, "Abbiegespur_7B_L_6")]::Abbiegespur_7B_L_6, |
| | 3085 | way[is_prop_set(a7bl7, "Abbiegespur_7B_L_7")]::Abbiegespur_7B_L_7, |
| | 3086 | way[is_prop_set(a7blg1, "Abbiegespur_7B_LG_1")]::Abbiegespur_7B_LG_1, |
| | 3087 | way[is_prop_set(a7blg2, "Abbiegespur_7B_LG_2")]::Abbiegespur_7B_LG_2, |
| | 3088 | way[is_prop_set(a7blg3, "Abbiegespur_7B_LG_3")]::Abbiegespur_7B_LG_3, |
| | 3089 | way[is_prop_set(a7blg4, "Abbiegespur_7B_LG_4")]::Abbiegespur_7B_LG_4, |
| | 3090 | way[is_prop_set(a7blg5, "Abbiegespur_7B_LG_5")]::Abbiegespur_7B_LG_5, |
| | 3091 | way[is_prop_set(a7blg6, "Abbiegespur_7B_LG_6")]::Abbiegespur_7B_LG_6, |
| | 3092 | way[is_prop_set(a7blg7, "Abbiegespur_7B_LG_7")]::Abbiegespur_7B_LG_7, |
| | 3093 | way[is_prop_set(a7brg1, "Abbiegespur_7B_RG_1")]::Abbiegespur_7B_RG_1, |
| | 3094 | way[is_prop_set(a7brg2, "Abbiegespur_7B_RG_2")]::Abbiegespur_7B_RG_2, |
| | 3095 | way[is_prop_set(a7brg3, "Abbiegespur_7B_RG_3")]::Abbiegespur_7B_RG_3, |
| | 3096 | way[is_prop_set(a7brg4, "Abbiegespur_7B_RG_4")]::Abbiegespur_7B_RG_4, |
| | 3097 | way[is_prop_set(a7brg5, "Abbiegespur_7B_RG_5")]::Abbiegespur_7B_RG_5, |
| | 3098 | way[is_prop_set(a7brg6, "Abbiegespur_7B_RG_6")]::Abbiegespur_7B_RG_6, |
| | 3099 | way[is_prop_set(a7brg7, "Abbiegespur_7B_RG_7")]::Abbiegespur_7B_RG_7, |
| | 3100 | way[is_prop_set(a7brl1, "Abbiegespur_7B_RL_1")]::Abbiegespur_7B_RL_1, |
| | 3101 | way[is_prop_set(a7brl2, "Abbiegespur_7B_RL_2")]::Abbiegespur_7B_RL_2, |
| | 3102 | way[is_prop_set(a7brl3, "Abbiegespur_7B_RL_3")]::Abbiegespur_7B_RL_3, |
| | 3103 | way[is_prop_set(a7brl4, "Abbiegespur_7B_RL_4")]::Abbiegespur_7B_RL_4, |
| | 3104 | way[is_prop_set(a7brl5, "Abbiegespur_7B_RL_5")]::Abbiegespur_7B_RL_5, |
| | 3105 | way[is_prop_set(a7brl6, "Abbiegespur_7B_RL_6")]::Abbiegespur_7B_RL_6, |
| | 3106 | way[is_prop_set(a7brl7, "Abbiegespur_7B_RL_7")]::Abbiegespur_7B_RL_7, |
| | 3107 | way[is_prop_set(a8g1, "Abbiegespur_8_G_1")]::Abbiegespur_8_G_1, |
| | 3108 | way[is_prop_set(a8g2, "Abbiegespur_8_G_2")]::Abbiegespur_8_G_2, |
| | 3109 | way[is_prop_set(a8g3, "Abbiegespur_8_G_3")]::Abbiegespur_8_G_3, |
| | 3110 | way[is_prop_set(a8g4, "Abbiegespur_8_G_4")]::Abbiegespur_8_G_4, |
| | 3111 | way[is_prop_set(a8g5, "Abbiegespur_8_G_5")]::Abbiegespur_8_G_5, |
| | 3112 | way[is_prop_set(a8g6, "Abbiegespur_8_G_6")]::Abbiegespur_8_G_6, |
| | 3113 | way[is_prop_set(a8g7, "Abbiegespur_8_G_7")]::Abbiegespur_8_G_7, |
| | 3114 | way[is_prop_set(a8l1, "Abbiegespur_8_L_1")]::Abbiegespur_8_L_1, |
| | 3115 | way[is_prop_set(a8l2, "Abbiegespur_8_L_2")]::Abbiegespur_8_L_2, |
| | 3116 | way[is_prop_set(a8l3, "Abbiegespur_8_L_3")]::Abbiegespur_8_L_3, |
| | 3117 | way[is_prop_set(a8l4, "Abbiegespur_8_L_4")]::Abbiegespur_8_L_4, |
| | 3118 | way[is_prop_set(a8l5, "Abbiegespur_8_L_5")]::Abbiegespur_8_L_5, |
| | 3119 | way[is_prop_set(a8l6, "Abbiegespur_8_L_6")]::Abbiegespur_8_L_6, |
| | 3120 | way[is_prop_set(a8l7, "Abbiegespur_8_L_7")]::Abbiegespur_8_L_7, |
| | 3121 | way[is_prop_set(a8r1, "Abbiegespur_8_R_1")]::Abbiegespur_8_R_1, |
| | 3122 | way[is_prop_set(a8r2, "Abbiegespur_8_R_2")]::Abbiegespur_8_R_2, |
| | 3123 | way[is_prop_set(a8r3, "Abbiegespur_8_R_3")]::Abbiegespur_8_R_3, |
| | 3124 | way[is_prop_set(a8r4, "Abbiegespur_8_R_4")]::Abbiegespur_8_R_4, |
| | 3125 | way[is_prop_set(a8r5, "Abbiegespur_8_R_5")]::Abbiegespur_8_R_5, |
| | 3126 | way[is_prop_set(a8r6, "Abbiegespur_8_R_6")]::Abbiegespur_8_R_6, |
| | 3127 | way[is_prop_set(a8r7, "Abbiegespur_8_R_7")]::Abbiegespur_8_R_7, |
| | 3128 | way[is_prop_set(a8gr1, "Abbiegespur_8_GR_1")]::Abbiegespur_8_GR_1, |
| | 3129 | way[is_prop_set(a8gr2, "Abbiegespur_8_GR_2")]::Abbiegespur_8_GR_2, |
| | 3130 | way[is_prop_set(a8gr3, "Abbiegespur_8_GR_3")]::Abbiegespur_8_GR_3, |
| | 3131 | way[is_prop_set(a8gr4, "Abbiegespur_8_GR_4")]::Abbiegespur_8_GR_4, |
| | 3132 | way[is_prop_set(a8gr5, "Abbiegespur_8_GR_5")]::Abbiegespur_8_GR_5, |
| | 3133 | way[is_prop_set(a8gr6, "Abbiegespur_8_GR_6")]::Abbiegespur_8_GR_6, |
| | 3134 | way[is_prop_set(a8gr7, "Abbiegespur_8_GR_7")]::Abbiegespur_8_GR_7, |
| | 3135 | way[is_prop_set(a8gl1, "Abbiegespur_8_GL_1")]::Abbiegespur_8_GL_1, |
| | 3136 | way[is_prop_set(a8gl2, "Abbiegespur_8_GL_2")]::Abbiegespur_8_GL_2, |
| | 3137 | way[is_prop_set(a8gl3, "Abbiegespur_8_GL_3")]::Abbiegespur_8_GL_3, |
| | 3138 | way[is_prop_set(a8gl4, "Abbiegespur_8_GL_4")]::Abbiegespur_8_GL_4, |
| | 3139 | way[is_prop_set(a8gl5, "Abbiegespur_8_GL_5")]::Abbiegespur_8_GL_5, |
| | 3140 | way[is_prop_set(a8gl6, "Abbiegespur_8_GL_6")]::Abbiegespur_8_GL_6, |
| | 3141 | way[is_prop_set(a8gl7, "Abbiegespur_8_GL_7")]::Abbiegespur_8_GL_7, |
| | 3142 | way[is_prop_set(a8rl1, "Abbiegespur_8_RL_1")]::Abbiegespur_8_RL_1, |
| | 3143 | way[is_prop_set(a8rl2, "Abbiegespur_8_RL_2")]::Abbiegespur_8_RL_2, |
| | 3144 | way[is_prop_set(a8rl3, "Abbiegespur_8_RL_3")]::Abbiegespur_8_RL_3, |
| | 3145 | way[is_prop_set(a8rl4, "Abbiegespur_8_RL_4")]::Abbiegespur_8_RL_4, |
| | 3146 | way[is_prop_set(a8rl5, "Abbiegespur_8_RL_5")]::Abbiegespur_8_RL_5, |
| | 3147 | way[is_prop_set(a8rl6, "Abbiegespur_8_RL_6")]::Abbiegespur_8_RL_6, |
| | 3148 | way[is_prop_set(a8rl7, "Abbiegespur_8_RL_7")]::Abbiegespur_8_RL_7, |
| | 3149 | way[is_prop_set(a8bg1, "Abbiegespur_8B_G_1")]::Abbiegespur_8B_G_1, |
| | 3150 | way[is_prop_set(a8bg2, "Abbiegespur_8B_G_2")]::Abbiegespur_8B_G_2, |
| | 3151 | way[is_prop_set(a8bg3, "Abbiegespur_8B_G_3")]::Abbiegespur_8B_G_3, |
| | 3152 | way[is_prop_set(a8bg4, "Abbiegespur_8B_G_4")]::Abbiegespur_8B_G_4, |
| | 3153 | way[is_prop_set(a8bg5, "Abbiegespur_8B_G_5")]::Abbiegespur_8B_G_5, |
| | 3154 | way[is_prop_set(a8bg6, "Abbiegespur_8B_G_6")]::Abbiegespur_8B_G_6, |
| | 3155 | way[is_prop_set(a8bg7, "Abbiegespur_8B_G_7")]::Abbiegespur_8B_G_7, |
| | 3156 | way[is_prop_set(a8br1, "Abbiegespur_8B_R_1")]::Abbiegespur_8B_R_1, |
| | 3157 | way[is_prop_set(a8br2, "Abbiegespur_8B_R_2")]::Abbiegespur_8B_R_2, |
| | 3158 | way[is_prop_set(a8br3, "Abbiegespur_8B_R_3")]::Abbiegespur_8B_R_3, |
| | 3159 | way[is_prop_set(a8br4, "Abbiegespur_8B_R_4")]::Abbiegespur_8B_R_4, |
| | 3160 | way[is_prop_set(a8br5, "Abbiegespur_8B_R_5")]::Abbiegespur_8B_R_5, |
| | 3161 | way[is_prop_set(a8br6, "Abbiegespur_8B_R_6")]::Abbiegespur_8B_R_6, |
| | 3162 | way[is_prop_set(a8br7, "Abbiegespur_8B_R_7")]::Abbiegespur_8B_R_7, |
| | 3163 | way[is_prop_set(a8bl1, "Abbiegespur_8B_L_1")]::Abbiegespur_8B_L_1, |
| | 3164 | way[is_prop_set(a8bl2, "Abbiegespur_8B_L_2")]::Abbiegespur_8B_L_2, |
| | 3165 | way[is_prop_set(a8bl3, "Abbiegespur_8B_L_3")]::Abbiegespur_8B_L_3, |
| | 3166 | way[is_prop_set(a8bl4, "Abbiegespur_8B_L_4")]::Abbiegespur_8B_L_4, |
| | 3167 | way[is_prop_set(a8bl5, "Abbiegespur_8B_L_5")]::Abbiegespur_8B_L_5, |
| | 3168 | way[is_prop_set(a8bl6, "Abbiegespur_8B_L_6")]::Abbiegespur_8B_L_6, |
| | 3169 | way[is_prop_set(a8bl7, "Abbiegespur_8B_L_7")]::Abbiegespur_8B_L_7, |
| | 3170 | way[is_prop_set(a8blg1, "Abbiegespur_8B_LG_1")]::Abbiegespur_8B_LG_1, |
| | 3171 | way[is_prop_set(a8blg2, "Abbiegespur_8B_LG_2")]::Abbiegespur_8B_LG_2, |
| | 3172 | way[is_prop_set(a8blg3, "Abbiegespur_8B_LG_3")]::Abbiegespur_8B_LG_3, |
| | 3173 | way[is_prop_set(a8blg4, "Abbiegespur_8B_LG_4")]::Abbiegespur_8B_LG_4, |
| | 3174 | way[is_prop_set(a8blg5, "Abbiegespur_8B_LG_5")]::Abbiegespur_8B_LG_5, |
| | 3175 | way[is_prop_set(a8blg6, "Abbiegespur_8B_LG_6")]::Abbiegespur_8B_LG_6, |
| | 3176 | way[is_prop_set(a8blg7, "Abbiegespur_8B_LG_7")]::Abbiegespur_8B_LG_7, |
| | 3177 | way[is_prop_set(a8brg1, "Abbiegespur_8B_RG_1")]::Abbiegespur_8B_RG_1, |
| | 3178 | way[is_prop_set(a8brg2, "Abbiegespur_8B_RG_2")]::Abbiegespur_8B_RG_2, |
| | 3179 | way[is_prop_set(a8brg3, "Abbiegespur_8B_RG_3")]::Abbiegespur_8B_RG_3, |
| | 3180 | way[is_prop_set(a8brg4, "Abbiegespur_8B_RG_4")]::Abbiegespur_8B_RG_4, |
| | 3181 | way[is_prop_set(a8brg5, "Abbiegespur_8B_RG_5")]::Abbiegespur_8B_RG_5, |
| | 3182 | way[is_prop_set(a8brg6, "Abbiegespur_8B_RG_6")]::Abbiegespur_8B_RG_6, |
| | 3183 | way[is_prop_set(a8brg7, "Abbiegespur_8B_RG_7")]::Abbiegespur_8B_RG_7, |
| | 3184 | way[is_prop_set(a8brl1, "Abbiegespur_8B_RL_1")]::Abbiegespur_8B_RL_1, |
| | 3185 | way[is_prop_set(a8brl2, "Abbiegespur_8B_RL_2")]::Abbiegespur_8B_RL_2, |
| | 3186 | way[is_prop_set(a8brl3, "Abbiegespur_8B_RL_3")]::Abbiegespur_8B_RL_3, |
| | 3187 | way[is_prop_set(a8brl4, "Abbiegespur_8B_RL_4")]::Abbiegespur_8B_RL_4, |
| | 3188 | way[is_prop_set(a8brl5, "Abbiegespur_8B_RL_5")]::Abbiegespur_8B_RL_5, |
| | 3189 | way[is_prop_set(a8brl6, "Abbiegespur_8B_RL_6")]::Abbiegespur_8B_RL_6, |
| | 3190 | way[is_prop_set(a8brl7, "Abbiegespur_8B_RL_7")]::Abbiegespur_8B_RL_7 |
| | 3191 | { |
| | 3192 | color: white; |
| | 3193 | dashes-background-color: #404040; |
| | 3194 | dashes-background-opacity: 0; |
| | 3195 | object-z-index: 1.9; |
| | 3196 | width: 3; |
| | 3197 | fw_spur_1: eval(((prop(lanes_ges, "default")) * (prop(b2-set, "default"))) - ((prop(b-set, "default")) * (prop(lanes_bw, "default")))); |
| | 3198 | } |
| | 3199 | |
| | 3200 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3201 | /* */ |
| | 3202 | /* Abweichender offset für die Gegenrichtung Fahrspur 1 */ |
| | 3203 | /* Differend offset for the opposite direction lane 1 |
| | 3204 | /* */ |
| | 3205 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3206 | way[is_prop_set(a1bg1, "Abbiegespur_1B_G_1")]::Abbiegespur_1B_G_1, |
| | 3207 | way[is_prop_set(a1bg2, "Abbiegespur_1B_G_2")]::Abbiegespur_1B_G_2, |
| | 3208 | way[is_prop_set(a1bg3, "Abbiegespur_1B_G_3")]::Abbiegespur_1B_G_3, |
| | 3209 | way[is_prop_set(a1bg4, "Abbiegespur_1B_G_4")]::Abbiegespur_1B_G_4, |
| | 3210 | way[is_prop_set(a1bg5, "Abbiegespur_1B_G_5")]::Abbiegespur_1B_G_5, |
| | 3211 | way[is_prop_set(a1bg6, "Abbiegespur_1B_G_6")]::Abbiegespur_1B_G_6, |
| | 3212 | way[is_prop_set(a1bg7, "Abbiegespur_1B_G_7")]::Abbiegespur_1B_G_7, |
| | 3213 | way[is_prop_set(a1br1, "Abbiegespur_1B_R_1")]::Abbiegespur_1B_R_1, |
| | 3214 | way[is_prop_set(a1br2, "Abbiegespur_1B_R_2")]::Abbiegespur_1B_R_2, |
| | 3215 | way[is_prop_set(a1br3, "Abbiegespur_1B_R_3")]::Abbiegespur_1B_R_3, |
| | 3216 | way[is_prop_set(a1br4, "Abbiegespur_1B_R_4")]::Abbiegespur_1B_R_4, |
| | 3217 | way[is_prop_set(a1br5, "Abbiegespur_1B_R_5")]::Abbiegespur_1B_R_5, |
| | 3218 | way[is_prop_set(a1br6, "Abbiegespur_1B_R_6")]::Abbiegespur_1B_R_6, |
| | 3219 | way[is_prop_set(a1br7, "Abbiegespur_1B_R_7")]::Abbiegespur_1B_R_7, |
| | 3220 | way[is_prop_set(a1bl1, "Abbiegespur_1B_L_1")]::Abbiegespur_1B_L_1, |
| | 3221 | way[is_prop_set(a1bl2, "Abbiegespur_1B_L_2")]::Abbiegespur_1B_L_2, |
| | 3222 | way[is_prop_set(a1bl3, "Abbiegespur_1B_L_3")]::Abbiegespur_1B_L_3, |
| | 3223 | way[is_prop_set(a1bl4, "Abbiegespur_1B_L_4")]::Abbiegespur_1B_L_4, |
| | 3224 | way[is_prop_set(a1bl5, "Abbiegespur_1B_L_5")]::Abbiegespur_1B_L_5, |
| | 3225 | way[is_prop_set(a1bl6, "Abbiegespur_1B_L_6")]::Abbiegespur_1B_L_6, |
| | 3226 | way[is_prop_set(a1bl7, "Abbiegespur_1B_L_7")]::Abbiegespur_1B_L_7, |
| | 3227 | way[is_prop_set(a1blg1, "Abbiegespur_1B_LG_1")]::Abbiegespur_1B_LG_1, |
| | 3228 | way[is_prop_set(a1blg2, "Abbiegespur_1B_LG_2")]::Abbiegespur_1B_LG_2, |
| | 3229 | way[is_prop_set(a1blg3, "Abbiegespur_1B_LG_3")]::Abbiegespur_1B_LG_3, |
| | 3230 | way[is_prop_set(a1blg4, "Abbiegespur_1B_LG_4")]::Abbiegespur_1B_LG_4, |
| | 3231 | way[is_prop_set(a1blg5, "Abbiegespur_1B_LG_5")]::Abbiegespur_1B_LG_5, |
| | 3232 | way[is_prop_set(a1blg6, "Abbiegespur_1B_LG_6")]::Abbiegespur_1B_LG_6, |
| | 3233 | way[is_prop_set(a1blg7, "Abbiegespur_1B_LG_7")]::Abbiegespur_1B_LG_7, |
| | 3234 | way[is_prop_set(a1brg1, "Abbiegespur_1B_RG_1")]::Abbiegespur_1B_RG_1, |
| | 3235 | way[is_prop_set(a1brg2, "Abbiegespur_1B_RG_2")]::Abbiegespur_1B_RG_2, |
| | 3236 | way[is_prop_set(a1brg3, "Abbiegespur_1B_RG_3")]::Abbiegespur_1B_RG_3, |
| | 3237 | way[is_prop_set(a1brg4, "Abbiegespur_1B_RG_4")]::Abbiegespur_1B_RG_4, |
| | 3238 | way[is_prop_set(a1brg5, "Abbiegespur_1B_RG_5")]::Abbiegespur_1B_RG_5, |
| | 3239 | way[is_prop_set(a1brg6, "Abbiegespur_1B_RG_6")]::Abbiegespur_1B_RG_6, |
| | 3240 | way[is_prop_set(a1brg7, "Abbiegespur_1B_RG_7")]::Abbiegespur_1B_RG_7, |
| | 3241 | way[is_prop_set(a1brl1, "Abbiegespur_1B_RL_1")]::Abbiegespur_1B_RL_1, |
| | 3242 | way[is_prop_set(a1brl2, "Abbiegespur_1B_RL_2")]::Abbiegespur_1B_RL_2, |
| | 3243 | way[is_prop_set(a1brl3, "Abbiegespur_1B_RL_3")]::Abbiegespur_1B_RL_3, |
| | 3244 | way[is_prop_set(a1brl4, "Abbiegespur_1B_RL_4")]::Abbiegespur_1B_RL_4, |
| | 3245 | way[is_prop_set(a1brl5, "Abbiegespur_1B_RL_5")]::Abbiegespur_1B_RL_5, |
| | 3246 | way[is_prop_set(a1brl6, "Abbiegespur_1B_RL_6")]::Abbiegespur_1B_RL_6, |
| | 3247 | way[is_prop_set(a1brl7, "Abbiegespur_1B_RL_7")]::Abbiegespur_1B_RL_7 |
| | 3248 | { |
| | 3249 | fw_spur_1: eval(((prop(lanes_ges, "default")) * (prop(b2-set, "default"))) - ((prop(b-set, "default")) * (prop(lanes_bw, "default") -1))); |
| | 3250 | } |
| | 3251 | |
| | 3252 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3253 | /* */ |
| | 3254 | /* Abweichender offset für die Fahrspur 2 */ |
| | 3255 | /* */ |
| | 3256 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3257 | way[is_prop_set(a2g1, "Abbiegespur_2_G_1")]::Abbiegespur_2_G_1, |
| | 3258 | way[is_prop_set(a2g2, "Abbiegespur_2_G_2")]::Abbiegespur_2_G_2, |
| | 3259 | way[is_prop_set(a2g3, "Abbiegespur_2_G_3")]::Abbiegespur_2_G_3, |
| | 3260 | way[is_prop_set(a2g4, "Abbiegespur_2_G_4")]::Abbiegespur_2_G_4, |
| | 3261 | way[is_prop_set(a2g5, "Abbiegespur_2_G_5")]::Abbiegespur_2_G_5, |
| | 3262 | way[is_prop_set(a2g6, "Abbiegespur_2_G_6")]::Abbiegespur_2_G_6, |
| | 3263 | way[is_prop_set(a2g7, "Abbiegespur_2_G_7")]::Abbiegespur_2_G_7, |
| | 3264 | way[is_prop_set(a2l1, "Abbiegespur_2_L_1")]::Abbiegespur_2_L_1, |
| | 3265 | way[is_prop_set(a2l2, "Abbiegespur_2_L_2")]::Abbiegespur_2_L_2, |
| | 3266 | way[is_prop_set(a2l3, "Abbiegespur_2_L_3")]::Abbiegespur_2_L_3, |
| | 3267 | way[is_prop_set(a2l4, "Abbiegespur_2_L_4")]::Abbiegespur_2_L_4, |
| | 3268 | way[is_prop_set(a2l5, "Abbiegespur_2_L_5")]::Abbiegespur_2_L_5, |
| | 3269 | way[is_prop_set(a2l6, "Abbiegespur_2_L_6")]::Abbiegespur_2_L_6, |
| | 3270 | way[is_prop_set(a2l7, "Abbiegespur_2_L_7")]::Abbiegespur_2_L_7, |
| | 3271 | way[is_prop_set(a2r1, "Abbiegespur_2_R_1")]::Abbiegespur_2_R_1, |
| | 3272 | way[is_prop_set(a2r2, "Abbiegespur_2_R_2")]::Abbiegespur_2_R_2, |
| | 3273 | way[is_prop_set(a2r3, "Abbiegespur_2_R_3")]::Abbiegespur_2_R_3, |
| | 3274 | way[is_prop_set(a2r4, "Abbiegespur_2_R_4")]::Abbiegespur_2_R_4, |
| | 3275 | way[is_prop_set(a2r5, "Abbiegespur_2_R_5")]::Abbiegespur_2_R_5, |
| | 3276 | way[is_prop_set(a2r6, "Abbiegespur_2_R_6")]::Abbiegespur_2_R_6, |
| | 3277 | way[is_prop_set(a2r7, "Abbiegespur_2_R_7")]::Abbiegespur_2_R_7, |
| | 3278 | way[is_prop_set(a2gr1, "Abbiegespur_2_GR_1")]::Abbiegespur_2_GR_1, |
| | 3279 | way[is_prop_set(a2gr2, "Abbiegespur_2_GR_2")]::Abbiegespur_2_GR_2, |
| | 3280 | way[is_prop_set(a2gr3, "Abbiegespur_2_GR_3")]::Abbiegespur_2_GR_3, |
| | 3281 | way[is_prop_set(a2gr4, "Abbiegespur_2_GR_4")]::Abbiegespur_2_GR_4, |
| | 3282 | way[is_prop_set(a2gr5, "Abbiegespur_2_GR_5")]::Abbiegespur_2_GR_5, |
| | 3283 | way[is_prop_set(a2gr6, "Abbiegespur_2_GR_6")]::Abbiegespur_2_GR_6, |
| | 3284 | way[is_prop_set(a2gr7, "Abbiegespur_2_GR_7")]::Abbiegespur_2_GR_7, |
| | 3285 | way[is_prop_set(a2gl1, "Abbiegespur_2_GL_1")]::Abbiegespur_2_GL_1, |
| | 3286 | way[is_prop_set(a2gl2, "Abbiegespur_2_GL_2")]::Abbiegespur_2_GL_2, |
| | 3287 | way[is_prop_set(a2gl3, "Abbiegespur_2_GL_3")]::Abbiegespur_2_GL_3, |
| | 3288 | way[is_prop_set(a2gl4, "Abbiegespur_2_GL_4")]::Abbiegespur_2_GL_4, |
| | 3289 | way[is_prop_set(a2gl5, "Abbiegespur_2_GL_5")]::Abbiegespur_2_GL_5, |
| | 3290 | way[is_prop_set(a2gl6, "Abbiegespur_2_GL_6")]::Abbiegespur_2_GL_6, |
| | 3291 | way[is_prop_set(a2gl7, "Abbiegespur_2_GL_7")]::Abbiegespur_2_GL_7, |
| | 3292 | way[is_prop_set(a2rl1, "Abbiegespur_2_RL_1")]::Abbiegespur_2_RL_1, |
| | 3293 | way[is_prop_set(a2rl2, "Abbiegespur_2_RL_2")]::Abbiegespur_2_RL_2, |
| | 3294 | way[is_prop_set(a2rl3, "Abbiegespur_2_RL_3")]::Abbiegespur_2_RL_3, |
| | 3295 | way[is_prop_set(a2rl4, "Abbiegespur_2_RL_4")]::Abbiegespur_2_RL_4, |
| | 3296 | way[is_prop_set(a2rl5, "Abbiegespur_2_RL_5")]::Abbiegespur_2_RL_5, |
| | 3297 | way[is_prop_set(a2rl6, "Abbiegespur_2_RL_6")]::Abbiegespur_2_RL_6, |
| | 3298 | way[is_prop_set(a2rl7, "Abbiegespur_2_RL_7")]::Abbiegespur_2_RL_7 |
| | 3299 | { |
| | 3300 | fw_spur_1: eval((prop(fw_spur_1)) - ((prop(b-set, "default")) *1)); |
| | 3301 | } |
| | 3302 | |
| | 3303 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3304 | /* */ |
| | 3305 | /* Abweichender offset für die Fahrspur 2 rückwärts */ |
| | 3306 | /* */ |
| | 3307 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3308 | way[is_prop_set(a2bg1, "Abbiegespur_2B_G_1")]::Abbiegespur_2B_G_1, |
| | 3309 | way[is_prop_set(a2bg2, "Abbiegespur_2B_G_2")]::Abbiegespur_2B_G_2, |
| | 3310 | way[is_prop_set(a2bg3, "Abbiegespur_2B_G_3")]::Abbiegespur_2B_G_3, |
| | 3311 | way[is_prop_set(a2bg4, "Abbiegespur_2B_G_4")]::Abbiegespur_2B_G_4, |
| | 3312 | way[is_prop_set(a2bg5, "Abbiegespur_2B_G_5")]::Abbiegespur_2B_G_5, |
| | 3313 | way[is_prop_set(a2bg6, "Abbiegespur_2B_G_6")]::Abbiegespur_2B_G_6, |
| | 3314 | way[is_prop_set(a2bg7, "Abbiegespur_2B_G_7")]::Abbiegespur_2B_G_7, |
| | 3315 | way[is_prop_set(a2br1, "Abbiegespur_2B_R_1")]::Abbiegespur_2B_R_1, |
| | 3316 | way[is_prop_set(a2br2, "Abbiegespur_2B_R_2")]::Abbiegespur_2B_R_2, |
| | 3317 | way[is_prop_set(a2br3, "Abbiegespur_2B_R_3")]::Abbiegespur_2B_R_3, |
| | 3318 | way[is_prop_set(a2br4, "Abbiegespur_2B_R_4")]::Abbiegespur_2B_R_4, |
| | 3319 | way[is_prop_set(a2br5, "Abbiegespur_2B_R_5")]::Abbiegespur_2B_R_5, |
| | 3320 | way[is_prop_set(a2br6, "Abbiegespur_2B_R_6")]::Abbiegespur_2B_R_6, |
| | 3321 | way[is_prop_set(a2br7, "Abbiegespur_2B_R_7")]::Abbiegespur_2B_R_7, |
| | 3322 | way[is_prop_set(a2bl1, "Abbiegespur_2B_L_1")]::Abbiegespur_2B_L_1, |
| | 3323 | way[is_prop_set(a2bl2, "Abbiegespur_2B_L_2")]::Abbiegespur_2B_L_2, |
| | 3324 | way[is_prop_set(a2bl3, "Abbiegespur_2B_L_3")]::Abbiegespur_2B_L_3, |
| | 3325 | way[is_prop_set(a2bl4, "Abbiegespur_2B_L_4")]::Abbiegespur_2B_L_4, |
| | 3326 | way[is_prop_set(a2bl5, "Abbiegespur_2B_L_5")]::Abbiegespur_2B_L_5, |
| | 3327 | way[is_prop_set(a2bl6, "Abbiegespur_2B_L_6")]::Abbiegespur_2B_L_6, |
| | 3328 | way[is_prop_set(a2bl7, "Abbiegespur_2B_L_7")]::Abbiegespur_2B_L_7, |
| | 3329 | way[is_prop_set(a2blg1, "Abbiegespur_2B_LG_1")]::Abbiegespur_2B_LG_1, |
| | 3330 | way[is_prop_set(a2blg2, "Abbiegespur_2B_LG_2")]::Abbiegespur_2B_LG_2, |
| | 3331 | way[is_prop_set(a2blg3, "Abbiegespur_2B_LG_3")]::Abbiegespur_2B_LG_3, |
| | 3332 | way[is_prop_set(a2blg4, "Abbiegespur_2B_LG_4")]::Abbiegespur_2B_LG_4, |
| | 3333 | way[is_prop_set(a2blg5, "Abbiegespur_2B_LG_5")]::Abbiegespur_2B_LG_5, |
| | 3334 | way[is_prop_set(a2blg6, "Abbiegespur_2B_LG_6")]::Abbiegespur_2B_LG_6, |
| | 3335 | way[is_prop_set(a2blg7, "Abbiegespur_2B_LG_7")]::Abbiegespur_2B_LG_7, |
| | 3336 | way[is_prop_set(a2brg1, "Abbiegespur_2B_RG_1")]::Abbiegespur_2B_RG_1, |
| | 3337 | way[is_prop_set(a2brg2, "Abbiegespur_2B_RG_2")]::Abbiegespur_2B_RG_2, |
| | 3338 | way[is_prop_set(a2brg3, "Abbiegespur_2B_RG_3")]::Abbiegespur_2B_RG_3, |
| | 3339 | way[is_prop_set(a2brg4, "Abbiegespur_2B_RG_4")]::Abbiegespur_2B_RG_4, |
| | 3340 | way[is_prop_set(a2brg5, "Abbiegespur_2B_RG_5")]::Abbiegespur_2B_RG_5, |
| | 3341 | way[is_prop_set(a2brg6, "Abbiegespur_2B_RG_6")]::Abbiegespur_2B_RG_6, |
| | 3342 | way[is_prop_set(a2brg7, "Abbiegespur_2B_RG_7")]::Abbiegespur_2B_RG_7, |
| | 3343 | way[is_prop_set(a2brl1, "Abbiegespur_2B_RL_1")]::Abbiegespur_2B_RL_1, |
| | 3344 | way[is_prop_set(a2brl2, "Abbiegespur_2B_RL_2")]::Abbiegespur_2B_RL_2, |
| | 3345 | way[is_prop_set(a2brl3, "Abbiegespur_2B_RL_3")]::Abbiegespur_2B_RL_3, |
| | 3346 | way[is_prop_set(a2brl4, "Abbiegespur_2B_RL_4")]::Abbiegespur_2B_RL_4, |
| | 3347 | way[is_prop_set(a2brl5, "Abbiegespur_2B_RL_5")]::Abbiegespur_2B_RL_5, |
| | 3348 | way[is_prop_set(a2brl6, "Abbiegespur_2B_RL_6")]::Abbiegespur_2B_RL_6, |
| | 3349 | way[is_prop_set(a2brl7, "Abbiegespur_2B_RL_7")]::Abbiegespur_2B_RL_7 |
| | 3350 | { |
| | 3351 | fw_spur_1: eval(((prop(lanes_ges, "default")) * (prop(b2-set, "default"))) - ((prop(b-set, "default")) * (prop(lanes_bw, "default") -1)) - |
| | 3352 | ((prop(b-set, "default")) *(-1))); |
| | 3353 | } |
| | 3354 | |
| | 3355 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3356 | /* */ |
| | 3357 | /* Abweichender offset für die Fahrspur 3 */ |
| | 3358 | /* */ |
| | 3359 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3360 | way[is_prop_set(a3g1, "Abbiegespur_3_G_1")]::Abbiegespur_3_G_1, |
| | 3361 | way[is_prop_set(a3g2, "Abbiegespur_3_G_2")]::Abbiegespur_3_G_2, |
| | 3362 | way[is_prop_set(a3g3, "Abbiegespur_3_G_3")]::Abbiegespur_3_G_3, |
| | 3363 | way[is_prop_set(a3g4, "Abbiegespur_3_G_4")]::Abbiegespur_3_G_4, |
| | 3364 | way[is_prop_set(a3g5, "Abbiegespur_3_G_5")]::Abbiegespur_3_G_5, |
| | 3365 | way[is_prop_set(a3g6, "Abbiegespur_3_G_6")]::Abbiegespur_3_G_6, |
| | 3366 | way[is_prop_set(a3g7, "Abbiegespur_3_G_7")]::Abbiegespur_3_G_7, |
| | 3367 | way[is_prop_set(a3l1, "Abbiegespur_3_L_1")]::Abbiegespur_3_L_1, |
| | 3368 | way[is_prop_set(a3l2, "Abbiegespur_3_L_2")]::Abbiegespur_3_L_2, |
| | 3369 | way[is_prop_set(a3l3, "Abbiegespur_3_L_3")]::Abbiegespur_3_L_3, |
| | 3370 | way[is_prop_set(a3l4, "Abbiegespur_3_L_4")]::Abbiegespur_3_L_4, |
| | 3371 | way[is_prop_set(a3l5, "Abbiegespur_3_L_5")]::Abbiegespur_3_L_5, |
| | 3372 | way[is_prop_set(a3l6, "Abbiegespur_3_L_6")]::Abbiegespur_3_L_6, |
| | 3373 | way[is_prop_set(a3l7, "Abbiegespur_3_L_7")]::Abbiegespur_3_L_7, |
| | 3374 | way[is_prop_set(a3r1, "Abbiegespur_3_R_1")]::Abbiegespur_3_R_1, |
| | 3375 | way[is_prop_set(a3r2, "Abbiegespur_3_R_2")]::Abbiegespur_3_R_2, |
| | 3376 | way[is_prop_set(a3r3, "Abbiegespur_3_R_3")]::Abbiegespur_3_R_3, |
| | 3377 | way[is_prop_set(a3r4, "Abbiegespur_3_R_4")]::Abbiegespur_3_R_4, |
| | 3378 | way[is_prop_set(a3r5, "Abbiegespur_3_R_5")]::Abbiegespur_3_R_5, |
| | 3379 | way[is_prop_set(a3r6, "Abbiegespur_3_R_6")]::Abbiegespur_3_R_6, |
| | 3380 | way[is_prop_set(a3r7, "Abbiegespur_3_R_7")]::Abbiegespur_3_R_7, |
| | 3381 | way[is_prop_set(a3gr1, "Abbiegespur_3_GR_1")]::Abbiegespur_3_GR_1, |
| | 3382 | way[is_prop_set(a3gr2, "Abbiegespur_3_GR_2")]::Abbiegespur_3_GR_2, |
| | 3383 | way[is_prop_set(a3gr3, "Abbiegespur_3_GR_3")]::Abbiegespur_3_GR_3, |
| | 3384 | way[is_prop_set(a3gr4, "Abbiegespur_3_GR_4")]::Abbiegespur_3_GR_4, |
| | 3385 | way[is_prop_set(a3gr5, "Abbiegespur_3_GR_5")]::Abbiegespur_3_GR_5, |
| | 3386 | way[is_prop_set(a3gr6, "Abbiegespur_3_GR_6")]::Abbiegespur_3_GR_6, |
| | 3387 | way[is_prop_set(a3gr7, "Abbiegespur_3_GR_7")]::Abbiegespur_3_GR_7, |
| | 3388 | way[is_prop_set(a3gl1, "Abbiegespur_3_GL_1")]::Abbiegespur_3_GL_1, |
| | 3389 | way[is_prop_set(a3gl2, "Abbiegespur_3_GL_2")]::Abbiegespur_3_GL_2, |
| | 3390 | way[is_prop_set(a3gl3, "Abbiegespur_3_GL_3")]::Abbiegespur_3_GL_3, |
| | 3391 | way[is_prop_set(a3gl4, "Abbiegespur_3_GL_4")]::Abbiegespur_3_GL_4, |
| | 3392 | way[is_prop_set(a3gl5, "Abbiegespur_3_GL_5")]::Abbiegespur_3_GL_5, |
| | 3393 | way[is_prop_set(a3gl6, "Abbiegespur_3_GL_6")]::Abbiegespur_3_GL_6, |
| | 3394 | way[is_prop_set(a3gl7, "Abbiegespur_3_GL_7")]::Abbiegespur_3_GL_7, |
| | 3395 | way[is_prop_set(a3rl1, "Abbiegespur_3_RL_1")]::Abbiegespur_3_RL_1, |
| | 3396 | way[is_prop_set(a3rl2, "Abbiegespur_3_RL_2")]::Abbiegespur_3_RL_2, |
| | 3397 | way[is_prop_set(a3rl3, "Abbiegespur_3_RL_3")]::Abbiegespur_3_RL_3, |
| | 3398 | way[is_prop_set(a3rl4, "Abbiegespur_3_RL_4")]::Abbiegespur_3_RL_4, |
| | 3399 | way[is_prop_set(a3rl5, "Abbiegespur_3_RL_5")]::Abbiegespur_3_RL_5, |
| | 3400 | way[is_prop_set(a3rl6, "Abbiegespur_3_RL_6")]::Abbiegespur_3_RL_6, |
| | 3401 | way[is_prop_set(a3rl7, "Abbiegespur_3_RL_7")]::Abbiegespur_3_RL_7 |
| | 3402 | { |
| | 3403 | fw_spur_1: eval((prop(fw_spur_1)) - ((prop(b-set, "default")) *2)); |
| | 3404 | } |
| | 3405 | |
| | 3406 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3407 | /* */ |
| | 3408 | /* Abweichender offset für die Fahrspur 3 rückwärts */ |
| | 3409 | /* */ |
| | 3410 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3411 | way[is_prop_set(a3bg1, "Abbiegespur_3B_G_1")]::Abbiegespur_3B_G_1, |
| | 3412 | way[is_prop_set(a3bg2, "Abbiegespur_3B_G_2")]::Abbiegespur_3B_G_2, |
| | 3413 | way[is_prop_set(a3bg3, "Abbiegespur_3B_G_3")]::Abbiegespur_3B_G_3, |
| | 3414 | way[is_prop_set(a3bg4, "Abbiegespur_3B_G_4")]::Abbiegespur_3B_G_4, |
| | 3415 | way[is_prop_set(a3bg5, "Abbiegespur_3B_G_5")]::Abbiegespur_3B_G_5, |
| | 3416 | way[is_prop_set(a3bg6, "Abbiegespur_3B_G_6")]::Abbiegespur_3B_G_6, |
| | 3417 | way[is_prop_set(a3bg7, "Abbiegespur_3B_G_7")]::Abbiegespur_3B_G_7, |
| | 3418 | way[is_prop_set(a3br1, "Abbiegespur_3B_R_1")]::Abbiegespur_3B_R_1, |
| | 3419 | way[is_prop_set(a3br2, "Abbiegespur_3B_R_2")]::Abbiegespur_3B_R_2, |
| | 3420 | way[is_prop_set(a3br3, "Abbiegespur_3B_R_3")]::Abbiegespur_3B_R_3, |
| | 3421 | way[is_prop_set(a3br4, "Abbiegespur_3B_R_4")]::Abbiegespur_3B_R_4, |
| | 3422 | way[is_prop_set(a3br5, "Abbiegespur_3B_R_5")]::Abbiegespur_3B_R_5, |
| | 3423 | way[is_prop_set(a3br6, "Abbiegespur_3B_R_6")]::Abbiegespur_3B_R_6, |
| | 3424 | way[is_prop_set(a3br7, "Abbiegespur_3B_R_7")]::Abbiegespur_3B_R_7, |
| | 3425 | way[is_prop_set(a3bl1, "Abbiegespur_3B_L_1")]::Abbiegespur_3B_L_1, |
| | 3426 | way[is_prop_set(a3bl2, "Abbiegespur_3B_L_2")]::Abbiegespur_3B_L_2, |
| | 3427 | way[is_prop_set(a3bl3, "Abbiegespur_3B_L_3")]::Abbiegespur_3B_L_3, |
| | 3428 | way[is_prop_set(a3bl4, "Abbiegespur_3B_L_4")]::Abbiegespur_3B_L_4, |
| | 3429 | way[is_prop_set(a3bl5, "Abbiegespur_3B_L_5")]::Abbiegespur_3B_L_5, |
| | 3430 | way[is_prop_set(a3bl6, "Abbiegespur_3B_L_6")]::Abbiegespur_3B_L_6, |
| | 3431 | way[is_prop_set(a3bl7, "Abbiegespur_3B_L_7")]::Abbiegespur_3B_L_7, |
| | 3432 | way[is_prop_set(a3blg1, "Abbiegespur_3B_LG_1")]::Abbiegespur_3B_LG_1, |
| | 3433 | way[is_prop_set(a3blg2, "Abbiegespur_3B_LG_2")]::Abbiegespur_3B_LG_2, |
| | 3434 | way[is_prop_set(a3blg3, "Abbiegespur_3B_LG_3")]::Abbiegespur_3B_LG_3, |
| | 3435 | way[is_prop_set(a3blg4, "Abbiegespur_3B_LG_4")]::Abbiegespur_3B_LG_4, |
| | 3436 | way[is_prop_set(a3blg5, "Abbiegespur_3B_LG_5")]::Abbiegespur_3B_LG_5, |
| | 3437 | way[is_prop_set(a3blg6, "Abbiegespur_3B_LG_6")]::Abbiegespur_3B_LG_6, |
| | 3438 | way[is_prop_set(a3blg7, "Abbiegespur_3B_LG_7")]::Abbiegespur_3B_LG_7, |
| | 3439 | way[is_prop_set(a3brg1, "Abbiegespur_3B_RG_1")]::Abbiegespur_3B_RG_1, |
| | 3440 | way[is_prop_set(a3brg2, "Abbiegespur_3B_RG_2")]::Abbiegespur_3B_RG_2, |
| | 3441 | way[is_prop_set(a3brg3, "Abbiegespur_3B_RG_3")]::Abbiegespur_3B_RG_3, |
| | 3442 | way[is_prop_set(a3brg4, "Abbiegespur_3B_RG_4")]::Abbiegespur_3B_RG_4, |
| | 3443 | way[is_prop_set(a3brg5, "Abbiegespur_3B_RG_5")]::Abbiegespur_3B_RG_5, |
| | 3444 | way[is_prop_set(a3brg6, "Abbiegespur_3B_RG_6")]::Abbiegespur_3B_RG_6, |
| | 3445 | way[is_prop_set(a3brg7, "Abbiegespur_3B_RG_7")]::Abbiegespur_3B_RG_7, |
| | 3446 | way[is_prop_set(a3brl1, "Abbiegespur_3B_RL_1")]::Abbiegespur_3B_RL_1, |
| | 3447 | way[is_prop_set(a3brl2, "Abbiegespur_3B_RL_2")]::Abbiegespur_3B_RL_2, |
| | 3448 | way[is_prop_set(a3brl3, "Abbiegespur_3B_RL_3")]::Abbiegespur_3B_RL_3, |
| | 3449 | way[is_prop_set(a3brl4, "Abbiegespur_3B_RL_4")]::Abbiegespur_3B_RL_4, |
| | 3450 | way[is_prop_set(a3brl5, "Abbiegespur_3B_RL_5")]::Abbiegespur_3B_RL_5, |
| | 3451 | way[is_prop_set(a3brl6, "Abbiegespur_3B_RL_6")]::Abbiegespur_3B_RL_6, |
| | 3452 | way[is_prop_set(a3brl7, "Abbiegespur_3B_RL_7")]::Abbiegespur_3B_RL_7 |
| | 3453 | { |
| | 3454 | fw_spur_1: eval(((prop(lanes_ges, "default")) * (prop(b2-set, "default"))) - ((prop(b-set, "default")) * (prop(lanes_bw, "default") -1)) - |
| | 3455 | ((prop(b-set, "default")) *(-2))); |
| | 3456 | } |
| | 3457 | |
| | 3458 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3459 | /* */ |
| | 3460 | /* Abweichender offset für die Fahrspur 4 */ |
| | 3461 | /* */ |
| | 3462 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3463 | way[is_prop_set(a4g1, "Abbiegespur_4_G_1")]::Abbiegespur_4_G_1, |
| | 3464 | way[is_prop_set(a4g2, "Abbiegespur_4_G_2")]::Abbiegespur_4_G_2, |
| | 3465 | way[is_prop_set(a4g3, "Abbiegespur_4_G_3")]::Abbiegespur_4_G_3, |
| | 3466 | way[is_prop_set(a4g4, "Abbiegespur_4_G_4")]::Abbiegespur_4_G_4, |
| | 3467 | way[is_prop_set(a4g5, "Abbiegespur_4_G_5")]::Abbiegespur_4_G_5, |
| | 3468 | way[is_prop_set(a4g6, "Abbiegespur_4_G_6")]::Abbiegespur_4_G_6, |
| | 3469 | way[is_prop_set(a4g7, "Abbiegespur_4_G_7")]::Abbiegespur_4_G_7, |
| | 3470 | way[is_prop_set(a4l1, "Abbiegespur_4_L_1")]::Abbiegespur_4_L_1, |
| | 3471 | way[is_prop_set(a4l2, "Abbiegespur_4_L_2")]::Abbiegespur_4_L_2, |
| | 3472 | way[is_prop_set(a4l3, "Abbiegespur_4_L_3")]::Abbiegespur_4_L_3, |
| | 3473 | way[is_prop_set(a4l4, "Abbiegespur_4_L_4")]::Abbiegespur_4_L_4, |
| | 3474 | way[is_prop_set(a4l5, "Abbiegespur_4_L_5")]::Abbiegespur_4_L_5, |
| | 3475 | way[is_prop_set(a4l6, "Abbiegespur_4_L_6")]::Abbiegespur_4_L_6, |
| | 3476 | way[is_prop_set(a4l7, "Abbiegespur_4_L_7")]::Abbiegespur_4_L_7, |
| | 3477 | way[is_prop_set(a4r1, "Abbiegespur_4_R_1")]::Abbiegespur_4_R_1, |
| | 3478 | way[is_prop_set(a4r2, "Abbiegespur_4_R_2")]::Abbiegespur_4_R_2, |
| | 3479 | way[is_prop_set(a4r3, "Abbiegespur_4_R_3")]::Abbiegespur_4_R_3, |
| | 3480 | way[is_prop_set(a4r4, "Abbiegespur_4_R_4")]::Abbiegespur_4_R_4, |
| | 3481 | way[is_prop_set(a4r5, "Abbiegespur_4_R_5")]::Abbiegespur_4_R_5, |
| | 3482 | way[is_prop_set(a4r6, "Abbiegespur_4_R_6")]::Abbiegespur_4_R_6, |
| | 3483 | way[is_prop_set(a4r7, "Abbiegespur_4_R_7")]::Abbiegespur_4_R_7, |
| | 3484 | way[is_prop_set(a4gr1, "Abbiegespur_4_GR_1")]::Abbiegespur_4_GR_1, |
| | 3485 | way[is_prop_set(a4gr2, "Abbiegespur_4_GR_2")]::Abbiegespur_4_GR_2, |
| | 3486 | way[is_prop_set(a4gr3, "Abbiegespur_4_GR_3")]::Abbiegespur_4_GR_3, |
| | 3487 | way[is_prop_set(a4gr4, "Abbiegespur_4_GR_4")]::Abbiegespur_4_GR_4, |
| | 3488 | way[is_prop_set(a4gr5, "Abbiegespur_4_GR_5")]::Abbiegespur_4_GR_5, |
| | 3489 | way[is_prop_set(a4gr6, "Abbiegespur_4_GR_6")]::Abbiegespur_4_GR_6, |
| | 3490 | way[is_prop_set(a4gr7, "Abbiegespur_4_GR_7")]::Abbiegespur_4_GR_7, |
| | 3491 | way[is_prop_set(a4gl1, "Abbiegespur_4_GL_1")]::Abbiegespur_4_GL_1, |
| | 3492 | way[is_prop_set(a4gl2, "Abbiegespur_4_GL_2")]::Abbiegespur_4_GL_2, |
| | 3493 | way[is_prop_set(a4gl3, "Abbiegespur_4_GL_3")]::Abbiegespur_4_GL_3, |
| | 3494 | way[is_prop_set(a4gl4, "Abbiegespur_4_GL_4")]::Abbiegespur_4_GL_4, |
| | 3495 | way[is_prop_set(a4gl5, "Abbiegespur_4_GL_5")]::Abbiegespur_4_GL_5, |
| | 3496 | way[is_prop_set(a4gl6, "Abbiegespur_4_GL_6")]::Abbiegespur_4_GL_6, |
| | 3497 | way[is_prop_set(a4gl7, "Abbiegespur_4_GL_7")]::Abbiegespur_4_GL_7, |
| | 3498 | way[is_prop_set(a4rl1, "Abbiegespur_4_RL_1")]::Abbiegespur_4_RL_1, |
| | 3499 | way[is_prop_set(a4rl2, "Abbiegespur_4_RL_2")]::Abbiegespur_4_RL_2, |
| | 3500 | way[is_prop_set(a4rl3, "Abbiegespur_4_RL_3")]::Abbiegespur_4_RL_3, |
| | 3501 | way[is_prop_set(a4rl4, "Abbiegespur_4_RL_4")]::Abbiegespur_4_RL_4, |
| | 3502 | way[is_prop_set(a4rl5, "Abbiegespur_4_RL_5")]::Abbiegespur_4_RL_5, |
| | 3503 | way[is_prop_set(a4rl6, "Abbiegespur_4_RL_6")]::Abbiegespur_4_RL_6, |
| | 3504 | way[is_prop_set(a4rl7, "Abbiegespur_4_RL_7")]::Abbiegespur_4_RL_7 |
| | 3505 | { |
| | 3506 | fw_spur_1: eval((prop(fw_spur_1)) - ((prop(b-set, "default")) *3)); |
| | 3507 | } |
| | 3508 | |
| | 3509 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3510 | /* */ |
| | 3511 | /* Abweichender offset für die Fahrspur 4 rückwärts */ |
| | 3512 | /* */ |
| | 3513 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3514 | way[is_prop_set(a4bg1, "Abbiegespur_4B_G_1")]::Abbiegespur_4B_G_1, |
| | 3515 | way[is_prop_set(a4bg2, "Abbiegespur_4B_G_2")]::Abbiegespur_4B_G_2, |
| | 3516 | way[is_prop_set(a4bg3, "Abbiegespur_4B_G_3")]::Abbiegespur_4B_G_3, |
| | 3517 | way[is_prop_set(a4bg4, "Abbiegespur_4B_G_4")]::Abbiegespur_4B_G_4, |
| | 3518 | way[is_prop_set(a4bg5, "Abbiegespur_4B_G_5")]::Abbiegespur_4B_G_5, |
| | 3519 | way[is_prop_set(a4bg6, "Abbiegespur_4B_G_6")]::Abbiegespur_4B_G_6, |
| | 3520 | way[is_prop_set(a4bg7, "Abbiegespur_4B_G_7")]::Abbiegespur_4B_G_7, |
| | 3521 | way[is_prop_set(a4br1, "Abbiegespur_4B_R_1")]::Abbiegespur_4B_R_1, |
| | 3522 | way[is_prop_set(a4br2, "Abbiegespur_4B_R_2")]::Abbiegespur_4B_R_2, |
| | 3523 | way[is_prop_set(a4br3, "Abbiegespur_4B_R_3")]::Abbiegespur_4B_R_3, |
| | 3524 | way[is_prop_set(a4br4, "Abbiegespur_4B_R_4")]::Abbiegespur_4B_R_4, |
| | 3525 | way[is_prop_set(a4br5, "Abbiegespur_4B_R_5")]::Abbiegespur_4B_R_5, |
| | 3526 | way[is_prop_set(a4br6, "Abbiegespur_4B_R_6")]::Abbiegespur_4B_R_6, |
| | 3527 | way[is_prop_set(a4br7, "Abbiegespur_4B_R_7")]::Abbiegespur_4B_R_7, |
| | 3528 | way[is_prop_set(a4bl1, "Abbiegespur_4B_L_1")]::Abbiegespur_4B_L_1, |
| | 3529 | way[is_prop_set(a4bl2, "Abbiegespur_4B_L_2")]::Abbiegespur_4B_L_2, |
| | 3530 | way[is_prop_set(a4bl3, "Abbiegespur_4B_L_3")]::Abbiegespur_4B_L_3, |
| | 3531 | way[is_prop_set(a4bl4, "Abbiegespur_4B_L_4")]::Abbiegespur_4B_L_4, |
| | 3532 | way[is_prop_set(a4bl5, "Abbiegespur_4B_L_5")]::Abbiegespur_4B_L_5, |
| | 3533 | way[is_prop_set(a4bl6, "Abbiegespur_4B_L_6")]::Abbiegespur_4B_L_6, |
| | 3534 | way[is_prop_set(a4bl7, "Abbiegespur_4B_L_7")]::Abbiegespur_4B_L_7, |
| | 3535 | way[is_prop_set(a4blg1, "Abbiegespur_4B_LG_1")]::Abbiegespur_4B_LG_1, |
| | 3536 | way[is_prop_set(a4blg2, "Abbiegespur_4B_LG_2")]::Abbiegespur_4B_LG_2, |
| | 3537 | way[is_prop_set(a4blg3, "Abbiegespur_4B_LG_3")]::Abbiegespur_4B_LG_3, |
| | 3538 | way[is_prop_set(a4blg4, "Abbiegespur_4B_LG_4")]::Abbiegespur_4B_LG_4, |
| | 3539 | way[is_prop_set(a4blg5, "Abbiegespur_4B_LG_5")]::Abbiegespur_4B_LG_5, |
| | 3540 | way[is_prop_set(a4blg6, "Abbiegespur_4B_LG_6")]::Abbiegespur_4B_LG_6, |
| | 3541 | way[is_prop_set(a4blg7, "Abbiegespur_4B_LG_7")]::Abbiegespur_4B_LG_7, |
| | 3542 | way[is_prop_set(a4brg1, "Abbiegespur_4B_RG_1")]::Abbiegespur_4B_RG_1, |
| | 3543 | way[is_prop_set(a4brg2, "Abbiegespur_4B_RG_2")]::Abbiegespur_4B_RG_2, |
| | 3544 | way[is_prop_set(a4brg3, "Abbiegespur_4B_RG_3")]::Abbiegespur_4B_RG_3, |
| | 3545 | way[is_prop_set(a4brg4, "Abbiegespur_4B_RG_4")]::Abbiegespur_4B_RG_4, |
| | 3546 | way[is_prop_set(a4brg5, "Abbiegespur_4B_RG_5")]::Abbiegespur_4B_RG_5, |
| | 3547 | way[is_prop_set(a4brg6, "Abbiegespur_4B_RG_6")]::Abbiegespur_4B_RG_6, |
| | 3548 | way[is_prop_set(a4brg7, "Abbiegespur_4B_RG_7")]::Abbiegespur_4B_RG_7, |
| | 3549 | way[is_prop_set(a4brl1, "Abbiegespur_4B_RL_1")]::Abbiegespur_4B_RL_1, |
| | 3550 | way[is_prop_set(a4brl2, "Abbiegespur_4B_RL_2")]::Abbiegespur_4B_RL_2, |
| | 3551 | way[is_prop_set(a4brl3, "Abbiegespur_4B_RL_3")]::Abbiegespur_4B_RL_3, |
| | 3552 | way[is_prop_set(a4brl4, "Abbiegespur_4B_RL_4")]::Abbiegespur_4B_RL_4, |
| | 3553 | way[is_prop_set(a4brl5, "Abbiegespur_4B_RL_5")]::Abbiegespur_4B_RL_5, |
| | 3554 | way[is_prop_set(a4brl6, "Abbiegespur_4B_RL_6")]::Abbiegespur_4B_RL_6, |
| | 3555 | way[is_prop_set(a4brl7, "Abbiegespur_4B_RL_7")]::Abbiegespur_4B_RL_7 |
| | 3556 | { |
| | 3557 | fw_spur_1: eval(((prop(lanes_ges, "default")) * (prop(b2-set, "default"))) - ((prop(b-set, "default")) * (prop(lanes_bw, "default") -1)) - |
| | 3558 | ((prop(b-set, "default")) *(-3))); |
| | 3559 | } |
| | 3560 | |
| | 3561 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3562 | /* */ |
| | 3563 | /* Abweichender offset für die Fahrspur 5 */ |
| | 3564 | /* */ |
| | 3565 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3566 | way[is_prop_set(a5g1, "Abbiegespur_5_G_1")]::Abbiegespur_5_G_1, |
| | 3567 | way[is_prop_set(a5g2, "Abbiegespur_5_G_2")]::Abbiegespur_5_G_2, |
| | 3568 | way[is_prop_set(a5g3, "Abbiegespur_5_G_3")]::Abbiegespur_5_G_3, |
| | 3569 | way[is_prop_set(a5g4, "Abbiegespur_5_G_4")]::Abbiegespur_5_G_4, |
| | 3570 | way[is_prop_set(a5g5, "Abbiegespur_5_G_5")]::Abbiegespur_5_G_5, |
| | 3571 | way[is_prop_set(a5g6, "Abbiegespur_5_G_6")]::Abbiegespur_5_G_6, |
| | 3572 | way[is_prop_set(a5g7, "Abbiegespur_5_G_7")]::Abbiegespur_5_G_7, |
| | 3573 | way[is_prop_set(a5l1, "Abbiegespur_5_L_1")]::Abbiegespur_5_L_1, |
| | 3574 | way[is_prop_set(a5l2, "Abbiegespur_5_L_2")]::Abbiegespur_5_L_2, |
| | 3575 | way[is_prop_set(a5l3, "Abbiegespur_5_L_3")]::Abbiegespur_5_L_3, |
| | 3576 | way[is_prop_set(a5l4, "Abbiegespur_5_L_4")]::Abbiegespur_5_L_4, |
| | 3577 | way[is_prop_set(a5l5, "Abbiegespur_5_L_5")]::Abbiegespur_5_L_5, |
| | 3578 | way[is_prop_set(a5l6, "Abbiegespur_5_L_6")]::Abbiegespur_5_L_6, |
| | 3579 | way[is_prop_set(a5l7, "Abbiegespur_5_L_7")]::Abbiegespur_5_L_7, |
| | 3580 | way[is_prop_set(a5r1, "Abbiegespur_5_R_1")]::Abbiegespur_5_R_1, |
| | 3581 | way[is_prop_set(a5r2, "Abbiegespur_5_R_2")]::Abbiegespur_5_R_2, |
| | 3582 | way[is_prop_set(a5r3, "Abbiegespur_5_R_3")]::Abbiegespur_5_R_3, |
| | 3583 | way[is_prop_set(a5r4, "Abbiegespur_5_R_4")]::Abbiegespur_5_R_4, |
| | 3584 | way[is_prop_set(a5r5, "Abbiegespur_5_R_5")]::Abbiegespur_5_R_5, |
| | 3585 | way[is_prop_set(a5r6, "Abbiegespur_5_R_6")]::Abbiegespur_5_R_6, |
| | 3586 | way[is_prop_set(a5r7, "Abbiegespur_5_R_7")]::Abbiegespur_5_R_7, |
| | 3587 | way[is_prop_set(a5gr1, "Abbiegespur_5_GR_1")]::Abbiegespur_5_GR_1, |
| | 3588 | way[is_prop_set(a5gr2, "Abbiegespur_5_GR_2")]::Abbiegespur_5_GR_2, |
| | 3589 | way[is_prop_set(a5gr3, "Abbiegespur_5_GR_3")]::Abbiegespur_5_GR_3, |
| | 3590 | way[is_prop_set(a5gr4, "Abbiegespur_5_GR_4")]::Abbiegespur_5_GR_4, |
| | 3591 | way[is_prop_set(a5gr5, "Abbiegespur_5_GR_5")]::Abbiegespur_5_GR_5, |
| | 3592 | way[is_prop_set(a5gr6, "Abbiegespur_5_GR_6")]::Abbiegespur_5_GR_6, |
| | 3593 | way[is_prop_set(a5gr7, "Abbiegespur_5_GR_7")]::Abbiegespur_5_GR_7, |
| | 3594 | way[is_prop_set(a5gl1, "Abbiegespur_5_GL_1")]::Abbiegespur_5_GL_1, |
| | 3595 | way[is_prop_set(a5gl2, "Abbiegespur_5_GL_2")]::Abbiegespur_5_GL_2, |
| | 3596 | way[is_prop_set(a5gl3, "Abbiegespur_5_GL_3")]::Abbiegespur_5_GL_3, |
| | 3597 | way[is_prop_set(a5gl4, "Abbiegespur_5_GL_4")]::Abbiegespur_5_GL_4, |
| | 3598 | way[is_prop_set(a5gl5, "Abbiegespur_5_GL_5")]::Abbiegespur_5_GL_5, |
| | 3599 | way[is_prop_set(a5gl6, "Abbiegespur_5_GL_6")]::Abbiegespur_5_GL_6, |
| | 3600 | way[is_prop_set(a5gl7, "Abbiegespur_5_GL_7")]::Abbiegespur_5_GL_7, |
| | 3601 | way[is_prop_set(a5rl1, "Abbiegespur_5_RL_1")]::Abbiegespur_5_RL_1, |
| | 3602 | way[is_prop_set(a5rl2, "Abbiegespur_5_RL_2")]::Abbiegespur_5_RL_2, |
| | 3603 | way[is_prop_set(a5rl3, "Abbiegespur_5_RL_3")]::Abbiegespur_5_RL_3, |
| | 3604 | way[is_prop_set(a5rl4, "Abbiegespur_5_RL_4")]::Abbiegespur_5_RL_4, |
| | 3605 | way[is_prop_set(a5rl5, "Abbiegespur_5_RL_5")]::Abbiegespur_5_RL_5, |
| | 3606 | way[is_prop_set(a5rl6, "Abbiegespur_5_RL_6")]::Abbiegespur_5_RL_6, |
| | 3607 | way[is_prop_set(a5rl7, "Abbiegespur_5_RL_7")]::Abbiegespur_5_RL_7 |
| | 3608 | { |
| | 3609 | fw_spur_1: eval((prop(fw_spur_1)) - ((prop(b-set, "default")) *4)); |
| | 3610 | } |
| | 3611 | |
| | 3612 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3613 | /* */ |
| | 3614 | /* Abweichender offset für die Fahrspur 5 rückwärts */ |
| | 3615 | /* */ |
| | 3616 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3617 | way[is_prop_set(a5bg1, "Abbiegespur_5B_G_1")]::Abbiegespur_5B_G_1, |
| | 3618 | way[is_prop_set(a5bg2, "Abbiegespur_5B_G_2")]::Abbiegespur_5B_G_2, |
| | 3619 | way[is_prop_set(a5bg3, "Abbiegespur_5B_G_3")]::Abbiegespur_5B_G_3, |
| | 3620 | way[is_prop_set(a5bg4, "Abbiegespur_5B_G_4")]::Abbiegespur_5B_G_4, |
| | 3621 | way[is_prop_set(a5bg5, "Abbiegespur_5B_G_5")]::Abbiegespur_5B_G_5, |
| | 3622 | way[is_prop_set(a5bg6, "Abbiegespur_5B_G_6")]::Abbiegespur_5B_G_6, |
| | 3623 | way[is_prop_set(a5bg7, "Abbiegespur_5B_G_7")]::Abbiegespur_5B_G_7, |
| | 3624 | way[is_prop_set(a5br1, "Abbiegespur_5B_R_1")]::Abbiegespur_5B_R_1, |
| | 3625 | way[is_prop_set(a5br2, "Abbiegespur_5B_R_2")]::Abbiegespur_5B_R_2, |
| | 3626 | way[is_prop_set(a5br3, "Abbiegespur_5B_R_3")]::Abbiegespur_5B_R_3, |
| | 3627 | way[is_prop_set(a5br4, "Abbiegespur_5B_R_4")]::Abbiegespur_5B_R_4, |
| | 3628 | way[is_prop_set(a5br5, "Abbiegespur_5B_R_5")]::Abbiegespur_5B_R_5, |
| | 3629 | way[is_prop_set(a5br6, "Abbiegespur_5B_R_6")]::Abbiegespur_5B_R_6, |
| | 3630 | way[is_prop_set(a5br7, "Abbiegespur_5B_R_7")]::Abbiegespur_5B_R_7, |
| | 3631 | way[is_prop_set(a5bl1, "Abbiegespur_5B_L_1")]::Abbiegespur_5B_L_1, |
| | 3632 | way[is_prop_set(a5bl2, "Abbiegespur_5B_L_2")]::Abbiegespur_5B_L_2, |
| | 3633 | way[is_prop_set(a5bl3, "Abbiegespur_5B_L_3")]::Abbiegespur_5B_L_3, |
| | 3634 | way[is_prop_set(a5bl4, "Abbiegespur_5B_L_4")]::Abbiegespur_5B_L_4, |
| | 3635 | way[is_prop_set(a5bl5, "Abbiegespur_5B_L_5")]::Abbiegespur_5B_L_5, |
| | 3636 | way[is_prop_set(a5bl6, "Abbiegespur_5B_L_6")]::Abbiegespur_5B_L_6, |
| | 3637 | way[is_prop_set(a5bl7, "Abbiegespur_5B_L_7")]::Abbiegespur_5B_L_7, |
| | 3638 | way[is_prop_set(a5blg1, "Abbiegespur_5B_LG_1")]::Abbiegespur_5B_LG_1, |
| | 3639 | way[is_prop_set(a5blg2, "Abbiegespur_5B_LG_2")]::Abbiegespur_5B_LG_2, |
| | 3640 | way[is_prop_set(a5blg3, "Abbiegespur_5B_LG_3")]::Abbiegespur_5B_LG_3, |
| | 3641 | way[is_prop_set(a5blg4, "Abbiegespur_5B_LG_4")]::Abbiegespur_5B_LG_4, |
| | 3642 | way[is_prop_set(a5blg5, "Abbiegespur_5B_LG_5")]::Abbiegespur_5B_LG_5, |
| | 3643 | way[is_prop_set(a5blg6, "Abbiegespur_5B_LG_6")]::Abbiegespur_5B_LG_6, |
| | 3644 | way[is_prop_set(a5blg7, "Abbiegespur_5B_LG_7")]::Abbiegespur_5B_LG_7, |
| | 3645 | way[is_prop_set(a5brg1, "Abbiegespur_5B_RG_1")]::Abbiegespur_5B_RG_1, |
| | 3646 | way[is_prop_set(a5brg2, "Abbiegespur_5B_RG_2")]::Abbiegespur_5B_RG_2, |
| | 3647 | way[is_prop_set(a5brg3, "Abbiegespur_5B_RG_3")]::Abbiegespur_5B_RG_3, |
| | 3648 | way[is_prop_set(a5brg4, "Abbiegespur_5B_RG_4")]::Abbiegespur_5B_RG_4, |
| | 3649 | way[is_prop_set(a5brg5, "Abbiegespur_5B_RG_5")]::Abbiegespur_5B_RG_5, |
| | 3650 | way[is_prop_set(a5brg6, "Abbiegespur_5B_RG_6")]::Abbiegespur_5B_RG_6, |
| | 3651 | way[is_prop_set(a5brg7, "Abbiegespur_5B_RG_7")]::Abbiegespur_5B_RG_7, |
| | 3652 | way[is_prop_set(a5brl1, "Abbiegespur_5B_RL_1")]::Abbiegespur_5B_RL_1, |
| | 3653 | way[is_prop_set(a5brl2, "Abbiegespur_5B_RL_2")]::Abbiegespur_5B_RL_2, |
| | 3654 | way[is_prop_set(a5brl3, "Abbiegespur_5B_RL_3")]::Abbiegespur_5B_RL_3, |
| | 3655 | way[is_prop_set(a5brl4, "Abbiegespur_5B_RL_4")]::Abbiegespur_5B_RL_4, |
| | 3656 | way[is_prop_set(a5brl5, "Abbiegespur_5B_RL_5")]::Abbiegespur_5B_RL_5, |
| | 3657 | way[is_prop_set(a5brl6, "Abbiegespur_5B_RL_6")]::Abbiegespur_5B_RL_6, |
| | 3658 | way[is_prop_set(a5brl7, "Abbiegespur_5B_RL_7")]::Abbiegespur_5B_RL_7 |
| | 3659 | { |
| | 3660 | fw_spur_1: eval(((prop(lanes_ges, "default")) * (prop(b2-set, "default"))) - ((prop(b-set, "default")) * (prop(lanes_bw, "default") -1)) - |
| | 3661 | ((prop(b-set, "default")) *(-4))); |
| | 3662 | } |
| | 3663 | |
| | 3664 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3665 | /* */ |
| | 3666 | /* Abweichender offset für die Fahrspur 6 */ |
| | 3667 | /* */ |
| | 3668 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3669 | way[is_prop_set(a6g1, "Abbiegespur_6_G_1")]::Abbiegespur_6_G_1, |
| | 3670 | way[is_prop_set(a6g2, "Abbiegespur_6_G_2")]::Abbiegespur_6_G_2, |
| | 3671 | way[is_prop_set(a6g3, "Abbiegespur_6_G_3")]::Abbiegespur_6_G_3, |
| | 3672 | way[is_prop_set(a6g4, "Abbiegespur_6_G_4")]::Abbiegespur_6_G_4, |
| | 3673 | way[is_prop_set(a6g5, "Abbiegespur_6_G_5")]::Abbiegespur_6_G_5, |
| | 3674 | way[is_prop_set(a6g6, "Abbiegespur_6_G_6")]::Abbiegespur_6_G_6, |
| | 3675 | way[is_prop_set(a6g7, "Abbiegespur_6_G_7")]::Abbiegespur_6_G_7, |
| | 3676 | way[is_prop_set(a6l1, "Abbiegespur_6_L_1")]::Abbiegespur_6_L_1, |
| | 3677 | way[is_prop_set(a6l2, "Abbiegespur_6_L_2")]::Abbiegespur_6_L_2, |
| | 3678 | way[is_prop_set(a6l3, "Abbiegespur_6_L_3")]::Abbiegespur_6_L_3, |
| | 3679 | way[is_prop_set(a6l4, "Abbiegespur_6_L_4")]::Abbiegespur_6_L_4, |
| | 3680 | way[is_prop_set(a6l5, "Abbiegespur_6_L_5")]::Abbiegespur_6_L_5, |
| | 3681 | way[is_prop_set(a6l6, "Abbiegespur_6_L_6")]::Abbiegespur_6_L_6, |
| | 3682 | way[is_prop_set(a6l7, "Abbiegespur_6_L_7")]::Abbiegespur_6_L_7, |
| | 3683 | way[is_prop_set(a6r1, "Abbiegespur_6_R_1")]::Abbiegespur_6_R_1, |
| | 3684 | way[is_prop_set(a6r2, "Abbiegespur_6_R_2")]::Abbiegespur_6_R_2, |
| | 3685 | way[is_prop_set(a6r3, "Abbiegespur_6_R_3")]::Abbiegespur_6_R_3, |
| | 3686 | way[is_prop_set(a6r4, "Abbiegespur_6_R_4")]::Abbiegespur_6_R_4, |
| | 3687 | way[is_prop_set(a6r5, "Abbiegespur_6_R_5")]::Abbiegespur_6_R_5, |
| | 3688 | way[is_prop_set(a6r6, "Abbiegespur_6_R_6")]::Abbiegespur_6_R_6, |
| | 3689 | way[is_prop_set(a6r7, "Abbiegespur_6_R_7")]::Abbiegespur_6_R_7, |
| | 3690 | way[is_prop_set(a6gr1, "Abbiegespur_6_GR_1")]::Abbiegespur_6_GR_1, |
| | 3691 | way[is_prop_set(a6gr2, "Abbiegespur_6_GR_2")]::Abbiegespur_6_GR_2, |
| | 3692 | way[is_prop_set(a6gr3, "Abbiegespur_6_GR_3")]::Abbiegespur_6_GR_3, |
| | 3693 | way[is_prop_set(a6gr4, "Abbiegespur_6_GR_4")]::Abbiegespur_6_GR_4, |
| | 3694 | way[is_prop_set(a6gr5, "Abbiegespur_6_GR_5")]::Abbiegespur_6_GR_5, |
| | 3695 | way[is_prop_set(a6gr6, "Abbiegespur_6_GR_6")]::Abbiegespur_6_GR_6, |
| | 3696 | way[is_prop_set(a6gr7, "Abbiegespur_6_GR_7")]::Abbiegespur_6_GR_7, |
| | 3697 | way[is_prop_set(a6gl1, "Abbiegespur_6_GL_1")]::Abbiegespur_6_GL_1, |
| | 3698 | way[is_prop_set(a6gl2, "Abbiegespur_6_GL_2")]::Abbiegespur_6_GL_2, |
| | 3699 | way[is_prop_set(a6gl3, "Abbiegespur_6_GL_3")]::Abbiegespur_6_GL_3, |
| | 3700 | way[is_prop_set(a6gl4, "Abbiegespur_6_GL_4")]::Abbiegespur_6_GL_4, |
| | 3701 | way[is_prop_set(a6gl5, "Abbiegespur_6_GL_5")]::Abbiegespur_6_GL_5, |
| | 3702 | way[is_prop_set(a6gl6, "Abbiegespur_6_GL_6")]::Abbiegespur_6_GL_6, |
| | 3703 | way[is_prop_set(a6gl7, "Abbiegespur_6_GL_7")]::Abbiegespur_6_GL_7, |
| | 3704 | way[is_prop_set(a6rl1, "Abbiegespur_6_RL_1")]::Abbiegespur_6_RL_1, |
| | 3705 | way[is_prop_set(a6rl2, "Abbiegespur_6_RL_2")]::Abbiegespur_6_RL_2, |
| | 3706 | way[is_prop_set(a6rl3, "Abbiegespur_6_RL_3")]::Abbiegespur_6_RL_3, |
| | 3707 | way[is_prop_set(a6rl4, "Abbiegespur_6_RL_4")]::Abbiegespur_6_RL_4, |
| | 3708 | way[is_prop_set(a6rl5, "Abbiegespur_6_RL_5")]::Abbiegespur_6_RL_5, |
| | 3709 | way[is_prop_set(a6rl6, "Abbiegespur_6_RL_6")]::Abbiegespur_6_RL_6, |
| | 3710 | way[is_prop_set(a6rl7, "Abbiegespur_6_RL_7")]::Abbiegespur_6_RL_7 |
| | 3711 | { |
| | 3712 | fw_spur_1: eval((prop(fw_spur_1)) - ((prop(b-set, "default")) *5)); |
| | 3713 | } |
| | 3714 | |
| | 3715 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3716 | /* */ |
| | 3717 | /* Abweichender offset für die Fahrspur 6 rückwärts */ |
| | 3718 | /* */ |
| | 3719 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3720 | way[is_prop_set(a6bg1, "Abbiegespur_6B_G_1")]::Abbiegespur_6B_G_1, |
| | 3721 | way[is_prop_set(a6bg2, "Abbiegespur_6B_G_2")]::Abbiegespur_6B_G_2, |
| | 3722 | way[is_prop_set(a6bg3, "Abbiegespur_6B_G_3")]::Abbiegespur_6B_G_3, |
| | 3723 | way[is_prop_set(a6bg4, "Abbiegespur_6B_G_4")]::Abbiegespur_6B_G_4, |
| | 3724 | way[is_prop_set(a6bg5, "Abbiegespur_6B_G_5")]::Abbiegespur_6B_G_5, |
| | 3725 | way[is_prop_set(a6bg6, "Abbiegespur_6B_G_6")]::Abbiegespur_6B_G_6, |
| | 3726 | way[is_prop_set(a6bg7, "Abbiegespur_6B_G_7")]::Abbiegespur_6B_G_7, |
| | 3727 | way[is_prop_set(a6br1, "Abbiegespur_6B_R_1")]::Abbiegespur_6B_R_1, |
| | 3728 | way[is_prop_set(a6br2, "Abbiegespur_6B_R_2")]::Abbiegespur_6B_R_2, |
| | 3729 | way[is_prop_set(a6br3, "Abbiegespur_6B_R_3")]::Abbiegespur_6B_R_3, |
| | 3730 | way[is_prop_set(a6br4, "Abbiegespur_6B_R_4")]::Abbiegespur_6B_R_4, |
| | 3731 | way[is_prop_set(a6br5, "Abbiegespur_6B_R_5")]::Abbiegespur_6B_R_5, |
| | 3732 | way[is_prop_set(a6br6, "Abbiegespur_6B_R_6")]::Abbiegespur_6B_R_6, |
| | 3733 | way[is_prop_set(a6br7, "Abbiegespur_6B_R_7")]::Abbiegespur_6B_R_7, |
| | 3734 | way[is_prop_set(a6bl1, "Abbiegespur_6B_L_1")]::Abbiegespur_6B_L_1, |
| | 3735 | way[is_prop_set(a6bl2, "Abbiegespur_6B_L_2")]::Abbiegespur_6B_L_2, |
| | 3736 | way[is_prop_set(a6bl3, "Abbiegespur_6B_L_3")]::Abbiegespur_6B_L_3, |
| | 3737 | way[is_prop_set(a6bl4, "Abbiegespur_6B_L_4")]::Abbiegespur_6B_L_4, |
| | 3738 | way[is_prop_set(a6bl5, "Abbiegespur_6B_L_5")]::Abbiegespur_6B_L_5, |
| | 3739 | way[is_prop_set(a6bl6, "Abbiegespur_6B_L_6")]::Abbiegespur_6B_L_6, |
| | 3740 | way[is_prop_set(a6bl7, "Abbiegespur_6B_L_7")]::Abbiegespur_6B_L_7, |
| | 3741 | way[is_prop_set(a6blg1, "Abbiegespur_6B_LG_1")]::Abbiegespur_6B_LG_1, |
| | 3742 | way[is_prop_set(a6blg2, "Abbiegespur_6B_LG_2")]::Abbiegespur_6B_LG_2, |
| | 3743 | way[is_prop_set(a6blg3, "Abbiegespur_6B_LG_3")]::Abbiegespur_6B_LG_3, |
| | 3744 | way[is_prop_set(a6blg4, "Abbiegespur_6B_LG_4")]::Abbiegespur_6B_LG_4, |
| | 3745 | way[is_prop_set(a6blg5, "Abbiegespur_6B_LG_5")]::Abbiegespur_6B_LG_5, |
| | 3746 | way[is_prop_set(a6blg6, "Abbiegespur_6B_LG_6")]::Abbiegespur_6B_LG_6, |
| | 3747 | way[is_prop_set(a6blg7, "Abbiegespur_6B_LG_7")]::Abbiegespur_6B_LG_7, |
| | 3748 | way[is_prop_set(a6brg1, "Abbiegespur_6B_RG_1")]::Abbiegespur_6B_RG_1, |
| | 3749 | way[is_prop_set(a6brg2, "Abbiegespur_6B_RG_2")]::Abbiegespur_6B_RG_2, |
| | 3750 | way[is_prop_set(a6brg3, "Abbiegespur_6B_RG_3")]::Abbiegespur_6B_RG_3, |
| | 3751 | way[is_prop_set(a6brg4, "Abbiegespur_6B_RG_4")]::Abbiegespur_6B_RG_4, |
| | 3752 | way[is_prop_set(a6brg5, "Abbiegespur_6B_RG_5")]::Abbiegespur_6B_RG_5, |
| | 3753 | way[is_prop_set(a6brg6, "Abbiegespur_6B_RG_6")]::Abbiegespur_6B_RG_6, |
| | 3754 | way[is_prop_set(a6brg7, "Abbiegespur_6B_RG_7")]::Abbiegespur_6B_RG_7, |
| | 3755 | way[is_prop_set(a6brl1, "Abbiegespur_6B_RL_1")]::Abbiegespur_6B_RL_1, |
| | 3756 | way[is_prop_set(a6brl2, "Abbiegespur_6B_RL_2")]::Abbiegespur_6B_RL_2, |
| | 3757 | way[is_prop_set(a6brl3, "Abbiegespur_6B_RL_3")]::Abbiegespur_6B_RL_3, |
| | 3758 | way[is_prop_set(a6brl4, "Abbiegespur_6B_RL_4")]::Abbiegespur_6B_RL_4, |
| | 3759 | way[is_prop_set(a6brl5, "Abbiegespur_6B_RL_5")]::Abbiegespur_6B_RL_5, |
| | 3760 | way[is_prop_set(a6brl6, "Abbiegespur_6B_RL_6")]::Abbiegespur_6B_RL_6, |
| | 3761 | way[is_prop_set(a6brl7, "Abbiegespur_6B_RL_7")]::Abbiegespur_6B_RL_7 |
| | 3762 | { |
| | 3763 | fw_spur_1: eval(((prop(lanes_ges, "default")) * (prop(b2-set, "default"))) - ((prop(b-set, "default")) * (prop(lanes_bw, "default") -1)) - |
| | 3764 | ((prop(b-set, "default")) *(-5))); |
| | 3765 | } |
| | 3766 | |
| | 3767 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3768 | /* */ |
| | 3769 | /* Abweichender offset für die Fahrspur 7 */ |
| | 3770 | /* */ |
| | 3771 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3772 | way[is_prop_set(a7g1, "Abbiegespur_7_G_1")]::Abbiegespur_7_G_1, |
| | 3773 | way[is_prop_set(a7g2, "Abbiegespur_7_G_2")]::Abbiegespur_7_G_2, |
| | 3774 | way[is_prop_set(a7g3, "Abbiegespur_7_G_3")]::Abbiegespur_7_G_3, |
| | 3775 | way[is_prop_set(a7g4, "Abbiegespur_7_G_4")]::Abbiegespur_7_G_4, |
| | 3776 | way[is_prop_set(a7g5, "Abbiegespur_7_G_5")]::Abbiegespur_7_G_5, |
| | 3777 | way[is_prop_set(a7g6, "Abbiegespur_7_G_6")]::Abbiegespur_7_G_6, |
| | 3778 | way[is_prop_set(a7g7, "Abbiegespur_7_G_7")]::Abbiegespur_7_G_7, |
| | 3779 | way[is_prop_set(a7l1, "Abbiegespur_7_L_1")]::Abbiegespur_7_L_1, |
| | 3780 | way[is_prop_set(a7l2, "Abbiegespur_7_L_2")]::Abbiegespur_7_L_2, |
| | 3781 | way[is_prop_set(a7l3, "Abbiegespur_7_L_3")]::Abbiegespur_7_L_3, |
| | 3782 | way[is_prop_set(a7l4, "Abbiegespur_7_L_4")]::Abbiegespur_7_L_4, |
| | 3783 | way[is_prop_set(a7l5, "Abbiegespur_7_L_5")]::Abbiegespur_7_L_5, |
| | 3784 | way[is_prop_set(a7l6, "Abbiegespur_7_L_6")]::Abbiegespur_7_L_6, |
| | 3785 | way[is_prop_set(a7l7, "Abbiegespur_7_L_7")]::Abbiegespur_7_L_7, |
| | 3786 | way[is_prop_set(a7r1, "Abbiegespur_7_R_1")]::Abbiegespur_7_R_1, |
| | 3787 | way[is_prop_set(a7r2, "Abbiegespur_7_R_2")]::Abbiegespur_7_R_2, |
| | 3788 | way[is_prop_set(a7r3, "Abbiegespur_7_R_3")]::Abbiegespur_7_R_3, |
| | 3789 | way[is_prop_set(a7r4, "Abbiegespur_7_R_4")]::Abbiegespur_7_R_4, |
| | 3790 | way[is_prop_set(a7r5, "Abbiegespur_7_R_5")]::Abbiegespur_7_R_5, |
| | 3791 | way[is_prop_set(a7r6, "Abbiegespur_7_R_6")]::Abbiegespur_7_R_6, |
| | 3792 | way[is_prop_set(a7r7, "Abbiegespur_7_R_7")]::Abbiegespur_7_R_7, |
| | 3793 | way[is_prop_set(a7gr1, "Abbiegespur_7_GR_1")]::Abbiegespur_7_GR_1, |
| | 3794 | way[is_prop_set(a7gr2, "Abbiegespur_7_GR_2")]::Abbiegespur_7_GR_2, |
| | 3795 | way[is_prop_set(a7gr3, "Abbiegespur_7_GR_3")]::Abbiegespur_7_GR_3, |
| | 3796 | way[is_prop_set(a7gr4, "Abbiegespur_7_GR_4")]::Abbiegespur_7_GR_4, |
| | 3797 | way[is_prop_set(a7gr5, "Abbiegespur_7_GR_5")]::Abbiegespur_7_GR_5, |
| | 3798 | way[is_prop_set(a7gr6, "Abbiegespur_7_GR_6")]::Abbiegespur_7_GR_6, |
| | 3799 | way[is_prop_set(a7gr7, "Abbiegespur_7_GR_7")]::Abbiegespur_7_GR_7, |
| | 3800 | way[is_prop_set(a7gl1, "Abbiegespur_7_GL_1")]::Abbiegespur_7_GL_1, |
| | 3801 | way[is_prop_set(a7gl2, "Abbiegespur_7_GL_2")]::Abbiegespur_7_GL_2, |
| | 3802 | way[is_prop_set(a7gl3, "Abbiegespur_7_GL_3")]::Abbiegespur_7_GL_3, |
| | 3803 | way[is_prop_set(a7gl4, "Abbiegespur_7_GL_4")]::Abbiegespur_7_GL_4, |
| | 3804 | way[is_prop_set(a7gl5, "Abbiegespur_7_GL_5")]::Abbiegespur_7_GL_5, |
| | 3805 | way[is_prop_set(a7gl6, "Abbiegespur_7_GL_6")]::Abbiegespur_7_GL_6, |
| | 3806 | way[is_prop_set(a7gl7, "Abbiegespur_7_GL_7")]::Abbiegespur_7_GL_7, |
| | 3807 | way[is_prop_set(a7rl1, "Abbiegespur_7_RL_1")]::Abbiegespur_7_RL_1, |
| | 3808 | way[is_prop_set(a7rl2, "Abbiegespur_7_RL_2")]::Abbiegespur_7_RL_2, |
| | 3809 | way[is_prop_set(a7rl3, "Abbiegespur_7_RL_3")]::Abbiegespur_7_RL_3, |
| | 3810 | way[is_prop_set(a7rl4, "Abbiegespur_7_RL_4")]::Abbiegespur_7_RL_4, |
| | 3811 | way[is_prop_set(a7rl5, "Abbiegespur_7_RL_5")]::Abbiegespur_7_RL_5, |
| | 3812 | way[is_prop_set(a7rl6, "Abbiegespur_7_RL_6")]::Abbiegespur_7_RL_6, |
| | 3813 | way[is_prop_set(a7rl7, "Abbiegespur_7_RL_7")]::Abbiegespur_7_RL_7 |
| | 3814 | { |
| | 3815 | fw_spur_1: eval((prop(fw_spur_1)) - ((prop(b-set, "default")) *6)); |
| | 3816 | } |
| | 3817 | |
| | 3818 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3819 | /* */ |
| | 3820 | /* Abweichender offset für die Fahrspur 7 rückwärts */ |
| | 3821 | /* */ |
| | 3822 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3823 | way[is_prop_set(a7bg1, "Abbiegespur_7B_G_1")]::Abbiegespur_7B_G_1, |
| | 3824 | way[is_prop_set(a7bg2, "Abbiegespur_7B_G_2")]::Abbiegespur_7B_G_2, |
| | 3825 | way[is_prop_set(a7bg3, "Abbiegespur_7B_G_3")]::Abbiegespur_7B_G_3, |
| | 3826 | way[is_prop_set(a7bg4, "Abbiegespur_7B_G_4")]::Abbiegespur_7B_G_4, |
| | 3827 | way[is_prop_set(a7bg5, "Abbiegespur_7B_G_5")]::Abbiegespur_7B_G_5, |
| | 3828 | way[is_prop_set(a7bg6, "Abbiegespur_7B_G_6")]::Abbiegespur_7B_G_6, |
| | 3829 | way[is_prop_set(a7bg7, "Abbiegespur_7B_G_7")]::Abbiegespur_7B_G_7, |
| | 3830 | way[is_prop_set(a7br1, "Abbiegespur_7B_R_1")]::Abbiegespur_7B_R_1, |
| | 3831 | way[is_prop_set(a7br2, "Abbiegespur_7B_R_2")]::Abbiegespur_7B_R_2, |
| | 3832 | way[is_prop_set(a7br3, "Abbiegespur_7B_R_3")]::Abbiegespur_7B_R_3, |
| | 3833 | way[is_prop_set(a7br4, "Abbiegespur_7B_R_4")]::Abbiegespur_7B_R_4, |
| | 3834 | way[is_prop_set(a7br5, "Abbiegespur_7B_R_5")]::Abbiegespur_7B_R_5, |
| | 3835 | way[is_prop_set(a7br6, "Abbiegespur_7B_R_6")]::Abbiegespur_7B_R_6, |
| | 3836 | way[is_prop_set(a7br7, "Abbiegespur_7B_R_7")]::Abbiegespur_7B_R_7, |
| | 3837 | way[is_prop_set(a7bl1, "Abbiegespur_7B_L_1")]::Abbiegespur_7B_L_1, |
| | 3838 | way[is_prop_set(a7bl2, "Abbiegespur_7B_L_2")]::Abbiegespur_7B_L_2, |
| | 3839 | way[is_prop_set(a7bl3, "Abbiegespur_7B_L_3")]::Abbiegespur_7B_L_3, |
| | 3840 | way[is_prop_set(a7bl4, "Abbiegespur_7B_L_4")]::Abbiegespur_7B_L_4, |
| | 3841 | way[is_prop_set(a7bl5, "Abbiegespur_7B_L_5")]::Abbiegespur_7B_L_5, |
| | 3842 | way[is_prop_set(a7bl6, "Abbiegespur_7B_L_6")]::Abbiegespur_7B_L_6, |
| | 3843 | way[is_prop_set(a7bl7, "Abbiegespur_7B_L_7")]::Abbiegespur_7B_L_7, |
| | 3844 | way[is_prop_set(a7blg1, "Abbiegespur_7B_LG_1")]::Abbiegespur_7B_LG_1, |
| | 3845 | way[is_prop_set(a7blg2, "Abbiegespur_7B_LG_2")]::Abbiegespur_7B_LG_2, |
| | 3846 | way[is_prop_set(a7blg3, "Abbiegespur_7B_LG_3")]::Abbiegespur_7B_LG_3, |
| | 3847 | way[is_prop_set(a7blg4, "Abbiegespur_7B_LG_4")]::Abbiegespur_7B_LG_4, |
| | 3848 | way[is_prop_set(a7blg5, "Abbiegespur_7B_LG_5")]::Abbiegespur_7B_LG_5, |
| | 3849 | way[is_prop_set(a7blg6, "Abbiegespur_7B_LG_6")]::Abbiegespur_7B_LG_6, |
| | 3850 | way[is_prop_set(a7blg7, "Abbiegespur_7B_LG_7")]::Abbiegespur_7B_LG_7, |
| | 3851 | way[is_prop_set(a7brg1, "Abbiegespur_7B_RG_1")]::Abbiegespur_7B_RG_1, |
| | 3852 | way[is_prop_set(a7brg2, "Abbiegespur_7B_RG_2")]::Abbiegespur_7B_RG_2, |
| | 3853 | way[is_prop_set(a7brg3, "Abbiegespur_7B_RG_3")]::Abbiegespur_7B_RG_3, |
| | 3854 | way[is_prop_set(a7brg4, "Abbiegespur_7B_RG_4")]::Abbiegespur_7B_RG_4, |
| | 3855 | way[is_prop_set(a7brg5, "Abbiegespur_7B_RG_5")]::Abbiegespur_7B_RG_5, |
| | 3856 | way[is_prop_set(a7brg6, "Abbiegespur_7B_RG_6")]::Abbiegespur_7B_RG_6, |
| | 3857 | way[is_prop_set(a7brg7, "Abbiegespur_7B_RG_7")]::Abbiegespur_7B_RG_7, |
| | 3858 | way[is_prop_set(a7brl1, "Abbiegespur_7B_RL_1")]::Abbiegespur_7B_RL_1, |
| | 3859 | way[is_prop_set(a7brl2, "Abbiegespur_7B_RL_2")]::Abbiegespur_7B_RL_2, |
| | 3860 | way[is_prop_set(a7brl3, "Abbiegespur_7B_RL_3")]::Abbiegespur_7B_RL_3, |
| | 3861 | way[is_prop_set(a7brl4, "Abbiegespur_7B_RL_4")]::Abbiegespur_7B_RL_4, |
| | 3862 | way[is_prop_set(a7brl5, "Abbiegespur_7B_RL_5")]::Abbiegespur_7B_RL_5, |
| | 3863 | way[is_prop_set(a7brl6, "Abbiegespur_7B_RL_6")]::Abbiegespur_7B_RL_6, |
| | 3864 | way[is_prop_set(a7brl7, "Abbiegespur_7B_RL_7")]::Abbiegespur_7B_RL_7 |
| | 3865 | { |
| | 3866 | fw_spur_1: eval(((prop(lanes_ges, "default")) * (prop(b2-set, "default"))) - ((prop(b-set, "default")) * (prop(lanes_bw, "default") -1)) - |
| | 3867 | ((prop(b-set, "default")) *(-6))); |
| | 3868 | } |
| | 3869 | |
| | 3870 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3871 | /* */ |
| | 3872 | /* Abweichender offset für die Fahrspur 8 */ |
| | 3873 | /* */ |
| | 3874 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3875 | way[is_prop_set(a8g1, "Abbiegespur_8_G_1")]::Abbiegespur_8_G_1, |
| | 3876 | way[is_prop_set(a8g2, "Abbiegespur_8_G_2")]::Abbiegespur_8_G_2, |
| | 3877 | way[is_prop_set(a8g3, "Abbiegespur_8_G_3")]::Abbiegespur_8_G_3, |
| | 3878 | way[is_prop_set(a8g4, "Abbiegespur_8_G_4")]::Abbiegespur_8_G_4, |
| | 3879 | way[is_prop_set(a8g5, "Abbiegespur_8_G_5")]::Abbiegespur_8_G_5, |
| | 3880 | way[is_prop_set(a8g6, "Abbiegespur_8_G_6")]::Abbiegespur_8_G_6, |
| | 3881 | way[is_prop_set(a8g7, "Abbiegespur_8_G_7")]::Abbiegespur_8_G_7, |
| | 3882 | way[is_prop_set(a8l1, "Abbiegespur_8_L_1")]::Abbiegespur_8_L_1, |
| | 3883 | way[is_prop_set(a8l2, "Abbiegespur_8_L_2")]::Abbiegespur_8_L_2, |
| | 3884 | way[is_prop_set(a8l3, "Abbiegespur_8_L_3")]::Abbiegespur_8_L_3, |
| | 3885 | way[is_prop_set(a8l4, "Abbiegespur_8_L_4")]::Abbiegespur_8_L_4, |
| | 3886 | way[is_prop_set(a8l5, "Abbiegespur_8_L_5")]::Abbiegespur_8_L_5, |
| | 3887 | way[is_prop_set(a8l6, "Abbiegespur_8_L_6")]::Abbiegespur_8_L_6, |
| | 3888 | way[is_prop_set(a8l7, "Abbiegespur_8_L_7")]::Abbiegespur_8_L_7, |
| | 3889 | way[is_prop_set(a8r1, "Abbiegespur_8_R_1")]::Abbiegespur_8_R_1, |
| | 3890 | way[is_prop_set(a8r2, "Abbiegespur_8_R_2")]::Abbiegespur_8_R_2, |
| | 3891 | way[is_prop_set(a8r3, "Abbiegespur_8_R_3")]::Abbiegespur_8_R_3, |
| | 3892 | way[is_prop_set(a8r4, "Abbiegespur_8_R_4")]::Abbiegespur_8_R_4, |
| | 3893 | way[is_prop_set(a8r5, "Abbiegespur_8_R_5")]::Abbiegespur_8_R_5, |
| | 3894 | way[is_prop_set(a8r6, "Abbiegespur_8_R_6")]::Abbiegespur_8_R_6, |
| | 3895 | way[is_prop_set(a8r7, "Abbiegespur_8_R_7")]::Abbiegespur_8_R_7, |
| | 3896 | way[is_prop_set(a8gr1, "Abbiegespur_8_GR_1")]::Abbiegespur_8_GR_1, |
| | 3897 | way[is_prop_set(a8gr2, "Abbiegespur_8_GR_2")]::Abbiegespur_8_GR_2, |
| | 3898 | way[is_prop_set(a8gr3, "Abbiegespur_8_GR_3")]::Abbiegespur_8_GR_3, |
| | 3899 | way[is_prop_set(a8gr4, "Abbiegespur_8_GR_4")]::Abbiegespur_8_GR_4, |
| | 3900 | way[is_prop_set(a8gr5, "Abbiegespur_8_GR_5")]::Abbiegespur_8_GR_5, |
| | 3901 | way[is_prop_set(a8gr6, "Abbiegespur_8_GR_6")]::Abbiegespur_8_GR_6, |
| | 3902 | way[is_prop_set(a8gr7, "Abbiegespur_8_GR_7")]::Abbiegespur_8_GR_7, |
| | 3903 | way[is_prop_set(a8gl1, "Abbiegespur_8_GL_1")]::Abbiegespur_8_GL_1, |
| | 3904 | way[is_prop_set(a8gl2, "Abbiegespur_8_GL_2")]::Abbiegespur_8_GL_2, |
| | 3905 | way[is_prop_set(a8gl3, "Abbiegespur_8_GL_3")]::Abbiegespur_8_GL_3, |
| | 3906 | way[is_prop_set(a8gl4, "Abbiegespur_8_GL_4")]::Abbiegespur_8_GL_4, |
| | 3907 | way[is_prop_set(a8gl5, "Abbiegespur_8_GL_5")]::Abbiegespur_8_GL_5, |
| | 3908 | way[is_prop_set(a8gl6, "Abbiegespur_8_GL_6")]::Abbiegespur_8_GL_6, |
| | 3909 | way[is_prop_set(a8gl7, "Abbiegespur_8_GL_7")]::Abbiegespur_8_GL_7, |
| | 3910 | way[is_prop_set(a8rl1, "Abbiegespur_8_RL_1")]::Abbiegespur_8_RL_1, |
| | 3911 | way[is_prop_set(a8rl2, "Abbiegespur_8_RL_2")]::Abbiegespur_8_RL_2, |
| | 3912 | way[is_prop_set(a8rl3, "Abbiegespur_8_RL_3")]::Abbiegespur_8_RL_3, |
| | 3913 | way[is_prop_set(a8rl4, "Abbiegespur_8_RL_4")]::Abbiegespur_8_RL_4, |
| | 3914 | way[is_prop_set(a8rl5, "Abbiegespur_8_RL_5")]::Abbiegespur_8_RL_5, |
| | 3915 | way[is_prop_set(a8rl6, "Abbiegespur_8_RL_6")]::Abbiegespur_8_RL_6, |
| | 3916 | way[is_prop_set(a8rl7, "Abbiegespur_8_RL_7")]::Abbiegespur_8_RL_7 |
| | 3917 | { |
| | 3918 | fw_spur_1: eval((prop(fw_spur_1)) - ((prop(b-set, "default")) *7)); |
| | 3919 | } |
| | 3920 | |
| | 3921 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3922 | /* */ |
| | 3923 | /* Abweichender offset für die Fahrspur 8 rückwärts */ |
| | 3924 | /* */ |
| | 3925 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3926 | way[is_prop_set(a8bg1, "Abbiegespur_8B_G_1")]::Abbiegespur_8B_G_1, |
| | 3927 | way[is_prop_set(a8bg2, "Abbiegespur_8B_G_2")]::Abbiegespur_8B_G_2, |
| | 3928 | way[is_prop_set(a8bg3, "Abbiegespur_8B_G_3")]::Abbiegespur_8B_G_3, |
| | 3929 | way[is_prop_set(a8bg4, "Abbiegespur_8B_G_4")]::Abbiegespur_8B_G_4, |
| | 3930 | way[is_prop_set(a8bg5, "Abbiegespur_8B_G_5")]::Abbiegespur_8B_G_5, |
| | 3931 | way[is_prop_set(a8bg6, "Abbiegespur_8B_G_6")]::Abbiegespur_8B_G_6, |
| | 3932 | way[is_prop_set(a8bg7, "Abbiegespur_8B_G_7")]::Abbiegespur_8B_G_7, |
| | 3933 | way[is_prop_set(a8br1, "Abbiegespur_8B_R_1")]::Abbiegespur_8B_R_1, |
| | 3934 | way[is_prop_set(a8br2, "Abbiegespur_8B_R_2")]::Abbiegespur_8B_R_2, |
| | 3935 | way[is_prop_set(a8br3, "Abbiegespur_8B_R_3")]::Abbiegespur_8B_R_3, |
| | 3936 | way[is_prop_set(a8br4, "Abbiegespur_8B_R_4")]::Abbiegespur_8B_R_4, |
| | 3937 | way[is_prop_set(a8br5, "Abbiegespur_8B_R_5")]::Abbiegespur_8B_R_5, |
| | 3938 | way[is_prop_set(a8br6, "Abbiegespur_8B_R_6")]::Abbiegespur_8B_R_6, |
| | 3939 | way[is_prop_set(a8br7, "Abbiegespur_8B_R_7")]::Abbiegespur_8B_R_7, |
| | 3940 | way[is_prop_set(a8bl1, "Abbiegespur_8B_L_1")]::Abbiegespur_8B_L_1, |
| | 3941 | way[is_prop_set(a8bl2, "Abbiegespur_8B_L_2")]::Abbiegespur_8B_L_2, |
| | 3942 | way[is_prop_set(a8bl3, "Abbiegespur_8B_L_3")]::Abbiegespur_8B_L_3, |
| | 3943 | way[is_prop_set(a8bl4, "Abbiegespur_8B_L_4")]::Abbiegespur_8B_L_4, |
| | 3944 | way[is_prop_set(a8bl5, "Abbiegespur_8B_L_5")]::Abbiegespur_8B_L_5, |
| | 3945 | way[is_prop_set(a8bl6, "Abbiegespur_8B_L_6")]::Abbiegespur_8B_L_6, |
| | 3946 | way[is_prop_set(a8bl7, "Abbiegespur_8B_L_7")]::Abbiegespur_8B_L_7, |
| | 3947 | way[is_prop_set(a8blg1, "Abbiegespur_8B_LG_1")]::Abbiegespur_8B_LG_1, |
| | 3948 | way[is_prop_set(a8blg2, "Abbiegespur_8B_LG_2")]::Abbiegespur_8B_LG_2, |
| | 3949 | way[is_prop_set(a8blg3, "Abbiegespur_8B_LG_3")]::Abbiegespur_8B_LG_3, |
| | 3950 | way[is_prop_set(a8blg4, "Abbiegespur_8B_LG_4")]::Abbiegespur_8B_LG_4, |
| | 3951 | way[is_prop_set(a8blg5, "Abbiegespur_8B_LG_5")]::Abbiegespur_8B_LG_5, |
| | 3952 | way[is_prop_set(a8blg6, "Abbiegespur_8B_LG_6")]::Abbiegespur_8B_LG_6, |
| | 3953 | way[is_prop_set(a8blg7, "Abbiegespur_8B_LG_7")]::Abbiegespur_8B_LG_7, |
| | 3954 | way[is_prop_set(a8brg1, "Abbiegespur_8B_RG_1")]::Abbiegespur_8B_RG_1, |
| | 3955 | way[is_prop_set(a8brg2, "Abbiegespur_8B_RG_2")]::Abbiegespur_8B_RG_2, |
| | 3956 | way[is_prop_set(a8brg3, "Abbiegespur_8B_RG_3")]::Abbiegespur_8B_RG_3, |
| | 3957 | way[is_prop_set(a8brg4, "Abbiegespur_8B_RG_4")]::Abbiegespur_8B_RG_4, |
| | 3958 | way[is_prop_set(a8brg5, "Abbiegespur_8B_RG_5")]::Abbiegespur_8B_RG_5, |
| | 3959 | way[is_prop_set(a8brg6, "Abbiegespur_8B_RG_6")]::Abbiegespur_8B_RG_6, |
| | 3960 | way[is_prop_set(a8brg7, "Abbiegespur_8B_RG_7")]::Abbiegespur_8B_RG_7, |
| | 3961 | way[is_prop_set(a8brl1, "Abbiegespur_8B_RL_1")]::Abbiegespur_8B_RL_1, |
| | 3962 | way[is_prop_set(a8brl2, "Abbiegespur_8B_RL_2")]::Abbiegespur_8B_RL_2, |
| | 3963 | way[is_prop_set(a8brl3, "Abbiegespur_8B_RL_3")]::Abbiegespur_8B_RL_3, |
| | 3964 | way[is_prop_set(a8brl4, "Abbiegespur_8B_RL_4")]::Abbiegespur_8B_RL_4, |
| | 3965 | way[is_prop_set(a8brl5, "Abbiegespur_8B_RL_5")]::Abbiegespur_8B_RL_5, |
| | 3966 | way[is_prop_set(a8brl6, "Abbiegespur_8B_RL_6")]::Abbiegespur_8B_RL_6, |
| | 3967 | way[is_prop_set(a8brl7, "Abbiegespur_8B_RL_7")]::Abbiegespur_8B_RL_7 |
| | 3968 | { |
| | 3969 | fw_spur_1: eval(((prop(lanes_ges, "default")) * (prop(b2-set, "default"))) - ((prop(b-set, "default")) * (prop(lanes_bw, "default") -1)) - |
| | 3970 | ((prop(b-set, "default")) *(-7))); |
| | 3971 | } |
| | 3972 | |
| | 3973 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3974 | /* */ |
| | 3975 | /* Konstanten für Linie 1 jeder Spur (7 Linien/Spur!) */ |
| | 3976 | /* constants for line 1 of each lane (7 lines per lane!) */ |
| | 3977 | /* */ |
| | 3978 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 3979 | way[is_prop_set(a1g1, "Abbiegespur_1_G_1")]::Abbiegespur_1_G_1, |
| | 3980 | way[is_prop_set(a1r1, "Abbiegespur_1_R_1")]::Abbiegespur_1_R_1, |
| | 3981 | way[is_prop_set(a1l1, "Abbiegespur_1_L_1")]::Abbiegespur_1_L_1, |
| | 3982 | way[is_prop_set(a1lg1, "Abbiegespur_1_LG_1")]::Abbiegespur_1_LG_1, |
| | 3983 | way[is_prop_set(a1rg1, "Abbiegespur_1_RG_1")]::Abbiegespur_1_RG_1, |
| | 3984 | way[is_prop_set(a1rl1, "Abbiegespur_1_RL_1")]::Abbiegespur_1_RL_1, |
| | 3985 | way[is_prop_set(a1bg1, "Abbiegespur_1B_G_1")]::Abbiegespur_1B_G_1, |
| | 3986 | way[is_prop_set(a1br1, "Abbiegespur_1B_R_1")]::Abbiegespur_1B_R_1, |
| | 3987 | way[is_prop_set(a1bl1, "Abbiegespur_1B_L_1")]::Abbiegespur_1B_L_1, |
| | 3988 | way[is_prop_set(a1blg1, "Abbiegespur_1B_LG_1")]::Abbiegespur_1B_LG_1, |
| | 3989 | way[is_prop_set(a1brg1, "Abbiegespur_1B_RG_1")]::Abbiegespur_1B_RG_1, |
| | 3990 | way[is_prop_set(a1brl1, "Abbiegespur_1B_RL_1")]::Abbiegespur_1B_RL_1, |
| | 3991 | way[is_prop_set(a2g1, "Abbiegespur_2_G_1")]::Abbiegespur_2_G_1, |
| | 3992 | way[is_prop_set(a2l1, "Abbiegespur_2_L_1")]::Abbiegespur_2_L_1, |
| | 3993 | way[is_prop_set(a2r1, "Abbiegespur_2_R_1")]::Abbiegespur_2_R_1, |
| | 3994 | way[is_prop_set(a2gr1, "Abbiegespur_2_GR_1")]::Abbiegespur_2_GR_1, |
| | 3995 | way[is_prop_set(a2gl1, "Abbiegespur_2_GL_1")]::Abbiegespur_2_GL_1, |
| | 3996 | way[is_prop_set(a2rl1, "Abbiegespur_2_RL_1")]::Abbiegespur_2_RL_1, |
| | 3997 | way[is_prop_set(a2bg1, "Abbiegespur_2B_G_1")]::Abbiegespur_2B_G_1, |
| | 3998 | way[is_prop_set(a2br1, "Abbiegespur_2B_R_1")]::Abbiegespur_2B_R_1, |
| | 3999 | way[is_prop_set(a2bl1, "Abbiegespur_2B_L_1")]::Abbiegespur_2B_L_1, |
| | 4000 | way[is_prop_set(a2blg1, "Abbiegespur_2B_LG_1")]::Abbiegespur_2B_LG_1, |
| | 4001 | way[is_prop_set(a2brg1, "Abbiegespur_2B_RG_1")]::Abbiegespur_2B_RG_1, |
| | 4002 | way[is_prop_set(a2brl1, "Abbiegespur_2B_RL_1")]::Abbiegespur_2B_RL_1, |
| | 4003 | way[is_prop_set(a3g1, "Abbiegespur_3_G_1")]::Abbiegespur_3_G_1, |
| | 4004 | way[is_prop_set(a3l1, "Abbiegespur_3_L_1")]::Abbiegespur_3_L_1, |
| | 4005 | way[is_prop_set(a3r1, "Abbiegespur_3_R_1")]::Abbiegespur_3_R_1, |
| | 4006 | way[is_prop_set(a3gr1, "Abbiegespur_3_GR_1")]::Abbiegespur_3_GR_1, |
| | 4007 | way[is_prop_set(a3gl1, "Abbiegespur_3_GL_1")]::Abbiegespur_3_GL_1, |
| | 4008 | way[is_prop_set(a3rl1, "Abbiegespur_3_RL_1")]::Abbiegespur_3_RL_1, |
| | 4009 | way[is_prop_set(a3bg1, "Abbiegespur_3B_G_1")]::Abbiegespur_3B_G_1, |
| | 4010 | way[is_prop_set(a3br1, "Abbiegespur_3B_R_1")]::Abbiegespur_3B_R_1, |
| | 4011 | way[is_prop_set(a3bl1, "Abbiegespur_3B_L_1")]::Abbiegespur_3B_L_1, |
| | 4012 | way[is_prop_set(a3blg1, "Abbiegespur_3B_LG_1")]::Abbiegespur_3B_LG_1, |
| | 4013 | way[is_prop_set(a3brg1, "Abbiegespur_3B_RG_1")]::Abbiegespur_3B_RG_1, |
| | 4014 | way[is_prop_set(a3brl1, "Abbiegespur_3B_RL_1")]::Abbiegespur_3B_RL_1, |
| | 4015 | way[is_prop_set(a4g1, "Abbiegespur_4_G_1")]::Abbiegespur_4_G_1, |
| | 4016 | way[is_prop_set(a4l1, "Abbiegespur_4_L_1")]::Abbiegespur_4_L_1, |
| | 4017 | way[is_prop_set(a4r1, "Abbiegespur_4_R_1")]::Abbiegespur_4_R_1, |
| | 4018 | way[is_prop_set(a4gr1, "Abbiegespur_4_GR_1")]::Abbiegespur_4_GR_1, |
| | 4019 | way[is_prop_set(a4gl1, "Abbiegespur_4_GL_1")]::Abbiegespur_4_GL_1, |
| | 4020 | way[is_prop_set(a4rl1, "Abbiegespur_4_RL_1")]::Abbiegespur_4_RL_1, |
| | 4021 | way[is_prop_set(a4bg1, "Abbiegespur_4B_G_1")]::Abbiegespur_4B_G_1, |
| | 4022 | way[is_prop_set(a4br1, "Abbiegespur_4B_R_1")]::Abbiegespur_4B_R_1, |
| | 4023 | way[is_prop_set(a4bl1, "Abbiegespur_4B_L_1")]::Abbiegespur_4B_L_1, |
| | 4024 | way[is_prop_set(a4blg1, "Abbiegespur_4B_LG_1")]::Abbiegespur_4B_LG_1, |
| | 4025 | way[is_prop_set(a4brg1, "Abbiegespur_4B_RG_1")]::Abbiegespur_4B_RG_1, |
| | 4026 | way[is_prop_set(a4brl1, "Abbiegespur_4B_RL_1")]::Abbiegespur_4B_RL_1, |
| | 4027 | way[is_prop_set(a5g1, "Abbiegespur_5_G_1")]::Abbiegespur_5_G_1, |
| | 4028 | way[is_prop_set(a5l1, "Abbiegespur_5_L_1")]::Abbiegespur_5_L_1, |
| | 4029 | way[is_prop_set(a5r1, "Abbiegespur_5_R_1")]::Abbiegespur_5_R_1, |
| | 4030 | way[is_prop_set(a5gr1, "Abbiegespur_5_GR_1")]::Abbiegespur_5_GR_1, |
| | 4031 | way[is_prop_set(a5gl1, "Abbiegespur_5_GL_1")]::Abbiegespur_5_GL_1, |
| | 4032 | way[is_prop_set(a5rl1, "Abbiegespur_5_RL_1")]::Abbiegespur_5_RL_1, |
| | 4033 | way[is_prop_set(a5bg1, "Abbiegespur_5B_G_1")]::Abbiegespur_5B_G_1, |
| | 4034 | way[is_prop_set(a5br1, "Abbiegespur_5B_R_1")]::Abbiegespur_5B_R_1, |
| | 4035 | way[is_prop_set(a5bl1, "Abbiegespur_5B_L_1")]::Abbiegespur_5B_L_1, |
| | 4036 | way[is_prop_set(a5blg1, "Abbiegespur_5B_LG_1")]::Abbiegespur_5B_LG_1, |
| | 4037 | way[is_prop_set(a5brg1, "Abbiegespur_5B_RG_1")]::Abbiegespur_5B_RG_1, |
| | 4038 | way[is_prop_set(a5brl1, "Abbiegespur_5B_RL_1")]::Abbiegespur_5B_RL_1, |
| | 4039 | way[is_prop_set(a6g1, "Abbiegespur_6_G_1")]::Abbiegespur_6_G_1, |
| | 4040 | way[is_prop_set(a6l1, "Abbiegespur_6_L_1")]::Abbiegespur_6_L_1, |
| | 4041 | way[is_prop_set(a6r1, "Abbiegespur_6_R_1")]::Abbiegespur_6_R_1, |
| | 4042 | way[is_prop_set(a6gr1, "Abbiegespur_6_GR_1")]::Abbiegespur_6_GR_1, |
| | 4043 | way[is_prop_set(a6gl1, "Abbiegespur_6_GL_1")]::Abbiegespur_6_GL_1, |
| | 4044 | way[is_prop_set(a6rl1, "Abbiegespur_6_RL_1")]::Abbiegespur_6_RL_1, |
| | 4045 | way[is_prop_set(a6bg1, "Abbiegespur_6B_G_1")]::Abbiegespur_6B_G_1, |
| | 4046 | way[is_prop_set(a6br1, "Abbiegespur_6B_R_1")]::Abbiegespur_6B_R_1, |
| | 4047 | way[is_prop_set(a6bl1, "Abbiegespur_6B_L_1")]::Abbiegespur_6B_L_1, |
| | 4048 | way[is_prop_set(a6blg1, "Abbiegespur_6B_LG_1")]::Abbiegespur_6B_LG_1, |
| | 4049 | way[is_prop_set(a6brg1, "Abbiegespur_6B_RG_1")]::Abbiegespur_6B_RG_1, |
| | 4050 | way[is_prop_set(a6brl1, "Abbiegespur_6B_RL_1")]::Abbiegespur_6B_RL_1, |
| | 4051 | way[is_prop_set(a7g1, "Abbiegespur_7_G_1")]::Abbiegespur_7_G_1, |
| | 4052 | way[is_prop_set(a7l1, "Abbiegespur_7_L_1")]::Abbiegespur_7_L_1, |
| | 4053 | way[is_prop_set(a7r1, "Abbiegespur_7_R_1")]::Abbiegespur_7_R_1, |
| | 4054 | way[is_prop_set(a7gr1, "Abbiegespur_7_GR_1")]::Abbiegespur_7_GR_1, |
| | 4055 | way[is_prop_set(a7gl1, "Abbiegespur_7_GL_1")]::Abbiegespur_7_GL_1, |
| | 4056 | way[is_prop_set(a7rl1, "Abbiegespur_7_RL_1")]::Abbiegespur_7_RL_1, |
| | 4057 | way[is_prop_set(a7bg1, "Abbiegespur_7B_G_1")]::Abbiegespur_7B_G_1, |
| | 4058 | way[is_prop_set(a7br1, "Abbiegespur_7B_R_1")]::Abbiegespur_7B_R_1, |
| | 4059 | way[is_prop_set(a7bl1, "Abbiegespur_7B_L_1")]::Abbiegespur_7B_L_1, |
| | 4060 | way[is_prop_set(a7blg1, "Abbiegespur_7B_LG_1")]::Abbiegespur_7B_LG_1, |
| | 4061 | way[is_prop_set(a7brg1, "Abbiegespur_7B_RG_1")]::Abbiegespur_7B_RG_1, |
| | 4062 | way[is_prop_set(a7brl1, "Abbiegespur_7B_RL_1")]::Abbiegespur_7B_RL_1, |
| | 4063 | way[is_prop_set(a8g1, "Abbiegespur_8_G_1")]::Abbiegespur_8_G_1, |
| | 4064 | way[is_prop_set(a8l1, "Abbiegespur_8_L_1")]::Abbiegespur_8_L_1, |
| | 4065 | way[is_prop_set(a8r1, "Abbiegespur_8_R_1")]::Abbiegespur_8_R_1, |
| | 4066 | way[is_prop_set(a8gr1, "Abbiegespur_8_GR_1")]::Abbiegespur_8_GR_1, |
| | 4067 | way[is_prop_set(a8gl1, "Abbiegespur_8_GL_1")]::Abbiegespur_8_GL_1, |
| | 4068 | way[is_prop_set(a8rl1, "Abbiegespur_8_RL_1")]::Abbiegespur_8_RL_1, |
| | 4069 | way[is_prop_set(a8bg1, "Abbiegespur_8B_G_1")]::Abbiegespur_8B_G_1, |
| | 4070 | way[is_prop_set(a8br1, "Abbiegespur_8B_R_1")]::Abbiegespur_8B_R_1, |
| | 4071 | way[is_prop_set(a8bl1, "Abbiegespur_8B_L_1")]::Abbiegespur_8B_L_1, |
| | 4072 | way[is_prop_set(a8blg1, "Abbiegespur_8B_LG_1")]::Abbiegespur_8B_LG_1, |
| | 4073 | way[is_prop_set(a8brg1, "Abbiegespur_8B_RG_1")]::Abbiegespur_8B_RG_1, |
| | 4074 | way[is_prop_set(a8brl1, "Abbiegespur_8B_RL_1")]::Abbiegespur_8B_RL_1 |
| | 4075 | { |
| | 4076 | offset: eval((prop(fw_spur_1)) -3); |
| | 4077 | width: 2; |
| | 4078 | } |
| | 4079 | |
| | 4080 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 4081 | /* */ |
| | 4082 | /* Konstanten für Linie 2 */ |
| | 4083 | /* */ |
| | 4084 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 4085 | way[is_prop_set(a1g2, "Abbiegespur_1_G_2")]::Abbiegespur_1_G_2, |
| | 4086 | way[is_prop_set(a1r2, "Abbiegespur_1_R_2")]::Abbiegespur_1_R_2, |
| | 4087 | way[is_prop_set(a1l2, "Abbiegespur_1_L_2")]::Abbiegespur_1_L_2, |
| | 4088 | way[is_prop_set(a1lg2, "Abbiegespur_1_LG_2")]::Abbiegespur_1_LG_2, |
| | 4089 | way[is_prop_set(a1rg2, "Abbiegespur_1_RG_2")]::Abbiegespur_1_RG_2, |
| | 4090 | way[is_prop_set(a1rl2, "Abbiegespur_1_RL_2")]::Abbiegespur_1_RL_2, |
| | 4091 | way[is_prop_set(a1bg2, "Abbiegespur_1B_G_2")]::Abbiegespur_1B_G_2, |
| | 4092 | way[is_prop_set(a1bl2, "Abbiegespur_1B_L_2")]::Abbiegespur_1B_L_2, |
| | 4093 | way[is_prop_set(a1br2, "Abbiegespur_1B_R_2")]::Abbiegespur_1B_R_2, |
| | 4094 | way[is_prop_set(a1blg2, "Abbiegespur_1B_LG_2")]::Abbiegespur_1B_LG_2, |
| | 4095 | way[is_prop_set(a1brg2, "Abbiegespur_1B_RG_2")]::Abbiegespur_1B_RG_2, |
| | 4096 | way[is_prop_set(a1brl2, "Abbiegespur_1B_RL_2")]::Abbiegespur_1B_RL_2, |
| | 4097 | way[is_prop_set(a2g2, "Abbiegespur_2_G_2")]::Abbiegespur_2_G_2, |
| | 4098 | way[is_prop_set(a2l2, "Abbiegespur_2_L_2")]::Abbiegespur_2_L_2, |
| | 4099 | way[is_prop_set(a2r2, "Abbiegespur_2_R_2")]::Abbiegespur_2_R_2, |
| | 4100 | way[is_prop_set(a2gr2, "Abbiegespur_2_GR_2")]::Abbiegespur_2_GR_2, |
| | 4101 | way[is_prop_set(a2gl2, "Abbiegespur_2_GL_2")]::Abbiegespur_2_GL_2, |
| | 4102 | way[is_prop_set(a2rl2, "Abbiegespur_2_RL_2")]::Abbiegespur_2_RL_2, |
| | 4103 | way[is_prop_set(a2bg2, "Abbiegespur_2B_G_2")]::Abbiegespur_2B_G_2, |
| | 4104 | way[is_prop_set(a2bl2, "Abbiegespur_2B_L_2")]::Abbiegespur_2B_L_2, |
| | 4105 | way[is_prop_set(a2br2, "Abbiegespur_2B_R_2")]::Abbiegespur_2B_R_2, |
| | 4106 | way[is_prop_set(a2blg2, "Abbiegespur_2B_LG_2")]::Abbiegespur_2B_LG_2, |
| | 4107 | way[is_prop_set(a2brg2, "Abbiegespur_2B_RG_2")]::Abbiegespur_2B_RG_2, |
| | 4108 | way[is_prop_set(a2brl2, "Abbiegespur_2B_RL_2")]::Abbiegespur_2B_RL_2, |
| | 4109 | way[is_prop_set(a3g2, "Abbiegespur_3_G_2")]::Abbiegespur_3_G_2, |
| | 4110 | way[is_prop_set(a3l2, "Abbiegespur_3_L_2")]::Abbiegespur_3_L_2, |
| | 4111 | way[is_prop_set(a3r2, "Abbiegespur_3_R_2")]::Abbiegespur_3_R_2, |
| | 4112 | way[is_prop_set(a3gr2, "Abbiegespur_3_GR_2")]::Abbiegespur_3_GR_2, |
| | 4113 | way[is_prop_set(a3gl2, "Abbiegespur_3_GL_2")]::Abbiegespur_3_GL_2, |
| | 4114 | way[is_prop_set(a3rl2, "Abbiegespur_3_RL_2")]::Abbiegespur_3_RL_2, |
| | 4115 | way[is_prop_set(a3bg2, "Abbiegespur_3B_G_2")]::Abbiegespur_3B_G_2, |
| | 4116 | way[is_prop_set(a3bl2, "Abbiegespur_3B_L_2")]::Abbiegespur_3B_L_2, |
| | 4117 | way[is_prop_set(a3br2, "Abbiegespur_3B_R_2")]::Abbiegespur_3B_R_2, |
| | 4118 | way[is_prop_set(a3blg2, "Abbiegespur_3B_LG_2")]::Abbiegespur_3B_LG_2, |
| | 4119 | way[is_prop_set(a3brg2, "Abbiegespur_3B_RG_2")]::Abbiegespur_3B_RG_2, |
| | 4120 | way[is_prop_set(a3brl2, "Abbiegespur_3B_RL_2")]::Abbiegespur_3B_RL_2, |
| | 4121 | way[is_prop_set(a4g2, "Abbiegespur_4_G_2")]::Abbiegespur_4_G_2, |
| | 4122 | way[is_prop_set(a4l2, "Abbiegespur_4_L_2")]::Abbiegespur_4_L_2, |
| | 4123 | way[is_prop_set(a4r2, "Abbiegespur_4_R_2")]::Abbiegespur_4_R_2, |
| | 4124 | way[is_prop_set(a4gr2, "Abbiegespur_4_GR_2")]::Abbiegespur_4_GR_2, |
| | 4125 | way[is_prop_set(a4gl2, "Abbiegespur_4_GL_2")]::Abbiegespur_4_GL_2, |
| | 4126 | way[is_prop_set(a4rl2, "Abbiegespur_4_RL_2")]::Abbiegespur_4_RL_2, |
| | 4127 | way[is_prop_set(a4bg2, "Abbiegespur_4B_G_2")]::Abbiegespur_4B_G_2, |
| | 4128 | way[is_prop_set(a4bl2, "Abbiegespur_4B_L_2")]::Abbiegespur_4B_L_2, |
| | 4129 | way[is_prop_set(a4br2, "Abbiegespur_4B_R_2")]::Abbiegespur_4B_R_2, |
| | 4130 | way[is_prop_set(a4blg2, "Abbiegespur_4B_LG_2")]::Abbiegespur_4B_LG_2, |
| | 4131 | way[is_prop_set(a4brg2, "Abbiegespur_4B_RG_2")]::Abbiegespur_4B_RG_2, |
| | 4132 | way[is_prop_set(a4brl2, "Abbiegespur_4B_RL_2")]::Abbiegespur_4B_RL_2, |
| | 4133 | way[is_prop_set(a5g2, "Abbiegespur_5_G_2")]::Abbiegespur_5_G_2, |
| | 4134 | way[is_prop_set(a5l2, "Abbiegespur_5_L_2")]::Abbiegespur_5_L_2, |
| | 4135 | way[is_prop_set(a5r2, "Abbiegespur_5_R_2")]::Abbiegespur_5_R_2, |
| | 4136 | way[is_prop_set(a5gr2, "Abbiegespur_5_GR_2")]::Abbiegespur_5_GR_2, |
| | 4137 | way[is_prop_set(a5gl2, "Abbiegespur_5_GL_2")]::Abbiegespur_5_GL_2, |
| | 4138 | way[is_prop_set(a5rl2, "Abbiegespur_5_RL_2")]::Abbiegespur_5_RL_2, |
| | 4139 | way[is_prop_set(a5bg2, "Abbiegespur_5B_G_2")]::Abbiegespur_5B_G_2, |
| | 4140 | way[is_prop_set(a5bl2, "Abbiegespur_5B_L_2")]::Abbiegespur_5B_L_2, |
| | 4141 | way[is_prop_set(a5br2, "Abbiegespur_5B_R_2")]::Abbiegespur_5B_R_2, |
| | 4142 | way[is_prop_set(a5blg2, "Abbiegespur_5B_LG_2")]::Abbiegespur_5B_LG_2, |
| | 4143 | way[is_prop_set(a5brg2, "Abbiegespur_5B_RG_2")]::Abbiegespur_5B_RG_2, |
| | 4144 | way[is_prop_set(a5brl2, "Abbiegespur_5B_RL_2")]::Abbiegespur_5B_RL_2, |
| | 4145 | way[is_prop_set(a6g2, "Abbiegespur_6_G_2")]::Abbiegespur_6_G_2, |
| | 4146 | way[is_prop_set(a6l2, "Abbiegespur_6_L_2")]::Abbiegespur_6_L_2, |
| | 4147 | way[is_prop_set(a6r2, "Abbiegespur_6_R_2")]::Abbiegespur_6_R_2, |
| | 4148 | way[is_prop_set(a6gr2, "Abbiegespur_6_GR_2")]::Abbiegespur_6_GR_2, |
| | 4149 | way[is_prop_set(a6gl2, "Abbiegespur_6_GL_2")]::Abbiegespur_6_GL_2, |
| | 4150 | way[is_prop_set(a6rl2, "Abbiegespur_6_RL_2")]::Abbiegespur_6_RL_2, |
| | 4151 | way[is_prop_set(a6bg2, "Abbiegespur_6B_G_2")]::Abbiegespur_6B_G_2, |
| | 4152 | way[is_prop_set(a6bl2, "Abbiegespur_6B_L_2")]::Abbiegespur_6B_L_2, |
| | 4153 | way[is_prop_set(a6br2, "Abbiegespur_6B_R_2")]::Abbiegespur_6B_R_2, |
| | 4154 | way[is_prop_set(a6blg2, "Abbiegespur_6B_LG_2")]::Abbiegespur_6B_LG_2, |
| | 4155 | way[is_prop_set(a6brg2, "Abbiegespur_6B_RG_2")]::Abbiegespur_6B_RG_2, |
| | 4156 | way[is_prop_set(a6brl2, "Abbiegespur_6B_RL_2")]::Abbiegespur_6B_RL_2, |
| | 4157 | way[is_prop_set(a7g2, "Abbiegespur_7_G_2")]::Abbiegespur_7_G_2, |
| | 4158 | way[is_prop_set(a7l2, "Abbiegespur_7_L_2")]::Abbiegespur_7_L_2, |
| | 4159 | way[is_prop_set(a7r2, "Abbiegespur_7_R_2")]::Abbiegespur_7_R_2, |
| | 4160 | way[is_prop_set(a7gr2, "Abbiegespur_7_GR_2")]::Abbiegespur_7_GR_2, |
| | 4161 | way[is_prop_set(a7gl2, "Abbiegespur_7_GL_2")]::Abbiegespur_7_GL_2, |
| | 4162 | way[is_prop_set(a7rl2, "Abbiegespur_7_RL_2")]::Abbiegespur_7_RL_2, |
| | 4163 | way[is_prop_set(a7bg2, "Abbiegespur_7B_G_2")]::Abbiegespur_7B_G_2, |
| | 4164 | way[is_prop_set(a7bl2, "Abbiegespur_7B_L_2")]::Abbiegespur_7B_L_2, |
| | 4165 | way[is_prop_set(a7br2, "Abbiegespur_7B_R_2")]::Abbiegespur_7B_R_2, |
| | 4166 | way[is_prop_set(a7blg2, "Abbiegespur_7B_LG_2")]::Abbiegespur_7B_LG_2, |
| | 4167 | way[is_prop_set(a7brg2, "Abbiegespur_7B_RG_2")]::Abbiegespur_7B_RG_2, |
| | 4168 | way[is_prop_set(a7brl2, "Abbiegespur_7B_RL_2")]::Abbiegespur_7B_RL_2, |
| | 4169 | way[is_prop_set(a8g2, "Abbiegespur_8_G_2")]::Abbiegespur_8_G_2, |
| | 4170 | way[is_prop_set(a8l2, "Abbiegespur_8_L_2")]::Abbiegespur_8_L_2, |
| | 4171 | way[is_prop_set(a8r2, "Abbiegespur_8_R_2")]::Abbiegespur_8_R_2, |
| | 4172 | way[is_prop_set(a8gr2, "Abbiegespur_8_GR_2")]::Abbiegespur_8_GR_2, |
| | 4173 | way[is_prop_set(a8gl2, "Abbiegespur_8_GL_2")]::Abbiegespur_8_GL_2, |
| | 4174 | way[is_prop_set(a8rl2, "Abbiegespur_8_RL_2")]::Abbiegespur_8_RL_2, |
| | 4175 | way[is_prop_set(a8bg2, "Abbiegespur_8B_G_2")]::Abbiegespur_8B_G_2, |
| | 4176 | way[is_prop_set(a8bl2, "Abbiegespur_8B_L_2")]::Abbiegespur_8B_L_2, |
| | 4177 | way[is_prop_set(a8br2, "Abbiegespur_8B_R_2")]::Abbiegespur_8B_R_2, |
| | 4178 | way[is_prop_set(a8blg2, "Abbiegespur_8B_LG_2")]::Abbiegespur_8B_LG_2, |
| | 4179 | way[is_prop_set(a8brg2, "Abbiegespur_8B_RG_2")]::Abbiegespur_8B_RG_2, |
| | 4180 | way[is_prop_set(a8brl2, "Abbiegespur_8B_RL_2")]::Abbiegespur_8B_RL_2 |
| | 4181 | { |
| | 4182 | offset: eval((prop(fw_spur_1)) -5); |
| | 4183 | } |
| | 4184 | |
| | 4185 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 4186 | /* */ |
| | 4187 | /* Konstanten für Linie 3 */ |
| | 4188 | /* */ |
| | 4189 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 4190 | way[is_prop_set(a1g3, "Abbiegespur_1_G_3")]::Abbiegespur_1_G_3, |
| | 4191 | way[is_prop_set(a1r3, "Abbiegespur_1_R_3")]::Abbiegespur_1_R_3, |
| | 4192 | way[is_prop_set(a1l3, "Abbiegespur_1_L_3")]::Abbiegespur_1_L_3, |
| | 4193 | way[is_prop_set(a1lg3, "Abbiegespur_1_LG_3")]::Abbiegespur_1_LG_3, |
| | 4194 | way[is_prop_set(a1rg3, "Abbiegespur_1_RG_3")]::Abbiegespur_1_RG_3, |
| | 4195 | way[is_prop_set(a1rl3, "Abbiegespur_1_RL_3")]::Abbiegespur_1_RL_3, |
| | 4196 | way[is_prop_set(a1bg3, "Abbiegespur_1B_G_3")]::Abbiegespur_1B_G_3, |
| | 4197 | way[is_prop_set(a1br3, "Abbiegespur_1B_R_3")]::Abbiegespur_1B_R_3, |
| | 4198 | way[is_prop_set(a1bl3, "Abbiegespur_1B_L_3")]::Abbiegespur_1B_L_3, |
| | 4199 | way[is_prop_set(a1blg3, "Abbiegespur_1B_LG_3")]::Abbiegespur_1B_LG_3, |
| | 4200 | way[is_prop_set(a1brg3, "Abbiegespur_1B_RG_3")]::Abbiegespur_1B_RG_3, |
| | 4201 | way[is_prop_set(a1brl3, "Abbiegespur_1B_RL_3")]::Abbiegespur_1B_RL_3, |
| | 4202 | way[is_prop_set(a2g3, "Abbiegespur_2_G_3")]::Abbiegespur_2_G_3, |
| | 4203 | way[is_prop_set(a2l3, "Abbiegespur_2_L_3")]::Abbiegespur_2_L_3, |
| | 4204 | way[is_prop_set(a2r3, "Abbiegespur_2_R_3")]::Abbiegespur_2_R_3, |
| | 4205 | way[is_prop_set(a2gr3, "Abbiegespur_2_GR_3")]::Abbiegespur_2_GR_3, |
| | 4206 | way[is_prop_set(a2gl3, "Abbiegespur_2_GL_3")]::Abbiegespur_2_GL_3, |
| | 4207 | way[is_prop_set(a2rl3, "Abbiegespur_2_RL_3")]::Abbiegespur_2_RL_3, |
| | 4208 | way[is_prop_set(a2bg3, "Abbiegespur_2B_G_3")]::Abbiegespur_2B_G_3, |
| | 4209 | way[is_prop_set(a2br3, "Abbiegespur_2B_R_3")]::Abbiegespur_2B_R_3, |
| | 4210 | way[is_prop_set(a2bl3, "Abbiegespur_2B_L_3")]::Abbiegespur_2B_L_3, |
| | 4211 | way[is_prop_set(a2blg3, "Abbiegespur_2B_LG_3")]::Abbiegespur_2B_LG_3, |
| | 4212 | way[is_prop_set(a2brg3, "Abbiegespur_2B_RG_3")]::Abbiegespur_2B_RG_3, |
| | 4213 | way[is_prop_set(a2brl3, "Abbiegespur_2B_RL_3")]::Abbiegespur_2B_RL_3, |
| | 4214 | way[is_prop_set(a3g3, "Abbiegespur_3_G_3")]::Abbiegespur_3_G_3, |
| | 4215 | way[is_prop_set(a3l3, "Abbiegespur_3_L_3")]::Abbiegespur_3_L_3, |
| | 4216 | way[is_prop_set(a3r3, "Abbiegespur_3_R_3")]::Abbiegespur_3_R_3, |
| | 4217 | way[is_prop_set(a3gr3, "Abbiegespur_3_GR_3")]::Abbiegespur_3_GR_3, |
| | 4218 | way[is_prop_set(a3gl3, "Abbiegespur_3_GL_3")]::Abbiegespur_3_GL_3, |
| | 4219 | way[is_prop_set(a3rl3, "Abbiegespur_3_RL_3")]::Abbiegespur_3_RL_3, |
| | 4220 | way[is_prop_set(a3bg3, "Abbiegespur_3B_G_3")]::Abbiegespur_3B_G_3, |
| | 4221 | way[is_prop_set(a3br3, "Abbiegespur_3B_R_3")]::Abbiegespur_3B_R_3, |
| | 4222 | way[is_prop_set(a3bl3, "Abbiegespur_3B_L_3")]::Abbiegespur_3B_L_3, |
| | 4223 | way[is_prop_set(a3blg3, "Abbiegespur_3B_LG_3")]::Abbiegespur_3B_LG_3, |
| | 4224 | way[is_prop_set(a3brg3, "Abbiegespur_3B_RG_3")]::Abbiegespur_3B_RG_3, |
| | 4225 | way[is_prop_set(a3brl3, "Abbiegespur_3B_RL_3")]::Abbiegespur_3B_RL_3, |
| | 4226 | way[is_prop_set(a4g3, "Abbiegespur_4_G_3")]::Abbiegespur_4_G_3, |
| | 4227 | way[is_prop_set(a4l3, "Abbiegespur_4_L_3")]::Abbiegespur_4_L_3, |
| | 4228 | way[is_prop_set(a4r3, "Abbiegespur_4_R_3")]::Abbiegespur_4_R_3, |
| | 4229 | way[is_prop_set(a4gr3, "Abbiegespur_4_GR_3")]::Abbiegespur_4_GR_3, |
| | 4230 | way[is_prop_set(a4gl3, "Abbiegespur_4_GL_3")]::Abbiegespur_4_GL_3, |
| | 4231 | way[is_prop_set(a4rl3, "Abbiegespur_4_RL_3")]::Abbiegespur_4_RL_3, |
| | 4232 | way[is_prop_set(a4bg3, "Abbiegespur_4B_G_3")]::Abbiegespur_4B_G_3, |
| | 4233 | way[is_prop_set(a4br3, "Abbiegespur_4B_R_3")]::Abbiegespur_4B_R_3, |
| | 4234 | way[is_prop_set(a4bl3, "Abbiegespur_4B_L_3")]::Abbiegespur_4B_L_3, |
| | 4235 | way[is_prop_set(a4blg3, "Abbiegespur_4B_LG_3")]::Abbiegespur_4B_LG_3, |
| | 4236 | way[is_prop_set(a4brg3, "Abbiegespur_4B_RG_3")]::Abbiegespur_4B_RG_3, |
| | 4237 | way[is_prop_set(a4brl3, "Abbiegespur_4B_RL_3")]::Abbiegespur_4B_RL_3, |
| | 4238 | way[is_prop_set(a5g3, "Abbiegespur_5_G_3")]::Abbiegespur_5_G_3, |
| | 4239 | way[is_prop_set(a5l3, "Abbiegespur_5_L_3")]::Abbiegespur_5_L_3, |
| | 4240 | way[is_prop_set(a5r3, "Abbiegespur_5_R_3")]::Abbiegespur_5_R_3, |
| | 4241 | way[is_prop_set(a5gr3, "Abbiegespur_5_GR_3")]::Abbiegespur_5_GR_3, |
| | 4242 | way[is_prop_set(a5gl3, "Abbiegespur_5_GL_3")]::Abbiegespur_5_GL_3, |
| | 4243 | way[is_prop_set(a5rl3, "Abbiegespur_5_RL_3")]::Abbiegespur_5_RL_3, |
| | 4244 | way[is_prop_set(a5bg3, "Abbiegespur_5B_G_3")]::Abbiegespur_5B_G_3, |
| | 4245 | way[is_prop_set(a5br3, "Abbiegespur_5B_R_3")]::Abbiegespur_5B_R_3, |
| | 4246 | way[is_prop_set(a5bl3, "Abbiegespur_5B_L_3")]::Abbiegespur_5B_L_3, |
| | 4247 | way[is_prop_set(a5blg3, "Abbiegespur_5B_LG_3")]::Abbiegespur_5B_LG_3, |
| | 4248 | way[is_prop_set(a5brg3, "Abbiegespur_5B_RG_3")]::Abbiegespur_5B_RG_3, |
| | 4249 | way[is_prop_set(a5brl3, "Abbiegespur_5B_RL_3")]::Abbiegespur_5B_RL_3, |
| | 4250 | way[is_prop_set(a6g3, "Abbiegespur_6_G_3")]::Abbiegespur_6_G_3, |
| | 4251 | way[is_prop_set(a6l3, "Abbiegespur_6_L_3")]::Abbiegespur_6_L_3, |
| | 4252 | way[is_prop_set(a6r3, "Abbiegespur_6_R_3")]::Abbiegespur_6_R_3, |
| | 4253 | way[is_prop_set(a6gr3, "Abbiegespur_6_GR_3")]::Abbiegespur_6_GR_3, |
| | 4254 | way[is_prop_set(a6gl3, "Abbiegespur_6_GL_3")]::Abbiegespur_6_GL_3, |
| | 4255 | way[is_prop_set(a6rl3, "Abbiegespur_6_RL_3")]::Abbiegespur_6_RL_3, |
| | 4256 | way[is_prop_set(a6bg3, "Abbiegespur_6B_G_3")]::Abbiegespur_6B_G_3, |
| | 4257 | way[is_prop_set(a6br3, "Abbiegespur_6B_R_3")]::Abbiegespur_6B_R_3, |
| | 4258 | way[is_prop_set(a6bl3, "Abbiegespur_6B_L_3")]::Abbiegespur_6B_L_3, |
| | 4259 | way[is_prop_set(a6blg3, "Abbiegespur_6B_LG_3")]::Abbiegespur_6B_LG_3, |
| | 4260 | way[is_prop_set(a6brg3, "Abbiegespur_6B_RG_3")]::Abbiegespur_6B_RG_3, |
| | 4261 | way[is_prop_set(a6brl3, "Abbiegespur_6B_RL_3")]::Abbiegespur_6B_RL_3, |
| | 4262 | way[is_prop_set(a7g3, "Abbiegespur_7_G_3")]::Abbiegespur_7_G_3, |
| | 4263 | way[is_prop_set(a7l3, "Abbiegespur_7_L_3")]::Abbiegespur_7_L_3, |
| | 4264 | way[is_prop_set(a7r3, "Abbiegespur_7_R_3")]::Abbiegespur_7_R_3, |
| | 4265 | way[is_prop_set(a7gr3, "Abbiegespur_7_GR_3")]::Abbiegespur_7_GR_3, |
| | 4266 | way[is_prop_set(a7gl3, "Abbiegespur_7_GL_3")]::Abbiegespur_7_GL_3, |
| | 4267 | way[is_prop_set(a7rl3, "Abbiegespur_7_RL_3")]::Abbiegespur_7_RL_3, |
| | 4268 | way[is_prop_set(a7bg3, "Abbiegespur_7B_G_3")]::Abbiegespur_7B_G_3, |
| | 4269 | way[is_prop_set(a7br3, "Abbiegespur_7B_R_3")]::Abbiegespur_7B_R_3, |
| | 4270 | way[is_prop_set(a7bl3, "Abbiegespur_7B_L_3")]::Abbiegespur_7B_L_3, |
| | 4271 | way[is_prop_set(a7blg3, "Abbiegespur_7B_LG_3")]::Abbiegespur_7B_LG_3, |
| | 4272 | way[is_prop_set(a7brg3, "Abbiegespur_7B_RG_3")]::Abbiegespur_7B_RG_3, |
| | 4273 | way[is_prop_set(a7brl3, "Abbiegespur_7B_RL_3")]::Abbiegespur_7B_RL_3, |
| | 4274 | way[is_prop_set(a8g3, "Abbiegespur_8_G_3")]::Abbiegespur_8_G_3, |
| | 4275 | way[is_prop_set(a8l3, "Abbiegespur_8_L_3")]::Abbiegespur_8_L_3, |
| | 4276 | way[is_prop_set(a8r3, "Abbiegespur_8_R_3")]::Abbiegespur_8_R_3, |
| | 4277 | way[is_prop_set(a8gr3, "Abbiegespur_8_GR_3")]::Abbiegespur_8_GR_3, |
| | 4278 | way[is_prop_set(a8gl3, "Abbiegespur_8_GL_3")]::Abbiegespur_8_GL_3, |
| | 4279 | way[is_prop_set(a8rl3, "Abbiegespur_8_RL_3")]::Abbiegespur_8_RL_3, |
| | 4280 | way[is_prop_set(a8bg3, "Abbiegespur_8B_G_3")]::Abbiegespur_8B_G_3, |
| | 4281 | way[is_prop_set(a8br3, "Abbiegespur_8B_R_3")]::Abbiegespur_8B_R_3, |
| | 4282 | way[is_prop_set(a8bl3, "Abbiegespur_8B_L_3")]::Abbiegespur_8B_L_3, |
| | 4283 | way[is_prop_set(a8blg3, "Abbiegespur_8B_LG_3")]::Abbiegespur_8B_LG_3, |
| | 4284 | way[is_prop_set(a8brg3, "Abbiegespur_8B_RG_3")]::Abbiegespur_8B_RG_3, |
| | 4285 | way[is_prop_set(a8brl3, "Abbiegespur_8B_RL_3")]::Abbiegespur_8B_RL_3 |
| | 4286 | { |
| | 4287 | offset: eval((prop(fw_spur_1)) -7); |
| | 4288 | } |
| | 4289 | |
| | 4290 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 4291 | /* */ |
| | 4292 | /* Konstanten für Linie 4 */ |
| | 4293 | /* */ |
| | 4294 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 4295 | way[is_prop_set(a1g4, "Abbiegespur_1_G_4")]::Abbiegespur_1_G_4, |
| | 4296 | way[is_prop_set(a1r4, "Abbiegespur_1_R_4")]::Abbiegespur_1_R_4, |
| | 4297 | way[is_prop_set(a1l4, "Abbiegespur_1_L_4")]::Abbiegespur_1_L_4, |
| | 4298 | way[is_prop_set(a1lg4, "Abbiegespur_1_LG_4")]::Abbiegespur_1_LG_4, |
| | 4299 | way[is_prop_set(a1rg4, "Abbiegespur_1_RG_4")]::Abbiegespur_1_RG_4, |
| | 4300 | way[is_prop_set(a1rl4, "Abbiegespur_1_RL_4")]::Abbiegespur_1_RL_4, |
| | 4301 | way[is_prop_set(a1bg4, "Abbiegespur_1B_G_4")]::Abbiegespur_1B_G_4, |
| | 4302 | way[is_prop_set(a1br4, "Abbiegespur_1B_R_4")]::Abbiegespur_1B_R_4, |
| | 4303 | way[is_prop_set(a1bl4, "Abbiegespur_1B_L_4")]::Abbiegespur_1B_L_4, |
| | 4304 | way[is_prop_set(a1blg4, "Abbiegespur_1B_LG_4")]::Abbiegespur_1B_LG_4, |
| | 4305 | way[is_prop_set(a1brg4, "Abbiegespur_1B_RG_4")]::Abbiegespur_1B_RG_4, |
| | 4306 | way[is_prop_set(a1brl4, "Abbiegespur_1B_RL_4")]::Abbiegespur_1B_RL_4, |
| | 4307 | way[is_prop_set(a2g4, "Abbiegespur_2_G_4")]::Abbiegespur_2_G_4, |
| | 4308 | way[is_prop_set(a2l4, "Abbiegespur_2_L_4")]::Abbiegespur_2_L_4, |
| | 4309 | way[is_prop_set(a2r4, "Abbiegespur_2_R_4")]::Abbiegespur_2_R_4, |
| | 4310 | way[is_prop_set(a2gr4, "Abbiegespur_2_GR_4")]::Abbiegespur_2_GR_4, |
| | 4311 | way[is_prop_set(a2gl4, "Abbiegespur_2_GL_4")]::Abbiegespur_2_GL_4, |
| | 4312 | way[is_prop_set(a2rl4, "Abbiegespur_2_RL_4")]::Abbiegespur_2_RL_4, |
| | 4313 | way[is_prop_set(a2bg4, "Abbiegespur_2B_G_4")]::Abbiegespur_2B_G_4, |
| | 4314 | way[is_prop_set(a2br4, "Abbiegespur_2B_R_4")]::Abbiegespur_2B_R_4, |
| | 4315 | way[is_prop_set(a2bl4, "Abbiegespur_2B_L_4")]::Abbiegespur_2B_L_4, |
| | 4316 | way[is_prop_set(a2blg4, "Abbiegespur_2B_LG_4")]::Abbiegespur_2B_LG_4, |
| | 4317 | way[is_prop_set(a2brg4, "Abbiegespur_2B_RG_4")]::Abbiegespur_2B_RG_4, |
| | 4318 | way[is_prop_set(a2brl4, "Abbiegespur_2B_RL_4")]::Abbiegespur_2B_RL_4, |
| | 4319 | way[is_prop_set(a3g4, "Abbiegespur_3_G_4")]::Abbiegespur_3_G_4, |
| | 4320 | way[is_prop_set(a3l4, "Abbiegespur_3_L_4")]::Abbiegespur_3_L_4, |
| | 4321 | way[is_prop_set(a3r4, "Abbiegespur_3_R_4")]::Abbiegespur_3_R_4, |
| | 4322 | way[is_prop_set(a3gr4, "Abbiegespur_3_GR_4")]::Abbiegespur_3_GR_4, |
| | 4323 | way[is_prop_set(a3gl4, "Abbiegespur_3_GL_4")]::Abbiegespur_3_GL_4, |
| | 4324 | way[is_prop_set(a3rl4, "Abbiegespur_3_RL_4")]::Abbiegespur_3_RL_4, |
| | 4325 | way[is_prop_set(a3bg4, "Abbiegespur_3B_G_4")]::Abbiegespur_3B_G_4, |
| | 4326 | way[is_prop_set(a3br4, "Abbiegespur_3B_R_4")]::Abbiegespur_3B_R_4, |
| | 4327 | way[is_prop_set(a3bl4, "Abbiegespur_3B_L_4")]::Abbiegespur_3B_L_4, |
| | 4328 | way[is_prop_set(a3blg4, "Abbiegespur_3B_LG_4")]::Abbiegespur_3B_LG_4, |
| | 4329 | way[is_prop_set(a3brg4, "Abbiegespur_3B_RG_4")]::Abbiegespur_3B_RG_4, |
| | 4330 | way[is_prop_set(a3brl4, "Abbiegespur_3B_RL_4")]::Abbiegespur_3B_RL_4, |
| | 4331 | way[is_prop_set(a4g4, "Abbiegespur_4_G_4")]::Abbiegespur_4_G_4, |
| | 4332 | way[is_prop_set(a4l4, "Abbiegespur_4_L_4")]::Abbiegespur_4_L_4, |
| | 4333 | way[is_prop_set(a4r4, "Abbiegespur_4_R_4")]::Abbiegespur_4_R_4, |
| | 4334 | way[is_prop_set(a4gr4, "Abbiegespur_4_GR_4")]::Abbiegespur_4_GR_4, |
| | 4335 | way[is_prop_set(a4gl4, "Abbiegespur_4_GL_4")]::Abbiegespur_4_GL_4, |
| | 4336 | way[is_prop_set(a4rl4, "Abbiegespur_4_RL_4")]::Abbiegespur_4_RL_4, |
| | 4337 | way[is_prop_set(a4bg4, "Abbiegespur_4B_G_4")]::Abbiegespur_4B_G_4, |
| | 4338 | way[is_prop_set(a4br4, "Abbiegespur_4B_R_4")]::Abbiegespur_4B_R_4, |
| | 4339 | way[is_prop_set(a4bl4, "Abbiegespur_4B_L_4")]::Abbiegespur_4B_L_4, |
| | 4340 | way[is_prop_set(a4blg4, "Abbiegespur_4B_LG_4")]::Abbiegespur_4B_LG_4, |
| | 4341 | way[is_prop_set(a4brg4, "Abbiegespur_4B_RG_4")]::Abbiegespur_4B_RG_4, |
| | 4342 | way[is_prop_set(a4brl4, "Abbiegespur_4B_RL_4")]::Abbiegespur_4B_RL_4, |
| | 4343 | way[is_prop_set(a5g4, "Abbiegespur_5_G_4")]::Abbiegespur_5_G_4, |
| | 4344 | way[is_prop_set(a5l4, "Abbiegespur_5_L_4")]::Abbiegespur_5_L_4, |
| | 4345 | way[is_prop_set(a5r4, "Abbiegespur_5_R_4")]::Abbiegespur_5_R_4, |
| | 4346 | way[is_prop_set(a5gr4, "Abbiegespur_5_GR_4")]::Abbiegespur_5_GR_4, |
| | 4347 | way[is_prop_set(a5gl4, "Abbiegespur_5_GL_4")]::Abbiegespur_5_GL_4, |
| | 4348 | way[is_prop_set(a5rl4, "Abbiegespur_5_RL_4")]::Abbiegespur_5_RL_4, |
| | 4349 | way[is_prop_set(a5bg4, "Abbiegespur_5B_G_4")]::Abbiegespur_5B_G_4, |
| | 4350 | way[is_prop_set(a5br4, "Abbiegespur_5B_R_4")]::Abbiegespur_5B_R_4, |
| | 4351 | way[is_prop_set(a5bl4, "Abbiegespur_5B_L_4")]::Abbiegespur_5B_L_4, |
| | 4352 | way[is_prop_set(a5blg4, "Abbiegespur_5B_LG_4")]::Abbiegespur_5B_LG_4, |
| | 4353 | way[is_prop_set(a5brg4, "Abbiegespur_5B_RG_4")]::Abbiegespur_5B_RG_4, |
| | 4354 | way[is_prop_set(a5brl4, "Abbiegespur_5B_RL_4")]::Abbiegespur_5B_RL_4, |
| | 4355 | way[is_prop_set(a6g4, "Abbiegespur_6_G_4")]::Abbiegespur_6_G_4, |
| | 4356 | way[is_prop_set(a6l4, "Abbiegespur_6_L_4")]::Abbiegespur_6_L_4, |
| | 4357 | way[is_prop_set(a6r4, "Abbiegespur_6_R_4")]::Abbiegespur_6_R_4, |
| | 4358 | way[is_prop_set(a6gr4, "Abbiegespur_6_GR_4")]::Abbiegespur_6_GR_4, |
| | 4359 | way[is_prop_set(a6gl4, "Abbiegespur_6_GL_4")]::Abbiegespur_6_GL_4, |
| | 4360 | way[is_prop_set(a6rl4, "Abbiegespur_6_RL_4")]::Abbiegespur_6_RL_4, |
| | 4361 | way[is_prop_set(a6bg4, "Abbiegespur_6B_G_4")]::Abbiegespur_6B_G_4, |
| | 4362 | way[is_prop_set(a6br4, "Abbiegespur_6B_R_4")]::Abbiegespur_6B_R_4, |
| | 4363 | way[is_prop_set(a6bl4, "Abbiegespur_6B_L_4")]::Abbiegespur_6B_L_4, |
| | 4364 | way[is_prop_set(a6blg4, "Abbiegespur_6B_LG_4")]::Abbiegespur_6B_LG_4, |
| | 4365 | way[is_prop_set(a6brg4, "Abbiegespur_6B_RG_4")]::Abbiegespur_6B_RG_4, |
| | 4366 | way[is_prop_set(a6brl4, "Abbiegespur_6B_RL_4")]::Abbiegespur_6B_RL_4, |
| | 4367 | way[is_prop_set(a7g4, "Abbiegespur_7_G_4")]::Abbiegespur_7_G_4, |
| | 4368 | way[is_prop_set(a7l4, "Abbiegespur_7_L_4")]::Abbiegespur_7_L_4, |
| | 4369 | way[is_prop_set(a7r4, "Abbiegespur_7_R_4")]::Abbiegespur_7_R_4, |
| | 4370 | way[is_prop_set(a7gr4, "Abbiegespur_7_GR_4")]::Abbiegespur_7_GR_4, |
| | 4371 | way[is_prop_set(a7gl4, "Abbiegespur_7_GL_4")]::Abbiegespur_7_GL_4, |
| | 4372 | way[is_prop_set(a7rl4, "Abbiegespur_7_RL_4")]::Abbiegespur_7_RL_4, |
| | 4373 | way[is_prop_set(a7bg4, "Abbiegespur_7B_G_4")]::Abbiegespur_7B_G_4, |
| | 4374 | way[is_prop_set(a7br4, "Abbiegespur_7B_R_4")]::Abbiegespur_7B_R_4, |
| | 4375 | way[is_prop_set(a7bl4, "Abbiegespur_7B_L_4")]::Abbiegespur_7B_L_4, |
| | 4376 | way[is_prop_set(a7blg4, "Abbiegespur_7B_LG_4")]::Abbiegespur_7B_LG_4, |
| | 4377 | way[is_prop_set(a7brg4, "Abbiegespur_7B_RG_4")]::Abbiegespur_7B_RG_4, |
| | 4378 | way[is_prop_set(a7brl4, "Abbiegespur_7B_RL_4")]::Abbiegespur_7B_RL_4, |
| | 4379 | way[is_prop_set(a8g4, "Abbiegespur_8_G_4")]::Abbiegespur_8_G_4, |
| | 4380 | way[is_prop_set(a8l4, "Abbiegespur_8_L_4")]::Abbiegespur_8_L_4, |
| | 4381 | way[is_prop_set(a8r4, "Abbiegespur_8_R_4")]::Abbiegespur_8_R_4, |
| | 4382 | way[is_prop_set(a8gr4, "Abbiegespur_8_GR_4")]::Abbiegespur_8_GR_4, |
| | 4383 | way[is_prop_set(a8gl4, "Abbiegespur_8_GL_4")]::Abbiegespur_8_GL_4, |
| | 4384 | way[is_prop_set(a8rl4, "Abbiegespur_8_RL_4")]::Abbiegespur_8_RL_4, |
| | 4385 | way[is_prop_set(a8bg4, "Abbiegespur_8B_G_4")]::Abbiegespur_8B_G_4, |
| | 4386 | way[is_prop_set(a8br4, "Abbiegespur_8B_R_4")]::Abbiegespur_8B_R_4, |
| | 4387 | way[is_prop_set(a8bl4, "Abbiegespur_8B_L_4")]::Abbiegespur_8B_L_4, |
| | 4388 | way[is_prop_set(a8blg4, "Abbiegespur_8B_LG_4")]::Abbiegespur_8B_LG_4, |
| | 4389 | way[is_prop_set(a8brg4, "Abbiegespur_8B_RG_4")]::Abbiegespur_8B_RG_4, |
| | 4390 | way[is_prop_set(a8brl4, "Abbiegespur_8B_RL_4")]::Abbiegespur_8B_RL_4 |
| | 4391 | { |
| | 4392 | offset: eval((prop(fw_spur_1)) -9); |
| | 4393 | } |
| | 4394 | |
| | 4395 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 4396 | /* */ |
| | 4397 | /* Konstanten für Linie 5 */ |
| | 4398 | /* */ |
| | 4399 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 4400 | way[is_prop_set(a1g5, "Abbiegespur_1_G_5")]::Abbiegespur_1_G_5, |
| | 4401 | way[is_prop_set(a1r5, "Abbiegespur_1_R_5")]::Abbiegespur_1_R_5, |
| | 4402 | way[is_prop_set(a1l5, "Abbiegespur_1_L_5")]::Abbiegespur_1_L_5, |
| | 4403 | way[is_prop_set(a1lg5, "Abbiegespur_1_LG_5")]::Abbiegespur_1_LG_5, |
| | 4404 | way[is_prop_set(a1rg5, "Abbiegespur_1_RG_5")]::Abbiegespur_1_RG_5, |
| | 4405 | way[is_prop_set(a1rl5, "Abbiegespur_1_RL_5")]::Abbiegespur_1_RL_5, |
| | 4406 | way[is_prop_set(a1bg5, "Abbiegespur_1B_G_5")]::Abbiegespur_1B_G_5, |
| | 4407 | way[is_prop_set(a1br5, "Abbiegespur_1B_R_5")]::Abbiegespur_1B_R_5, |
| | 4408 | way[is_prop_set(a1bl5, "Abbiegespur_1B_L_5")]::Abbiegespur_1B_L_5, |
| | 4409 | way[is_prop_set(a1blg5, "Abbiegespur_1B_LG_5")]::Abbiegespur_1B_LG_5, |
| | 4410 | way[is_prop_set(a1brg5, "Abbiegespur_1B_RG_5")]::Abbiegespur_1B_RG_5, |
| | 4411 | way[is_prop_set(a1brl5, "Abbiegespur_1B_RL_5")]::Abbiegespur_1B_RL_5, |
| | 4412 | way[is_prop_set(a2g5, "Abbiegespur_2_G_5")]::Abbiegespur_2_G_5, |
| | 4413 | way[is_prop_set(a2l5, "Abbiegespur_2_L_5")]::Abbiegespur_2_L_5, |
| | 4414 | way[is_prop_set(a2r5, "Abbiegespur_2_R_5")]::Abbiegespur_2_R_5, |
| | 4415 | way[is_prop_set(a2gr5, "Abbiegespur_2_GR_5")]::Abbiegespur_2_GR_5, |
| | 4416 | way[is_prop_set(a2gl5, "Abbiegespur_2_GL_5")]::Abbiegespur_2_GL_5, |
| | 4417 | way[is_prop_set(a2rl5, "Abbiegespur_2_RL_5")]::Abbiegespur_2_RL_5, |
| | 4418 | way[is_prop_set(a2bg5, "Abbiegespur_2B_G_5")]::Abbiegespur_2B_G_5, |
| | 4419 | way[is_prop_set(a2br5, "Abbiegespur_2B_R_5")]::Abbiegespur_2B_R_5, |
| | 4420 | way[is_prop_set(a2bl5, "Abbiegespur_2B_L_5")]::Abbiegespur_2B_L_5, |
| | 4421 | way[is_prop_set(a2blg5, "Abbiegespur_2B_LG_5")]::Abbiegespur_2B_LG_5, |
| | 4422 | way[is_prop_set(a2brg5, "Abbiegespur_2B_RG_5")]::Abbiegespur_2B_RG_5, |
| | 4423 | way[is_prop_set(a2brl5, "Abbiegespur_2B_RL_5")]::Abbiegespur_2B_RL_5, |
| | 4424 | way[is_prop_set(a3g5, "Abbiegespur_3_G_5")]::Abbiegespur_3_G_5, |
| | 4425 | way[is_prop_set(a3l5, "Abbiegespur_3_L_5")]::Abbiegespur_3_L_5, |
| | 4426 | way[is_prop_set(a3r5, "Abbiegespur_3_R_5")]::Abbiegespur_3_R_5, |
| | 4427 | way[is_prop_set(a3gr5, "Abbiegespur_3_GR_5")]::Abbiegespur_3_GR_5, |
| | 4428 | way[is_prop_set(a3gl5, "Abbiegespur_3_GL_5")]::Abbiegespur_3_GL_5, |
| | 4429 | way[is_prop_set(a3rl5, "Abbiegespur_3_RL_5")]::Abbiegespur_3_RL_5, |
| | 4430 | way[is_prop_set(a3bg5, "Abbiegespur_3B_G_5")]::Abbiegespur_3B_G_5, |
| | 4431 | way[is_prop_set(a3br5, "Abbiegespur_3B_R_5")]::Abbiegespur_3B_R_5, |
| | 4432 | way[is_prop_set(a3bl5, "Abbiegespur_3B_L_5")]::Abbiegespur_3B_L_5, |
| | 4433 | way[is_prop_set(a3blg5, "Abbiegespur_3B_LG_5")]::Abbiegespur_3B_LG_5, |
| | 4434 | way[is_prop_set(a3brg5, "Abbiegespur_3B_RG_5")]::Abbiegespur_3B_RG_5, |
| | 4435 | way[is_prop_set(a3brl5, "Abbiegespur_3B_RL_5")]::Abbiegespur_3B_RL_5, |
| | 4436 | way[is_prop_set(a4g5, "Abbiegespur_4_G_5")]::Abbiegespur_4_G_5, |
| | 4437 | way[is_prop_set(a4l5, "Abbiegespur_4_L_5")]::Abbiegespur_4_L_5, |
| | 4438 | way[is_prop_set(a4r5, "Abbiegespur_4_R_5")]::Abbiegespur_4_R_5, |
| | 4439 | way[is_prop_set(a4gr5, "Abbiegespur_4_GR_5")]::Abbiegespur_4_GR_5, |
| | 4440 | way[is_prop_set(a4gl5, "Abbiegespur_4_GL_5")]::Abbiegespur_4_GL_5, |
| | 4441 | way[is_prop_set(a4rl5, "Abbiegespur_4_RL_5")]::Abbiegespur_4_RL_5, |
| | 4442 | way[is_prop_set(a4bg5, "Abbiegespur_4B_G_5")]::Abbiegespur_4B_G_5, |
| | 4443 | way[is_prop_set(a4br5, "Abbiegespur_4B_R_5")]::Abbiegespur_4B_R_5, |
| | 4444 | way[is_prop_set(a4bl5, "Abbiegespur_4B_L_5")]::Abbiegespur_4B_L_5, |
| | 4445 | way[is_prop_set(a4blg5, "Abbiegespur_4B_LG_5")]::Abbiegespur_4B_LG_5, |
| | 4446 | way[is_prop_set(a4brg5, "Abbiegespur_4B_RG_5")]::Abbiegespur_4B_RG_5, |
| | 4447 | way[is_prop_set(a4brl5, "Abbiegespur_4B_RL_5")]::Abbiegespur_4B_RL_5, |
| | 4448 | way[is_prop_set(a5g5, "Abbiegespur_5_G_5")]::Abbiegespur_5_G_5, |
| | 4449 | way[is_prop_set(a5l5, "Abbiegespur_5_L_5")]::Abbiegespur_5_L_5, |
| | 4450 | way[is_prop_set(a5r5, "Abbiegespur_5_R_5")]::Abbiegespur_5_R_5, |
| | 4451 | way[is_prop_set(a5gr5, "Abbiegespur_5_GR_5")]::Abbiegespur_5_GR_5, |
| | 4452 | way[is_prop_set(a5gl5, "Abbiegespur_5_GL_5")]::Abbiegespur_5_GL_5, |
| | 4453 | way[is_prop_set(a5rl5, "Abbiegespur_5_RL_5")]::Abbiegespur_5_RL_5, |
| | 4454 | way[is_prop_set(a5bg5, "Abbiegespur_5B_G_5")]::Abbiegespur_5B_G_5, |
| | 4455 | way[is_prop_set(a5br5, "Abbiegespur_5B_R_5")]::Abbiegespur_5B_R_5, |
| | 4456 | way[is_prop_set(a5bl5, "Abbiegespur_5B_L_5")]::Abbiegespur_5B_L_5, |
| | 4457 | way[is_prop_set(a5blg5, "Abbiegespur_5B_LG_5")]::Abbiegespur_5B_LG_5, |
| | 4458 | way[is_prop_set(a5brg5, "Abbiegespur_5B_RG_5")]::Abbiegespur_5B_RG_5, |
| | 4459 | way[is_prop_set(a5brl5, "Abbiegespur_5B_RL_5")]::Abbiegespur_5B_RL_5, |
| | 4460 | way[is_prop_set(a6g5, "Abbiegespur_6_G_5")]::Abbiegespur_6_G_5, |
| | 4461 | way[is_prop_set(a6l5, "Abbiegespur_6_L_5")]::Abbiegespur_6_L_5, |
| | 4462 | way[is_prop_set(a6r5, "Abbiegespur_6_R_5")]::Abbiegespur_6_R_5, |
| | 4463 | way[is_prop_set(a6gr5, "Abbiegespur_6_GR_5")]::Abbiegespur_6_GR_5, |
| | 4464 | way[is_prop_set(a6gl5, "Abbiegespur_6_GL_5")]::Abbiegespur_6_GL_5, |
| | 4465 | way[is_prop_set(a6rl5, "Abbiegespur_6_RL_5")]::Abbiegespur_6_RL_5, |
| | 4466 | way[is_prop_set(a6bg5, "Abbiegespur_6B_G_5")]::Abbiegespur_6B_G_5, |
| | 4467 | way[is_prop_set(a6br5, "Abbiegespur_6B_R_5")]::Abbiegespur_6B_R_5, |
| | 4468 | way[is_prop_set(a6bl5, "Abbiegespur_6B_L_5")]::Abbiegespur_6B_L_5, |
| | 4469 | way[is_prop_set(a6blg5, "Abbiegespur_6B_LG_5")]::Abbiegespur_6B_LG_5, |
| | 4470 | way[is_prop_set(a6brg5, "Abbiegespur_6B_RG_5")]::Abbiegespur_6B_RG_5, |
| | 4471 | way[is_prop_set(a6brl5, "Abbiegespur_6B_RL_5")]::Abbiegespur_6B_RL_5, |
| | 4472 | way[is_prop_set(a7g5, "Abbiegespur_7_G_5")]::Abbiegespur_7_G_5, |
| | 4473 | way[is_prop_set(a7l5, "Abbiegespur_7_L_5")]::Abbiegespur_7_L_5, |
| | 4474 | way[is_prop_set(a7r5, "Abbiegespur_7_R_5")]::Abbiegespur_7_R_5, |
| | 4475 | way[is_prop_set(a7gr5, "Abbiegespur_7_GR_5")]::Abbiegespur_7_GR_5, |
| | 4476 | way[is_prop_set(a7gl5, "Abbiegespur_7_GL_5")]::Abbiegespur_7_GL_5, |
| | 4477 | way[is_prop_set(a7rl5, "Abbiegespur_7_RL_5")]::Abbiegespur_7_RL_5, |
| | 4478 | way[is_prop_set(a7bg5, "Abbiegespur_7B_G_5")]::Abbiegespur_7B_G_5, |
| | 4479 | way[is_prop_set(a7br5, "Abbiegespur_7B_R_5")]::Abbiegespur_7B_R_5, |
| | 4480 | way[is_prop_set(a7bl5, "Abbiegespur_7B_L_5")]::Abbiegespur_7B_L_5, |
| | 4481 | way[is_prop_set(a7blg5, "Abbiegespur_7B_LG_5")]::Abbiegespur_7B_LG_5, |
| | 4482 | way[is_prop_set(a7brg5, "Abbiegespur_7B_RG_5")]::Abbiegespur_7B_RG_5, |
| | 4483 | way[is_prop_set(a7brl5, "Abbiegespur_7B_RL_5")]::Abbiegespur_7B_RL_5, |
| | 4484 | way[is_prop_set(a8g5, "Abbiegespur_8_G_5")]::Abbiegespur_8_G_5, |
| | 4485 | way[is_prop_set(a8l5, "Abbiegespur_8_L_5")]::Abbiegespur_8_L_5, |
| | 4486 | way[is_prop_set(a8r5, "Abbiegespur_8_R_5")]::Abbiegespur_8_R_5, |
| | 4487 | way[is_prop_set(a8gr5, "Abbiegespur_8_GR_5")]::Abbiegespur_8_GR_5, |
| | 4488 | way[is_prop_set(a8gl5, "Abbiegespur_8_GL_5")]::Abbiegespur_8_GL_5, |
| | 4489 | way[is_prop_set(a8rl5, "Abbiegespur_8_RL_5")]::Abbiegespur_8_RL_5, |
| | 4490 | way[is_prop_set(a8bg5, "Abbiegespur_8B_G_5")]::Abbiegespur_8B_G_5, |
| | 4491 | way[is_prop_set(a8br5, "Abbiegespur_8B_R_5")]::Abbiegespur_8B_R_5, |
| | 4492 | way[is_prop_set(a8bl5, "Abbiegespur_8B_L_5")]::Abbiegespur_8B_L_5, |
| | 4493 | way[is_prop_set(a8blg5, "Abbiegespur_8B_LG_5")]::Abbiegespur_8B_LG_5, |
| | 4494 | way[is_prop_set(a8brg5, "Abbiegespur_8B_RG_5")]::Abbiegespur_8B_RG_5, |
| | 4495 | way[is_prop_set(a8brl5, "Abbiegespur_8B_RL_5")]::Abbiegespur_8B_RL_5 |
| | 4496 | { |
| | 4497 | offset: eval((prop(fw_spur_1)) -11); |
| | 4498 | } |
| | 4499 | |
| | 4500 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 4501 | /* */ |
| | 4502 | /* Konstanten für Linie 6 */ |
| | 4503 | /* */ |
| | 4504 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 4505 | way[is_prop_set(a1g6, "Abbiegespur_1_G_6")]::Abbiegespur_1_G_6, |
| | 4506 | way[is_prop_set(a1r6, "Abbiegespur_1_R_6")]::Abbiegespur_1_R_6, |
| | 4507 | way[is_prop_set(a1l6, "Abbiegespur_1_L_6")]::Abbiegespur_1_L_6, |
| | 4508 | way[is_prop_set(a1lg6, "Abbiegespur_1_LG_6")]::Abbiegespur_1_LG_6, |
| | 4509 | way[is_prop_set(a1rg6, "Abbiegespur_1_RG_6")]::Abbiegespur_1_RG_6, |
| | 4510 | way[is_prop_set(a1rl6, "Abbiegespur_1_RL_6")]::Abbiegespur_1_RL_6, |
| | 4511 | way[is_prop_set(a1bg6, "Abbiegespur_1B_G_6")]::Abbiegespur_1B_G_6, |
| | 4512 | way[is_prop_set(a1br6, "Abbiegespur_1B_R_6")]::Abbiegespur_1B_R_6, |
| | 4513 | way[is_prop_set(a1bl6, "Abbiegespur_1B_L_6")]::Abbiegespur_1B_L_6, |
| | 4514 | way[is_prop_set(a1blg6, "Abbiegespur_1B_LG_6")]::Abbiegespur_1B_LG_6, |
| | 4515 | way[is_prop_set(a1brg6, "Abbiegespur_1B_RG_6")]::Abbiegespur_1B_RG_6, |
| | 4516 | way[is_prop_set(a1brl6, "Abbiegespur_1B_RL_6")]::Abbiegespur_1B_RL_6, |
| | 4517 | way[is_prop_set(a2g6, "Abbiegespur_2_G_6")]::Abbiegespur_2_G_6, |
| | 4518 | way[is_prop_set(a2l6, "Abbiegespur_2_L_6")]::Abbiegespur_2_L_6, |
| | 4519 | way[is_prop_set(a2r6, "Abbiegespur_2_R_6")]::Abbiegespur_2_R_6, |
| | 4520 | way[is_prop_set(a2gr6, "Abbiegespur_2_GR_6")]::Abbiegespur_2_GR_6, |
| | 4521 | way[is_prop_set(a2gl6, "Abbiegespur_2_GL_6")]::Abbiegespur_2_GL_6, |
| | 4522 | way[is_prop_set(a2rl6, "Abbiegespur_2_RL_6")]::Abbiegespur_2_RL_6, |
| | 4523 | way[is_prop_set(a2bg6, "Abbiegespur_2B_G_6")]::Abbiegespur_2B_G_6, |
| | 4524 | way[is_prop_set(a2br6, "Abbiegespur_2B_R_6")]::Abbiegespur_2B_R_6, |
| | 4525 | way[is_prop_set(a2bl6, "Abbiegespur_2B_L_6")]::Abbiegespur_2B_L_6, |
| | 4526 | way[is_prop_set(a2blg6, "Abbiegespur_2B_LG_6")]::Abbiegespur_2B_LG_6, |
| | 4527 | way[is_prop_set(a2brg6, "Abbiegespur_2B_RG_6")]::Abbiegespur_2B_RG_6, |
| | 4528 | way[is_prop_set(a2brl6, "Abbiegespur_2B_RL_6")]::Abbiegespur_2B_RL_6, |
| | 4529 | way[is_prop_set(a3g6, "Abbiegespur_3_G_6")]::Abbiegespur_3_G_6, |
| | 4530 | way[is_prop_set(a3l6, "Abbiegespur_3_L_6")]::Abbiegespur_3_L_6, |
| | 4531 | way[is_prop_set(a3r6, "Abbiegespur_3_R_6")]::Abbiegespur_3_R_6, |
| | 4532 | way[is_prop_set(a3gr6, "Abbiegespur_3_GR_6")]::Abbiegespur_3_GR_6, |
| | 4533 | way[is_prop_set(a3gl6, "Abbiegespur_3_GL_6")]::Abbiegespur_3_GL_6, |
| | 4534 | way[is_prop_set(a3rl6, "Abbiegespur_3_RL_6")]::Abbiegespur_3_RL_6, |
| | 4535 | way[is_prop_set(a3bg6, "Abbiegespur_3B_G_6")]::Abbiegespur_3B_G_6, |
| | 4536 | way[is_prop_set(a3br6, "Abbiegespur_3B_R_6")]::Abbiegespur_3B_R_6, |
| | 4537 | way[is_prop_set(a3bl6, "Abbiegespur_3B_L_6")]::Abbiegespur_3B_L_6, |
| | 4538 | way[is_prop_set(a3blg6, "Abbiegespur_3B_LG_6")]::Abbiegespur_3B_LG_6, |
| | 4539 | way[is_prop_set(a3brg6, "Abbiegespur_3B_RG_6")]::Abbiegespur_3B_RG_6, |
| | 4540 | way[is_prop_set(a3brl6, "Abbiegespur_3B_RL_6")]::Abbiegespur_3B_RL_6, |
| | 4541 | way[is_prop_set(a4g6, "Abbiegespur_4_G_6")]::Abbiegespur_4_G_6, |
| | 4542 | way[is_prop_set(a4l6, "Abbiegespur_4_L_6")]::Abbiegespur_4_L_6, |
| | 4543 | way[is_prop_set(a4r6, "Abbiegespur_4_R_6")]::Abbiegespur_4_R_6, |
| | 4544 | way[is_prop_set(a4gr6, "Abbiegespur_4_GR_6")]::Abbiegespur_4_GR_6, |
| | 4545 | way[is_prop_set(a4gl6, "Abbiegespur_4_GL_6")]::Abbiegespur_4_GL_6, |
| | 4546 | way[is_prop_set(a4rl6, "Abbiegespur_4_RL_6")]::Abbiegespur_4_RL_6, |
| | 4547 | way[is_prop_set(a4bg6, "Abbiegespur_4B_G_6")]::Abbiegespur_4B_G_6, |
| | 4548 | way[is_prop_set(a4br6, "Abbiegespur_4B_R_6")]::Abbiegespur_4B_R_6, |
| | 4549 | way[is_prop_set(a4bl6, "Abbiegespur_4B_L_6")]::Abbiegespur_4B_L_6, |
| | 4550 | way[is_prop_set(a4blg6, "Abbiegespur_4B_LG_6")]::Abbiegespur_4B_LG_6, |
| | 4551 | way[is_prop_set(a4brg6, "Abbiegespur_4B_RG_6")]::Abbiegespur_4B_RG_6, |
| | 4552 | way[is_prop_set(a4brl6, "Abbiegespur_4B_RL_6")]::Abbiegespur_4B_RL_6, |
| | 4553 | way[is_prop_set(a5g6, "Abbiegespur_5_G_6")]::Abbiegespur_5_G_6, |
| | 4554 | way[is_prop_set(a5l6, "Abbiegespur_5_L_6")]::Abbiegespur_5_L_6, |
| | 4555 | way[is_prop_set(a5r6, "Abbiegespur_5_R_6")]::Abbiegespur_5_R_6, |
| | 4556 | way[is_prop_set(a5gr6, "Abbiegespur_5_GR_6")]::Abbiegespur_5_GR_6, |
| | 4557 | way[is_prop_set(a5gl6, "Abbiegespur_5_GL_6")]::Abbiegespur_5_GL_6, |
| | 4558 | way[is_prop_set(a5rl6, "Abbiegespur_5_RL_6")]::Abbiegespur_5_RL_6, |
| | 4559 | way[is_prop_set(a5bg6, "Abbiegespur_5B_G_6")]::Abbiegespur_5B_G_6, |
| | 4560 | way[is_prop_set(a5br6, "Abbiegespur_5B_R_6")]::Abbiegespur_5B_R_6, |
| | 4561 | way[is_prop_set(a5bl6, "Abbiegespur_5B_L_6")]::Abbiegespur_5B_L_6, |
| | 4562 | way[is_prop_set(a5blg6, "Abbiegespur_5B_LG_6")]::Abbiegespur_5B_LG_6, |
| | 4563 | way[is_prop_set(a5brg6, "Abbiegespur_5B_RG_6")]::Abbiegespur_5B_RG_6, |
| | 4564 | way[is_prop_set(a5brl6, "Abbiegespur_5B_RL_6")]::Abbiegespur_5B_RL_6, |
| | 4565 | way[is_prop_set(a6g6, "Abbiegespur_6_G_6")]::Abbiegespur_6_G_6, |
| | 4566 | way[is_prop_set(a6l6, "Abbiegespur_6_L_6")]::Abbiegespur_6_L_6, |
| | 4567 | way[is_prop_set(a6r6, "Abbiegespur_6_R_6")]::Abbiegespur_6_R_6, |
| | 4568 | way[is_prop_set(a6gr6, "Abbiegespur_6_GR_6")]::Abbiegespur_6_GR_6, |
| | 4569 | way[is_prop_set(a6gl6, "Abbiegespur_6_GL_6")]::Abbiegespur_6_GL_6, |
| | 4570 | way[is_prop_set(a6rl6, "Abbiegespur_6_RL_6")]::Abbiegespur_6_RL_6, |
| | 4571 | way[is_prop_set(a6bg6, "Abbiegespur_6B_G_6")]::Abbiegespur_6B_G_6, |
| | 4572 | way[is_prop_set(a6br6, "Abbiegespur_6B_R_6")]::Abbiegespur_6B_R_6, |
| | 4573 | way[is_prop_set(a6bl6, "Abbiegespur_6B_L_6")]::Abbiegespur_6B_L_6, |
| | 4574 | way[is_prop_set(a6blg6, "Abbiegespur_6B_LG_6")]::Abbiegespur_6B_LG_6, |
| | 4575 | way[is_prop_set(a6brg6, "Abbiegespur_6B_RG_6")]::Abbiegespur_6B_RG_6, |
| | 4576 | way[is_prop_set(a6brl6, "Abbiegespur_6B_RL_6")]::Abbiegespur_6B_RL_6, |
| | 4577 | way[is_prop_set(a7g6, "Abbiegespur_7_G_6")]::Abbiegespur_7_G_6, |
| | 4578 | way[is_prop_set(a7l6, "Abbiegespur_7_L_6")]::Abbiegespur_7_L_6, |
| | 4579 | way[is_prop_set(a7r6, "Abbiegespur_7_R_6")]::Abbiegespur_7_R_6, |
| | 4580 | way[is_prop_set(a7gr6, "Abbiegespur_7_GR_6")]::Abbiegespur_7_GR_6, |
| | 4581 | way[is_prop_set(a7gl6, "Abbiegespur_7_GL_6")]::Abbiegespur_7_GL_6, |
| | 4582 | way[is_prop_set(a7rl6, "Abbiegespur_7_RL_6")]::Abbiegespur_7_RL_6, |
| | 4583 | way[is_prop_set(a7bg6, "Abbiegespur_7B_G_6")]::Abbiegespur_7B_G_6, |
| | 4584 | way[is_prop_set(a7br6, "Abbiegespur_7B_R_6")]::Abbiegespur_7B_R_6, |
| | 4585 | way[is_prop_set(a7bl6, "Abbiegespur_7B_L_6")]::Abbiegespur_7B_L_6, |
| | 4586 | way[is_prop_set(a7blg6, "Abbiegespur_7B_LG_6")]::Abbiegespur_7B_LG_6, |
| | 4587 | way[is_prop_set(a7brg6, "Abbiegespur_7B_RG_6")]::Abbiegespur_7B_RG_6, |
| | 4588 | way[is_prop_set(a7brl6, "Abbiegespur_7B_RL_6")]::Abbiegespur_7B_RL_6, |
| | 4589 | way[is_prop_set(a8g6, "Abbiegespur_8_G_6")]::Abbiegespur_8_G_6, |
| | 4590 | way[is_prop_set(a8l6, "Abbiegespur_8_L_6")]::Abbiegespur_8_L_6, |
| | 4591 | way[is_prop_set(a8r6, "Abbiegespur_8_R_6")]::Abbiegespur_8_R_6, |
| | 4592 | way[is_prop_set(a8gr6, "Abbiegespur_8_GR_6")]::Abbiegespur_8_GR_6, |
| | 4593 | way[is_prop_set(a8gl6, "Abbiegespur_8_GL_6")]::Abbiegespur_8_GL_6, |
| | 4594 | way[is_prop_set(a8rl6, "Abbiegespur_8_RL_6")]::Abbiegespur_8_RL_6, |
| | 4595 | way[is_prop_set(a8bg6, "Abbiegespur_8B_G_6")]::Abbiegespur_8B_G_6, |
| | 4596 | way[is_prop_set(a8br6, "Abbiegespur_8B_R_6")]::Abbiegespur_8B_R_6, |
| | 4597 | way[is_prop_set(a8bl6, "Abbiegespur_8B_L_6")]::Abbiegespur_8B_L_6, |
| | 4598 | way[is_prop_set(a8blg6, "Abbiegespur_8B_LG_6")]::Abbiegespur_8B_LG_6, |
| | 4599 | way[is_prop_set(a8brg6, "Abbiegespur_8B_RG_6")]::Abbiegespur_8B_RG_6, |
| | 4600 | way[is_prop_set(a8brl6, "Abbiegespur_8B_RL_6")]::Abbiegespur_8B_RL_6 |
| | 4601 | { |
| | 4602 | offset: eval((prop(fw_spur_1)) -13); |
| | 4603 | } |
| | 4604 | |
| | 4605 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 4606 | /* */ |
| | 4607 | /* Konstanten für Linie 7 */ |
| | 4608 | /* */ |
| | 4609 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 4610 | way[is_prop_set(a1g7, "Abbiegespur_1_G_7")]::Abbiegespur_1_G_7, |
| | 4611 | way[is_prop_set(a1r7, "Abbiegespur_1_R_7")]::Abbiegespur_1_R_7, |
| | 4612 | way[is_prop_set(a1l7, "Abbiegespur_1_L_7")]::Abbiegespur_1_L_7, |
| | 4613 | way[is_prop_set(a1lg7, "Abbiegespur_1_LG_7")]::Abbiegespur_1_LG_7, |
| | 4614 | way[is_prop_set(a1rg7, "Abbiegespur_1_RG_7")]::Abbiegespur_1_RG_7, |
| | 4615 | way[is_prop_set(a1rl7, "Abbiegespur_1_RL_7")]::Abbiegespur_1_RL_7, |
| | 4616 | way[is_prop_set(a1bg7, "Abbiegespur_1B_G_7")]::Abbiegespur_1B_G_7, |
| | 4617 | way[is_prop_set(a1br7, "Abbiegespur_1B_R_7")]::Abbiegespur_1B_R_7, |
| | 4618 | way[is_prop_set(a1bl7, "Abbiegespur_1B_L_7")]::Abbiegespur_1B_L_7, |
| | 4619 | way[is_prop_set(a1blg7, "Abbiegespur_1B_LG_7")]::Abbiegespur_1B_LG_7, |
| | 4620 | way[is_prop_set(a1brg7, "Abbiegespur_1B_RG_7")]::Abbiegespur_1B_RG_7, |
| | 4621 | way[is_prop_set(a1brl7, "Abbiegespur_1B_RL_7")]::Abbiegespur_1B_RL_7, |
| | 4622 | way[is_prop_set(a2g7, "Abbiegespur_2_G_7")]::Abbiegespur_2_G_7, |
| | 4623 | way[is_prop_set(a2l7, "Abbiegespur_2_L_7")]::Abbiegespur_2_L_7, |
| | 4624 | way[is_prop_set(a2r7, "Abbiegespur_2_R_7")]::Abbiegespur_2_R_7, |
| | 4625 | way[is_prop_set(a2gr7, "Abbiegespur_2_GR_7")]::Abbiegespur_2_GR_7, |
| | 4626 | way[is_prop_set(a2gl7, "Abbiegespur_2_GL_7")]::Abbiegespur_2_GL_7, |
| | 4627 | way[is_prop_set(a2rl7, "Abbiegespur_2_RL_7")]::Abbiegespur_2_RL_7, |
| | 4628 | way[is_prop_set(a2bg7, "Abbiegespur_2B_G_7")]::Abbiegespur_2B_G_7, |
| | 4629 | way[is_prop_set(a2br7, "Abbiegespur_2B_R_7")]::Abbiegespur_2B_R_7, |
| | 4630 | way[is_prop_set(a2bl7, "Abbiegespur_2B_L_7")]::Abbiegespur_2B_L_7, |
| | 4631 | way[is_prop_set(a2blg7, "Abbiegespur_2B_LG_7")]::Abbiegespur_2B_LG_7, |
| | 4632 | way[is_prop_set(a2brg7, "Abbiegespur_2B_RG_7")]::Abbiegespur_2B_RG_7, |
| | 4633 | way[is_prop_set(a2brl7, "Abbiegespur_2B_RL_7")]::Abbiegespur_2B_RL_7, |
| | 4634 | way[is_prop_set(a3g7, "Abbiegespur_3_G_7")]::Abbiegespur_3_G_7, |
| | 4635 | way[is_prop_set(a3l7, "Abbiegespur_3_L_7")]::Abbiegespur_3_L_7, |
| | 4636 | way[is_prop_set(a3r7, "Abbiegespur_3_R_7")]::Abbiegespur_3_R_7, |
| | 4637 | way[is_prop_set(a3gr7, "Abbiegespur_3_GR_7")]::Abbiegespur_3_GR_7, |
| | 4638 | way[is_prop_set(a3gl7, "Abbiegespur_3_GL_7")]::Abbiegespur_3_GL_7, |
| | 4639 | way[is_prop_set(a3rl7, "Abbiegespur_3_RL_7")]::Abbiegespur_3_RL_7, |
| | 4640 | way[is_prop_set(a3bg7, "Abbiegespur_3B_G_7")]::Abbiegespur_3B_G_7, |
| | 4641 | way[is_prop_set(a3br7, "Abbiegespur_3B_R_7")]::Abbiegespur_3B_R_7, |
| | 4642 | way[is_prop_set(a3bl7, "Abbiegespur_3B_L_7")]::Abbiegespur_3B_L_7, |
| | 4643 | way[is_prop_set(a3blg7, "Abbiegespur_3B_LG_7")]::Abbiegespur_3B_LG_7, |
| | 4644 | way[is_prop_set(a3brg7, "Abbiegespur_3B_RG_7")]::Abbiegespur_3B_RG_7, |
| | 4645 | way[is_prop_set(a3brl7, "Abbiegespur_3B_RL_7")]::Abbiegespur_3B_RL_7, |
| | 4646 | way[is_prop_set(a4g7, "Abbiegespur_4_G_7")]::Abbiegespur_4_G_7, |
| | 4647 | way[is_prop_set(a4l7, "Abbiegespur_4_L_7")]::Abbiegespur_4_L_7, |
| | 4648 | way[is_prop_set(a4r7, "Abbiegespur_4_R_7")]::Abbiegespur_4_R_7, |
| | 4649 | way[is_prop_set(a4gr7, "Abbiegespur_4_GR_7")]::Abbiegespur_4_GR_7, |
| | 4650 | way[is_prop_set(a4gl7, "Abbiegespur_4_GL_7")]::Abbiegespur_4_GL_7, |
| | 4651 | way[is_prop_set(a4rl7, "Abbiegespur_4_RL_7")]::Abbiegespur_4_RL_7, |
| | 4652 | way[is_prop_set(a4bg7, "Abbiegespur_4B_G_7")]::Abbiegespur_4B_G_7, |
| | 4653 | way[is_prop_set(a4br7, "Abbiegespur_4B_R_7")]::Abbiegespur_4B_R_7, |
| | 4654 | way[is_prop_set(a4bl7, "Abbiegespur_4B_L_7")]::Abbiegespur_4B_L_7, |
| | 4655 | way[is_prop_set(a4blg7, "Abbiegespur_4B_LG_7")]::Abbiegespur_4B_LG_7, |
| | 4656 | way[is_prop_set(a4brg7, "Abbiegespur_4B_RG_7")]::Abbiegespur_4B_RG_7, |
| | 4657 | way[is_prop_set(a4brl7, "Abbiegespur_4B_RL_7")]::Abbiegespur_4B_RL_7, |
| | 4658 | way[is_prop_set(a5g7, "Abbiegespur_5_G_7")]::Abbiegespur_5_G_7, |
| | 4659 | way[is_prop_set(a5l7, "Abbiegespur_5_L_7")]::Abbiegespur_5_L_7, |
| | 4660 | way[is_prop_set(a5r7, "Abbiegespur_5_R_7")]::Abbiegespur_5_R_7, |
| | 4661 | way[is_prop_set(a5gr7, "Abbiegespur_5_GR_7")]::Abbiegespur_5_GR_7, |
| | 4662 | way[is_prop_set(a5gl7, "Abbiegespur_5_GL_7")]::Abbiegespur_5_GL_7, |
| | 4663 | way[is_prop_set(a5rl7, "Abbiegespur_5_RL_7")]::Abbiegespur_5_RL_7, |
| | 4664 | way[is_prop_set(a5bg7, "Abbiegespur_5B_G_7")]::Abbiegespur_5B_G_7, |
| | 4665 | way[is_prop_set(a5br7, "Abbiegespur_5B_R_7")]::Abbiegespur_5B_R_7, |
| | 4666 | way[is_prop_set(a5bl7, "Abbiegespur_5B_L_7")]::Abbiegespur_5B_L_7, |
| | 4667 | way[is_prop_set(a5blg7, "Abbiegespur_5B_LG_7")]::Abbiegespur_5B_LG_7, |
| | 4668 | way[is_prop_set(a5brg7, "Abbiegespur_5B_RG_7")]::Abbiegespur_5B_RG_7, |
| | 4669 | way[is_prop_set(a5brl7, "Abbiegespur_5B_RL_7")]::Abbiegespur_5B_RL_7, |
| | 4670 | way[is_prop_set(a6g7, "Abbiegespur_6_G_7")]::Abbiegespur_6_G_7, |
| | 4671 | way[is_prop_set(a6l7, "Abbiegespur_6_L_7")]::Abbiegespur_6_L_7, |
| | 4672 | way[is_prop_set(a6r7, "Abbiegespur_6_R_7")]::Abbiegespur_6_R_7, |
| | 4673 | way[is_prop_set(a6gr7, "Abbiegespur_6_GR_7")]::Abbiegespur_6_GR_7, |
| | 4674 | way[is_prop_set(a6gl7, "Abbiegespur_6_GL_7")]::Abbiegespur_6_GL_7, |
| | 4675 | way[is_prop_set(a6rl7, "Abbiegespur_6_RL_7")]::Abbiegespur_6_RL_7, |
| | 4676 | way[is_prop_set(a6bg7, "Abbiegespur_6B_G_7")]::Abbiegespur_6B_G_7, |
| | 4677 | way[is_prop_set(a6br7, "Abbiegespur_6B_R_7")]::Abbiegespur_6B_R_7, |
| | 4678 | way[is_prop_set(a6bl7, "Abbiegespur_6B_L_7")]::Abbiegespur_6B_L_7, |
| | 4679 | way[is_prop_set(a6blg7, "Abbiegespur_6B_LG_7")]::Abbiegespur_6B_LG_7, |
| | 4680 | way[is_prop_set(a6brg7, "Abbiegespur_6B_RG_7")]::Abbiegespur_6B_RG_7, |
| | 4681 | way[is_prop_set(a6brl7, "Abbiegespur_6B_RL_7")]::Abbiegespur_6B_RL_7, |
| | 4682 | way[is_prop_set(a7g7, "Abbiegespur_7_G_7")]::Abbiegespur_7_G_7, |
| | 4683 | way[is_prop_set(a7l7, "Abbiegespur_7_L_7")]::Abbiegespur_7_L_7, |
| | 4684 | way[is_prop_set(a7r7, "Abbiegespur_7_R_7")]::Abbiegespur_7_R_7, |
| | 4685 | way[is_prop_set(a7gr7, "Abbiegespur_7_GR_7")]::Abbiegespur_7_GR_7, |
| | 4686 | way[is_prop_set(a7gl7, "Abbiegespur_7_GL_7")]::Abbiegespur_7_GL_7, |
| | 4687 | way[is_prop_set(a7rl7, "Abbiegespur_7_RL_7")]::Abbiegespur_7_RL_7, |
| | 4688 | way[is_prop_set(a7bg7, "Abbiegespur_7B_G_7")]::Abbiegespur_7B_G_7, |
| | 4689 | way[is_prop_set(a7br7, "Abbiegespur_7B_R_7")]::Abbiegespur_7B_R_7, |
| | 4690 | way[is_prop_set(a7bl7, "Abbiegespur_7B_L_7")]::Abbiegespur_7B_L_7, |
| | 4691 | way[is_prop_set(a7blg7, "Abbiegespur_7B_LG_7")]::Abbiegespur_7B_LG_7, |
| | 4692 | way[is_prop_set(a7brg7, "Abbiegespur_7B_RG_7")]::Abbiegespur_7B_RG_7, |
| | 4693 | way[is_prop_set(a7brl7, "Abbiegespur_7B_RL_7")]::Abbiegespur_7B_RL_7, |
| | 4694 | way[is_prop_set(a8g7, "Abbiegespur_8_G_7")]::Abbiegespur_8_G_7, |
| | 4695 | way[is_prop_set(a8l7, "Abbiegespur_8_L_7")]::Abbiegespur_8_L_7, |
| | 4696 | way[is_prop_set(a8r7, "Abbiegespur_8_R_7")]::Abbiegespur_8_R_7, |
| | 4697 | way[is_prop_set(a8gr7, "Abbiegespur_8_GR_7")]::Abbiegespur_8_GR_7, |
| | 4698 | way[is_prop_set(a8gl7, "Abbiegespur_8_GL_7")]::Abbiegespur_8_GL_7, |
| | 4699 | way[is_prop_set(a8rl7, "Abbiegespur_8_RL_7")]::Abbiegespur_8_RL_7, |
| | 4700 | way[is_prop_set(a8bg7, "Abbiegespur_8B_G_7")]::Abbiegespur_8B_G_7, |
| | 4701 | way[is_prop_set(a8br7, "Abbiegespur_8B_R_7")]::Abbiegespur_8B_R_7, |
| | 4702 | way[is_prop_set(a8bl7, "Abbiegespur_8B_L_7")]::Abbiegespur_8B_L_7, |
| | 4703 | way[is_prop_set(a8blg7, "Abbiegespur_8B_LG_7")]::Abbiegespur_8B_LG_7, |
| | 4704 | way[is_prop_set(a8brg7, "Abbiegespur_8B_RG_7")]::Abbiegespur_8B_RG_7, |
| | 4705 | way[is_prop_set(a8brl7, "Abbiegespur_8B_RL_7")]::Abbiegespur_8B_RL_7 |
| | 4706 | { |
| | 4707 | width: 2; |
| | 4708 | offset: eval((prop(fw_spur_1)) -15); |
| | 4709 | } |
| | 4710 | |
| | 4711 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 4712 | /* */ |
| | 4713 | /* Fahrspurpfeil Geradeaus vorwärts */ |
| | 4714 | /* Arrow straight */ |
| | 4715 | /* */ |
| | 4716 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 4717 | way[is_prop_set(a1g1, "Abbiegespur_1_G_1")]::Abbiegespur_1_G_1, |
| | 4718 | way[is_prop_set(a2g1, "Abbiegespur_2_G_1")]::Abbiegespur_2_G_1, |
| | 4719 | way[is_prop_set(a3g1, "Abbiegespur_3_G_1")]::Abbiegespur_3_G_1, |
| | 4720 | way[is_prop_set(a4g1, "Abbiegespur_4_G_1")]::Abbiegespur_4_G_1, |
| | 4721 | way[is_prop_set(a5g1, "Abbiegespur_5_G_1")]::Abbiegespur_5_G_1, |
| | 4722 | way[is_prop_set(a6g1, "Abbiegespur_6_G_1")]::Abbiegespur_6_G_1, |
| | 4723 | way[is_prop_set(a7g1, "Abbiegespur_7_G_1")]::Abbiegespur_7_G_1, |
| | 4724 | way[is_prop_set(a8g1, "Abbiegespur_8_G_1")]::Abbiegespur_8_G_1 |
| | 4725 | { dashes: 0, 38, 3, 59; } |
| | 4726 | way[is_prop_set(a1g2, "Abbiegespur_1_G_2")]::Abbiegespur_1_G_2, |
| | 4727 | way[is_prop_set(a2g2, "Abbiegespur_2_G_2")]::Abbiegespur_2_G_2, |
| | 4728 | way[is_prop_set(a3g2, "Abbiegespur_3_G_2")]::Abbiegespur_3_G_2, |
| | 4729 | way[is_prop_set(a4g2, "Abbiegespur_4_G_2")]::Abbiegespur_4_G_2, |
| | 4730 | way[is_prop_set(a5g2, "Abbiegespur_5_G_2")]::Abbiegespur_5_G_2, |
| | 4731 | way[is_prop_set(a6g2, "Abbiegespur_6_G_2")]::Abbiegespur_6_G_2, |
| | 4732 | way[is_prop_set(a7g2, "Abbiegespur_7_G_2")]::Abbiegespur_7_G_2, |
| | 4733 | way[is_prop_set(a8g2, "Abbiegespur_8_G_2")]::Abbiegespur_8_G_2 |
| | 4734 | { dashes: 0, 38, 6, 56; } |
| | 4735 | way[is_prop_set(a1g3, "Abbiegespur_1_G_3")]::Abbiegespur_1_G_3, |
| | 4736 | way[is_prop_set(a2g3, "Abbiegespur_2_G_3")]::Abbiegespur_2_G_3, |
| | 4737 | way[is_prop_set(a3g3, "Abbiegespur_3_G_3")]::Abbiegespur_3_G_3, |
| | 4738 | way[is_prop_set(a4g3, "Abbiegespur_4_G_3")]::Abbiegespur_4_G_3, |
| | 4739 | way[is_prop_set(a5g3, "Abbiegespur_5_G_3")]::Abbiegespur_5_G_3, |
| | 4740 | way[is_prop_set(a6g3, "Abbiegespur_6_G_3")]::Abbiegespur_6_G_3, |
| | 4741 | way[is_prop_set(a7g3, "Abbiegespur_7_G_3")]::Abbiegespur_7_G_3, |
| | 4742 | way[is_prop_set(a8g3, "Abbiegespur_8_G_3")]::Abbiegespur_8_G_3 |
| | 4743 | { dashes: 0, 38, 9, 53; } |
| | 4744 | way[is_prop_set(a1g4, "Abbiegespur_1_G_4")]::Abbiegespur_1_G_4, |
| | 4745 | way[is_prop_set(a2g4, "Abbiegespur_2_G_4")]::Abbiegespur_2_G_4, |
| | 4746 | way[is_prop_set(a3g4, "Abbiegespur_3_G_4")]::Abbiegespur_3_G_4, |
| | 4747 | way[is_prop_set(a4g4, "Abbiegespur_4_G_4")]::Abbiegespur_4_G_4, |
| | 4748 | way[is_prop_set(a5g4, "Abbiegespur_5_G_4")]::Abbiegespur_5_G_4, |
| | 4749 | way[is_prop_set(a6g4, "Abbiegespur_6_G_4")]::Abbiegespur_6_G_4, |
| | 4750 | way[is_prop_set(a7g4, "Abbiegespur_7_G_4")]::Abbiegespur_7_G_4, |
| | 4751 | way[is_prop_set(a8g4, "Abbiegespur_8_G_4")]::Abbiegespur_8_G_4 |
| | 4752 | { dashes: 50, 50; } |
| | 4753 | way[is_prop_set(a1g5, "Abbiegespur_1_G_5")]::Abbiegespur_1_G_5, |
| | 4754 | way[is_prop_set(a2g5, "Abbiegespur_2_G_5")]::Abbiegespur_2_G_5, |
| | 4755 | way[is_prop_set(a3g5, "Abbiegespur_3_G_5")]::Abbiegespur_3_G_5, |
| | 4756 | way[is_prop_set(a4g5, "Abbiegespur_4_G_5")]::Abbiegespur_4_G_5, |
| | 4757 | way[is_prop_set(a5g5, "Abbiegespur_5_G_5")]::Abbiegespur_5_G_5, |
| | 4758 | way[is_prop_set(a6g5, "Abbiegespur_6_G_5")]::Abbiegespur_6_G_5, |
| | 4759 | way[is_prop_set(a7g5, "Abbiegespur_7_G_5")]::Abbiegespur_7_G_5, |
| | 4760 | way[is_prop_set(a8g5, "Abbiegespur_8_G_5")]::Abbiegespur_8_G_5 |
| | 4761 | { dashes: 0, 38, 9, 53; } |
| | 4762 | way[is_prop_set(a1g6, "Abbiegespur_1_G_6")]::Abbiegespur_1_G_6, |
| | 4763 | way[is_prop_set(a2g6, "Abbiegespur_2_G_6")]::Abbiegespur_2_G_6, |
| | 4764 | way[is_prop_set(a3g6, "Abbiegespur_3_G_6")]::Abbiegespur_3_G_6, |
| | 4765 | way[is_prop_set(a4g6, "Abbiegespur_4_G_6")]::Abbiegespur_4_G_6, |
| | 4766 | way[is_prop_set(a5g6, "Abbiegespur_5_G_6")]::Abbiegespur_5_G_6, |
| | 4767 | way[is_prop_set(a6g6, "Abbiegespur_6_G_6")]::Abbiegespur_6_G_6, |
| | 4768 | way[is_prop_set(a7g6, "Abbiegespur_7_G_6")]::Abbiegespur_7_G_6, |
| | 4769 | way[is_prop_set(a8g6, "Abbiegespur_8_G_6")]::Abbiegespur_8_G_6 |
| | 4770 | { dashes: 0, 38, 6, 56; } |
| | 4771 | way[is_prop_set(a1g7, "Abbiegespur_1_G_7")]::Abbiegespur_1_G_7, |
| | 4772 | way[is_prop_set(a2g7, "Abbiegespur_2_G_7")]::Abbiegespur_2_G_7, |
| | 4773 | way[is_prop_set(a3g7, "Abbiegespur_3_G_7")]::Abbiegespur_3_G_7, |
| | 4774 | way[is_prop_set(a4g7, "Abbiegespur_4_G_7")]::Abbiegespur_4_G_7, |
| | 4775 | way[is_prop_set(a5g7, "Abbiegespur_5_G_7")]::Abbiegespur_5_G_7, |
| | 4776 | way[is_prop_set(a6g7, "Abbiegespur_6_G_7")]::Abbiegespur_6_G_7, |
| | 4777 | way[is_prop_set(a7g7, "Abbiegespur_7_G_7")]::Abbiegespur_7_G_7, |
| | 4778 | way[is_prop_set(a8g8, "Abbiegespur_8_G_8")]::Abbiegespur_8_G_8 |
| | 4779 | { dashes: 0, 38, 3, 59; } |
| | 4780 | |
| | 4781 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 4782 | /* */ |
| | 4783 | /* Fahrspurpfeil Geradeaus rückwärts */ |
| | 4784 | /* */ |
| | 4785 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 4786 | way[is_prop_set(a1bg1, "Abbiegespur_1B_G_1")]::Abbiegespur_1B_G_1, |
| | 4787 | way[is_prop_set(a2bg1, "Abbiegespur_2B_G_1")]::Abbiegespur_2B_G_1, |
| | 4788 | way[is_prop_set(a3bg1, "Abbiegespur_3B_G_1")]::Abbiegespur_3B_G_1, |
| | 4789 | way[is_prop_set(a4bg1, "Abbiegespur_4B_G_1")]::Abbiegespur_4B_G_1, |
| | 4790 | way[is_prop_set(a5bg1, "Abbiegespur_5B_G_1")]::Abbiegespur_5B_G_1, |
| | 4791 | way[is_prop_set(a6bg1, "Abbiegespur_6B_G_1")]::Abbiegespur_6B_G_1, |
| | 4792 | way[is_prop_set(a7bg1, "Abbiegespur_7B_G_1")]::Abbiegespur_7B_G_1, |
| | 4793 | way[is_prop_set(a8bg1, "Abbiegespur_8B_G_1")]::Abbiegespur_8B_G_1 |
| | 4794 | { dashes: 0, 9, 3, 88; } |
| | 4795 | way[is_prop_set(a1bg2, "Abbiegespur_1B_G_2")]::Abbiegespur_1B_G_2, |
| | 4796 | way[is_prop_set(a2bg2, "Abbiegespur_2B_G_2")]::Abbiegespur_2B_G_2, |
| | 4797 | way[is_prop_set(a3bg2, "Abbiegespur_3B_G_2")]::Abbiegespur_3B_G_2, |
| | 4798 | way[is_prop_set(a4bg2, "Abbiegespur_4B_G_2")]::Abbiegespur_4B_G_2, |
| | 4799 | way[is_prop_set(a5bg2, "Abbiegespur_5B_G_2")]::Abbiegespur_5B_G_2, |
| | 4800 | way[is_prop_set(a6bg2, "Abbiegespur_6B_G_2")]::Abbiegespur_6B_G_2, |
| | 4801 | way[is_prop_set(a7bg2, "Abbiegespur_7B_G_2")]::Abbiegespur_7B_G_2, |
| | 4802 | way[is_prop_set(a8bg2, "Abbiegespur_8B_G_2")]::Abbiegespur_8B_G_2 |
| | 4803 | { dashes: 0, 6, 6, 88; } |
| | 4804 | way[is_prop_set(a1bg3, "Abbiegespur_1B_G_3")]::Abbiegespur_1B_G_3, |
| | 4805 | way[is_prop_set(a2bg3, "Abbiegespur_2B_G_3")]::Abbiegespur_2B_G_3, |
| | 4806 | way[is_prop_set(a3bg3, "Abbiegespur_3B_G_3")]::Abbiegespur_3B_G_3, |
| | 4807 | way[is_prop_set(a4bg3, "Abbiegespur_4B_G_3")]::Abbiegespur_4B_G_3, |
| | 4808 | way[is_prop_set(a5bg3, "Abbiegespur_5B_G_3")]::Abbiegespur_5B_G_3, |
| | 4809 | way[is_prop_set(a6bg3, "Abbiegespur_6B_G_3")]::Abbiegespur_6B_G_3, |
| | 4810 | way[is_prop_set(a7bg3, "Abbiegespur_7B_G_3")]::Abbiegespur_7B_G_3, |
| | 4811 | way[is_prop_set(a8bg3, "Abbiegespur_8B_G_3")]::Abbiegespur_8B_G_3 |
| | 4812 | { dashes: 0, 3, 9, 88; } |
| | 4813 | way[is_prop_set(a1bg4, "Abbiegespur_1B_G_4")]::Abbiegespur_1B_G_4, |
| | 4814 | way[is_prop_set(a2bg4, "Abbiegespur_2B_G_4")]::Abbiegespur_2B_G_4, |
| | 4815 | way[is_prop_set(a3bg4, "Abbiegespur_3B_G_4")]::Abbiegespur_3B_G_4, |
| | 4816 | way[is_prop_set(a4bg4, "Abbiegespur_4B_G_4")]::Abbiegespur_4B_G_4, |
| | 4817 | way[is_prop_set(a5bg4, "Abbiegespur_5B_G_4")]::Abbiegespur_5B_G_4, |
| | 4818 | way[is_prop_set(a6bg4, "Abbiegespur_6B_G_4")]::Abbiegespur_6B_G_4, |
| | 4819 | way[is_prop_set(a7bg4, "Abbiegespur_7B_G_4")]::Abbiegespur_7B_G_4, |
| | 4820 | way[is_prop_set(a8bg4, "Abbiegespur_8B_G_4")]::Abbiegespur_8B_G_4 |
| | 4821 | { dashes: 50, 50; } |
| | 4822 | way[is_prop_set(a1bg5, "Abbiegespur_1B_G_5")]::Abbiegespur_1B_G_5, |
| | 4823 | way[is_prop_set(a2bg5, "Abbiegespur_2B_G_5")]::Abbiegespur_2B_G_5, |
| | 4824 | way[is_prop_set(a3bg5, "Abbiegespur_3B_G_5")]::Abbiegespur_3B_G_5, |
| | 4825 | way[is_prop_set(a4bg5, "Abbiegespur_4B_G_5")]::Abbiegespur_4B_G_5, |
| | 4826 | way[is_prop_set(a5bg5, "Abbiegespur_5B_G_5")]::Abbiegespur_5B_G_5, |
| | 4827 | way[is_prop_set(a6bg5, "Abbiegespur_6B_G_5")]::Abbiegespur_6B_G_5, |
| | 4828 | way[is_prop_set(a7bg5, "Abbiegespur_7B_G_5")]::Abbiegespur_7B_G_5, |
| | 4829 | way[is_prop_set(a8bg5, "Abbiegespur_8B_G_5")]::Abbiegespur_8B_G_5 |
| | 4830 | { dashes: 0, 3, 9, 88; } |
| | 4831 | way[is_prop_set(a1bg6, "Abbiegespur_1B_G_6")]::Abbiegespur_1B_G_6, |
| | 4832 | way[is_prop_set(a2bg6, "Abbiegespur_2B_G_6")]::Abbiegespur_2B_G_6, |
| | 4833 | way[is_prop_set(a3bg6, "Abbiegespur_3B_G_6")]::Abbiegespur_3B_G_6, |
| | 4834 | way[is_prop_set(a4bg6, "Abbiegespur_4B_G_6")]::Abbiegespur_4B_G_6, |
| | 4835 | way[is_prop_set(a5bg6, "Abbiegespur_5B_G_6")]::Abbiegespur_5B_G_6, |
| | 4836 | way[is_prop_set(a6bg6, "Abbiegespur_6B_G_6")]::Abbiegespur_6B_G_6, |
| | 4837 | way[is_prop_set(a7bg6, "Abbiegespur_7B_G_6")]::Abbiegespur_7B_G_6, |
| | 4838 | way[is_prop_set(a8bg6, "Abbiegespur_8B_G_6")]::Abbiegespur_8B_G_6 |
| | 4839 | { dashes: 0, 6, 6, 88; } |
| | 4840 | way[is_prop_set(a1bg7, "Abbiegespur_1B_G_7")]::Abbiegespur_1B_G_7, |
| | 4841 | way[is_prop_set(a2bg7, "Abbiegespur_2B_G_7")]::Abbiegespur_2B_G_7, |
| | 4842 | way[is_prop_set(a3bg7, "Abbiegespur_3B_G_7")]::Abbiegespur_3B_G_7, |
| | 4843 | way[is_prop_set(a4bg7, "Abbiegespur_4B_G_7")]::Abbiegespur_4B_G_7, |
| | 4844 | way[is_prop_set(a5bg7, "Abbiegespur_5B_G_7")]::Abbiegespur_5B_G_7, |
| | 4845 | way[is_prop_set(a6bg7, "Abbiegespur_6B_G_7")]::Abbiegespur_6B_G_7, |
| | 4846 | way[is_prop_set(a7bg7, "Abbiegespur_7B_G_7")]::Abbiegespur_7B_G_7, |
| | 4847 | way[is_prop_set(a8bg7, "Abbiegespur_8B_G_7")]::Abbiegespur_8B_G_7 |
| | 4848 | { dashes: 0, 9, 3, 88; } |
| | 4849 | |
| | 4850 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 4851 | /* */ |
| | 4852 | /* Fahrspurpfeil Rechts vorwärts */ |
| | 4853 | /* */ |
| | 4854 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 4855 | way[is_prop_set(a1r1, "Abbiegespur_1_R_1")]::Abbiegespur_1_R_1, |
| | 4856 | way[is_prop_set(a2r1, "Abbiegespur_2_R_1")]::Abbiegespur_2_R_1, |
| | 4857 | way[is_prop_set(a3r1, "Abbiegespur_3_R_1")]::Abbiegespur_3_R_1, |
| | 4858 | way[is_prop_set(a4r1, "Abbiegespur_4_R_1")]::Abbiegespur_4_R_1, |
| | 4859 | way[is_prop_set(a5r1, "Abbiegespur_5_R_1")]::Abbiegespur_5_R_1, |
| | 4860 | way[is_prop_set(a6r1, "Abbiegespur_6_R_1")]::Abbiegespur_6_R_1, |
| | 4861 | way[is_prop_set(a7r1, "Abbiegespur_7_R_1")]::Abbiegespur_7_R_1, |
| | 4862 | way[is_prop_set(a8r1, "Abbiegespur_8_R_1")]::Abbiegespur_8_R_1 |
| | 4863 | { dashes: 35, 65; } |
| | 4864 | way[is_prop_set(a1r2, "Abbiegespur_1_R_2")]::Abbiegespur_1_R_2, |
| | 4865 | way[is_prop_set(a2r2, "Abbiegespur_2_R_2")]::Abbiegespur_2_R_2, |
| | 4866 | way[is_prop_set(a3r2, "Abbiegespur_3_R_2")]::Abbiegespur_3_R_2, |
| | 4867 | way[is_prop_set(a4r2, "Abbiegespur_4_R_2")]::Abbiegespur_4_R_2, |
| | 4868 | way[is_prop_set(a5r2, "Abbiegespur_5_R_2")]::Abbiegespur_5_R_2, |
| | 4869 | way[is_prop_set(a6r2, "Abbiegespur_6_R_2")]::Abbiegespur_6_R_2, |
| | 4870 | way[is_prop_set(a7r2, "Abbiegespur_7_R_2")]::Abbiegespur_7_R_2, |
| | 4871 | way[is_prop_set(a8r2, "Abbiegespur_8_R_2")]::Abbiegespur_8_R_2 |
| | 4872 | { dashes: 0, 34, 2, 64; } |
| | 4873 | way[is_prop_set(a1r3, "Abbiegespur_1_R_3")]::Abbiegespur_1_R_3, |
| | 4874 | way[is_prop_set(a2r3, "Abbiegespur_2_R_3")]::Abbiegespur_2_R_3, |
| | 4875 | way[is_prop_set(a3r3, "Abbiegespur_3_R_3")]::Abbiegespur_3_R_3, |
| | 4876 | way[is_prop_set(a4r3, "Abbiegespur_4_R_3")]::Abbiegespur_4_R_3, |
| | 4877 | way[is_prop_set(a5r3, "Abbiegespur_5_R_3")]::Abbiegespur_5_R_3, |
| | 4878 | way[is_prop_set(a6r3, "Abbiegespur_6_R_3")]::Abbiegespur_6_R_3, |
| | 4879 | way[is_prop_set(a7r3, "Abbiegespur_7_R_3")]::Abbiegespur_7_R_3, |
| | 4880 | way[is_prop_set(a8r3, "Abbiegespur_8_R_3")]::Abbiegespur_8_R_3 |
| | 4881 | { dashes: 0, 33, 2, 65; } |
| | 4882 | way[is_prop_set(a1r4, "Abbiegespur_1_R_4")]::Abbiegespur_1_R_4, |
| | 4883 | way[is_prop_set(a2r4, "Abbiegespur_2_R_4")]::Abbiegespur_2_R_4, |
| | 4884 | way[is_prop_set(a3r4, "Abbiegespur_3_R_4")]::Abbiegespur_3_R_4, |
| | 4885 | way[is_prop_set(a4r4, "Abbiegespur_4_R_4")]::Abbiegespur_4_R_4, |
| | 4886 | way[is_prop_set(a5r4, "Abbiegespur_5_R_4")]::Abbiegespur_5_R_4, |
| | 4887 | way[is_prop_set(a6r4, "Abbiegespur_6_R_4")]::Abbiegespur_6_R_4, |
| | 4888 | way[is_prop_set(a7r4, "Abbiegespur_7_R_4")]::Abbiegespur_7_R_4, |
| | 4889 | way[is_prop_set(a8r4, "Abbiegespur_8_R_4")]::Abbiegespur_8_R_4 |
| | 4890 | { dashes: 0, 22, 28, 50; } |
| | 4891 | way[is_prop_set(a1r5, "Abbiegespur_1_R_5")]::Abbiegespur_1_R_5, |
| | 4892 | way[is_prop_set(a2r5, "Abbiegespur_2_R_5")]::Abbiegespur_2_R_5, |
| | 4893 | way[is_prop_set(a3r5, "Abbiegespur_3_R_5")]::Abbiegespur_3_R_5, |
| | 4894 | way[is_prop_set(a4r5, "Abbiegespur_4_R_5")]::Abbiegespur_4_R_5, |
| | 4895 | way[is_prop_set(a5r5, "Abbiegespur_5_R_5")]::Abbiegespur_5_R_5, |
| | 4896 | way[is_prop_set(a6r5, "Abbiegespur_6_R_5")]::Abbiegespur_6_R_5, |
| | 4897 | way[is_prop_set(a7r5, "Abbiegespur_7_R_5")]::Abbiegespur_7_R_5, |
| | 4898 | way[is_prop_set(a8r5, "Abbiegespur_8_R_5")]::Abbiegespur_8_R_5 |
| | 4899 | { dashes: 0, 26, 20, 54; } |
| | 4900 | way[is_prop_set(a1r6, "Abbiegespur_1_R_6")]::Abbiegespur_1_R_6, |
| | 4901 | way[is_prop_set(a2r6, "Abbiegespur_2_R_6")]::Abbiegespur_2_R_6, |
| | 4902 | way[is_prop_set(a3r6, "Abbiegespur_3_R_6")]::Abbiegespur_3_R_6, |
| | 4903 | way[is_prop_set(a4r6, "Abbiegespur_4_R_6")]::Abbiegespur_4_R_6, |
| | 4904 | way[is_prop_set(a5r6, "Abbiegespur_5_R_6")]::Abbiegespur_5_R_6, |
| | 4905 | way[is_prop_set(a6r6, "Abbiegespur_6_R_6")]::Abbiegespur_6_R_6, |
| | 4906 | way[is_prop_set(a7r6, "Abbiegespur_7_R_6")]::Abbiegespur_7_R_6, |
| | 4907 | way[is_prop_set(a8r6, "Abbiegespur_8_R_6")]::Abbiegespur_8_R_6 |
| | 4908 | { dashes: 0, 30, 12, 58; } |
| | 4909 | way[is_prop_set(a1r7, "Abbiegespur_1_R_7")]::Abbiegespur_1_R_7, |
| | 4910 | way[is_prop_set(a2r7, "Abbiegespur_2_R_7")]::Abbiegespur_2_R_7, |
| | 4911 | way[is_prop_set(a3r7, "Abbiegespur_3_R_7")]::Abbiegespur_3_R_7, |
| | 4912 | way[is_prop_set(a4r7, "Abbiegespur_4_R_7")]::Abbiegespur_4_R_7, |
| | 4913 | way[is_prop_set(a5r7, "Abbiegespur_5_R_7")]::Abbiegespur_5_R_7, |
| | 4914 | way[is_prop_set(a6r7, "Abbiegespur_6_R_7")]::Abbiegespur_6_R_7, |
| | 4915 | way[is_prop_set(a7r7, "Abbiegespur_7_R_7")]::Abbiegespur_7_R_7, |
| | 4916 | way[is_prop_set(a8r7, "Abbiegespur_8_R_7")]::Abbiegespur_8_R_7 |
| | 4917 | { dashes: 0, 34, 4, 62; } |
| | 4918 | |
| | 4919 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 4920 | /* */ |
| | 4921 | /* Fahrspurpfeil Rechts rückwärts */ |
| | 4922 | /* */ |
| | 4923 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 4924 | way[is_prop_set(a1br1, "Abbiegespur_1B_R_1")]::Abbiegespur_1B_R_1, |
| | 4925 | way[is_prop_set(a2br1, "Abbiegespur_2B_R_1")]::Abbiegespur_2B_R_1, |
| | 4926 | way[is_prop_set(a3br1, "Abbiegespur_3B_R_1")]::Abbiegespur_3B_R_1, |
| | 4927 | way[is_prop_set(a4br1, "Abbiegespur_4B_R_1")]::Abbiegespur_4B_R_1, |
| | 4928 | way[is_prop_set(a5br1, "Abbiegespur_5B_R_1")]::Abbiegespur_5B_R_1, |
| | 4929 | way[is_prop_set(a6br1, "Abbiegespur_6B_R_1")]::Abbiegespur_6B_R_1, |
| | 4930 | way[is_prop_set(a7br1, "Abbiegespur_7B_R_1")]::Abbiegespur_7B_R_1, |
| | 4931 | way[is_prop_set(a8br1, "Abbiegespur_8B_R_1")]::Abbiegespur_8B_R_1 |
| | 4932 | { dashes: 0, 12, 4, 84; } |
| | 4933 | way[is_prop_set(a1br2, "Abbiegespur_1B_R_2")]::Abbiegespur_1B_R_2, |
| | 4934 | way[is_prop_set(a2br2, "Abbiegespur_2B_R_2")]::Abbiegespur_2B_R_2, |
| | 4935 | way[is_prop_set(a3br2, "Abbiegespur_3B_R_2")]::Abbiegespur_3B_R_2, |
| | 4936 | way[is_prop_set(a4br2, "Abbiegespur_4B_R_2")]::Abbiegespur_4B_R_2, |
| | 4937 | way[is_prop_set(a5br2, "Abbiegespur_5B_R_2")]::Abbiegespur_5B_R_2, |
| | 4938 | way[is_prop_set(a6br2, "Abbiegespur_6B_R_2")]::Abbiegespur_6B_R_2, |
| | 4939 | way[is_prop_set(a7br2, "Abbiegespur_7B_R_2")]::Abbiegespur_7B_R_2, |
| | 4940 | way[is_prop_set(a8br2, "Abbiegespur_8B_R_2")]::Abbiegespur_8B_R_2 |
| | 4941 | { dashes: 0, 8, 12, 80; } |
| | 4942 | way[is_prop_set(a1br3, "Abbiegespur_1B_R_3")]::Abbiegespur_1B_R_3, |
| | 4943 | way[is_prop_set(a2br3, "Abbiegespur_2B_R_3")]::Abbiegespur_2B_R_3, |
| | 4944 | way[is_prop_set(a3br3, "Abbiegespur_3B_R_3")]::Abbiegespur_3B_R_3, |
| | 4945 | way[is_prop_set(a4br3, "Abbiegespur_4B_R_3")]::Abbiegespur_4B_R_3, |
| | 4946 | way[is_prop_set(a5br3, "Abbiegespur_5B_R_3")]::Abbiegespur_5B_R_3, |
| | 4947 | way[is_prop_set(a6br3, "Abbiegespur_6B_R_3")]::Abbiegespur_6B_R_3, |
| | 4948 | way[is_prop_set(a7br3, "Abbiegespur_7B_R_3")]::Abbiegespur_7B_R_3, |
| | 4949 | way[is_prop_set(a8br3, "Abbiegespur_8B_R_3")]::Abbiegespur_8B_R_3 |
| | 4950 | { dashes: 0, 4, 20, 76; } |
| | 4951 | way[is_prop_set(a1br4, "Abbiegespur_1B_R_4")]::Abbiegespur_1B_R_4, |
| | 4952 | way[is_prop_set(a2br4, "Abbiegespur_2B_R_4")]::Abbiegespur_2B_R_4, |
| | 4953 | way[is_prop_set(a3br4, "Abbiegespur_3B_R_4")]::Abbiegespur_3B_R_4, |
| | 4954 | way[is_prop_set(a4br4, "Abbiegespur_4B_R_4")]::Abbiegespur_4B_R_4, |
| | 4955 | way[is_prop_set(a5br4, "Abbiegespur_5B_R_4")]::Abbiegespur_5B_R_4, |
| | 4956 | way[is_prop_set(a6br4, "Abbiegespur_6B_R_4")]::Abbiegespur_6B_R_4, |
| | 4957 | way[is_prop_set(a7br4, "Abbiegespur_7B_R_4")]::Abbiegespur_7B_R_4, |
| | 4958 | way[is_prop_set(a8br4, "Abbiegespur_8B_R_4")]::Abbiegespur_8B_R_4 |
| | 4959 | { dashes: 28, 72; } |
| | 4960 | way[is_prop_set(a1br5, "Abbiegespur_1B_R_5")]::Abbiegespur_1B_R_5, |
| | 4961 | way[is_prop_set(a2br5, "Abbiegespur_2B_R_5")]::Abbiegespur_2B_R_5, |
| | 4962 | way[is_prop_set(a3br5, "Abbiegespur_3B_R_5")]::Abbiegespur_3B_R_5, |
| | 4963 | way[is_prop_set(a4br5, "Abbiegespur_4B_R_5")]::Abbiegespur_4B_R_5, |
| | 4964 | way[is_prop_set(a5br5, "Abbiegespur_5B_R_5")]::Abbiegespur_5B_R_5, |
| | 4965 | way[is_prop_set(a6br5, "Abbiegespur_6B_R_5")]::Abbiegespur_6B_R_5, |
| | 4966 | way[is_prop_set(a7br5, "Abbiegespur_7B_R_5")]::Abbiegespur_7B_R_5, |
| | 4967 | way[is_prop_set(a8br5, "Abbiegespur_8B_R_5")]::Abbiegespur_8B_R_5 |
| | 4968 | { dashes: 0, 15, 2, 83; } |
| | 4969 | way[is_prop_set(a1br6, "Abbiegespur_1B_R_6")]::Abbiegespur_1B_R_6, |
| | 4970 | way[is_prop_set(a2br6, "Abbiegespur_2B_R_6")]::Abbiegespur_2B_R_6, |
| | 4971 | way[is_prop_set(a3br6, "Abbiegespur_3B_R_6")]::Abbiegespur_3B_R_6, |
| | 4972 | way[is_prop_set(a4br6, "Abbiegespur_4B_R_6")]::Abbiegespur_4B_R_6, |
| | 4973 | way[is_prop_set(a5br6, "Abbiegespur_5B_R_6")]::Abbiegespur_5B_R_6, |
| | 4974 | way[is_prop_set(a6br6, "Abbiegespur_6B_R_6")]::Abbiegespur_6B_R_6, |
| | 4975 | way[is_prop_set(a7br6, "Abbiegespur_7B_R_6")]::Abbiegespur_7B_R_6, |
| | 4976 | way[is_prop_set(a8br6, "Abbiegespur_8B_R_6")]::Abbiegespur_8B_R_6 |
| | 4977 | { dashes: 0, 14, 2, 84; } |
| | 4978 | way[is_prop_set(a1br7, "Abbiegespur_1B_R_7")]::Abbiegespur_1B_R_7, |
| | 4979 | way[is_prop_set(a2br7, "Abbiegespur_2B_R_7")]::Abbiegespur_2B_R_7, |
| | 4980 | way[is_prop_set(a3br7, "Abbiegespur_3B_R_7")]::Abbiegespur_3B_R_7, |
| | 4981 | way[is_prop_set(a4br7, "Abbiegespur_4B_R_7")]::Abbiegespur_4B_R_7, |
| | 4982 | way[is_prop_set(a5br7, "Abbiegespur_5B_R_7")]::Abbiegespur_5B_R_7, |
| | 4983 | way[is_prop_set(a6br7, "Abbiegespur_6B_R_7")]::Abbiegespur_6B_R_7, |
| | 4984 | way[is_prop_set(a7br7, "Abbiegespur_7B_R_7")]::Abbiegespur_7B_R_7, |
| | 4985 | way[is_prop_set(a8br7, "Abbiegespur_8B_R_7")]::Abbiegespur_8B_R_7 |
| | 4986 | { dashes: 0, 15, 35, 50; } |
| | 4987 | |
| | 4988 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 4989 | /* */ |
| | 4990 | /* Fahrspurpfeil Links vorwärts */ |
| | 4991 | /* */ |
| | 4992 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 4993 | way[is_prop_set(a1l1, "Abbiegespur_1_L_1")]::Abbiegespur_1_L_1, |
| | 4994 | way[is_prop_set(a2l1, "Abbiegespur_2_L_1")]::Abbiegespur_2_L_1, |
| | 4995 | way[is_prop_set(a3l1, "Abbiegespur_3_L_1")]::Abbiegespur_3_L_1, |
| | 4996 | way[is_prop_set(a4l1, "Abbiegespur_4_L_1")]::Abbiegespur_4_L_1, |
| | 4997 | way[is_prop_set(a5l1, "Abbiegespur_5_L_1")]::Abbiegespur_5_L_1, |
| | 4998 | way[is_prop_set(a6l1, "Abbiegespur_6_L_1")]::Abbiegespur_6_L_1, |
| | 4999 | way[is_prop_set(a7l1, "Abbiegespur_7_L_1")]::Abbiegespur_7_L_1, |
| | 5000 | way[is_prop_set(a8l1, "Abbiegespur_8_L_1")]::Abbiegespur_8_L_1 |
| | 5001 | { dashes: 0, 34, 4, 62; } |
| | 5002 | way[is_prop_set(a1l2, "Abbiegespur_1_L_2")]::Abbiegespur_1_L_2, |
| | 5003 | way[is_prop_set(a2l2, "Abbiegespur_2_L_2")]::Abbiegespur_2_L_2, |
| | 5004 | way[is_prop_set(a3l2, "Abbiegespur_3_L_2")]::Abbiegespur_3_L_2, |
| | 5005 | way[is_prop_set(a4l2, "Abbiegespur_4_L_2")]::Abbiegespur_4_L_2, |
| | 5006 | way[is_prop_set(a5l2, "Abbiegespur_5_L_2")]::Abbiegespur_5_L_2, |
| | 5007 | way[is_prop_set(a6l2, "Abbiegespur_6_L_2")]::Abbiegespur_6_L_2, |
| | 5008 | way[is_prop_set(a7l2, "Abbiegespur_7_L_2")]::Abbiegespur_7_L_2, |
| | 5009 | way[is_prop_set(a8l2, "Abbiegespur_8_L_2")]::Abbiegespur_8_L_2 |
| | 5010 | { dashes: 0, 30, 12, 58; } |
| | 5011 | way[is_prop_set(a1l3, "Abbiegespur_1_L_3")]::Abbiegespur_1_L_3, |
| | 5012 | way[is_prop_set(a2l3, "Abbiegespur_2_L_3")]::Abbiegespur_2_L_3, |
| | 5013 | way[is_prop_set(a3l3, "Abbiegespur_3_L_3")]::Abbiegespur_3_L_3, |
| | 5014 | way[is_prop_set(a4l3, "Abbiegespur_4_L_3")]::Abbiegespur_4_L_3, |
| | 5015 | way[is_prop_set(a5l3, "Abbiegespur_5_L_3")]::Abbiegespur_5_L_3, |
| | 5016 | way[is_prop_set(a6l3, "Abbiegespur_6_L_3")]::Abbiegespur_6_L_3, |
| | 5017 | way[is_prop_set(a7l3, "Abbiegespur_7_L_3")]::Abbiegespur_7_L_3, |
| | 5018 | way[is_prop_set(a8l3, "Abbiegespur_8_L_3")]::Abbiegespur_8_L_3 |
| | 5019 | { dashes: 0, 26, 20, 54; } |
| | 5020 | way[is_prop_set(a1l4, "Abbiegespur_1_L_4")]::Abbiegespur_1_L_4, |
| | 5021 | way[is_prop_set(a2l4, "Abbiegespur_2_L_4")]::Abbiegespur_2_L_4, |
| | 5022 | way[is_prop_set(a3l4, "Abbiegespur_3_L_4")]::Abbiegespur_3_L_4, |
| | 5023 | way[is_prop_set(a4l4, "Abbiegespur_4_L_4")]::Abbiegespur_4_L_4, |
| | 5024 | way[is_prop_set(a5l4, "Abbiegespur_5_L_4")]::Abbiegespur_5_L_4, |
| | 5025 | way[is_prop_set(a6l4, "Abbiegespur_6_L_4")]::Abbiegespur_6_L_4, |
| | 5026 | way[is_prop_set(a7l4, "Abbiegespur_7_L_4")]::Abbiegespur_7_L_4, |
| | 5027 | way[is_prop_set(a8l4, "Abbiegespur_8_L_4")]::Abbiegespur_8_L_4 |
| | 5028 | { dashes: 0, 22, 28, 50; } |
| | 5029 | way[is_prop_set(a1l5, "Abbiegespur_1_L_5")]::Abbiegespur_1_L_5, |
| | 5030 | way[is_prop_set(a2l5, "Abbiegespur_2_L_5")]::Abbiegespur_2_L_5, |
| | 5031 | way[is_prop_set(a3l5, "Abbiegespur_3_L_5")]::Abbiegespur_3_L_5, |
| | 5032 | way[is_prop_set(a4l5, "Abbiegespur_4_L_5")]::Abbiegespur_4_L_5, |
| | 5033 | way[is_prop_set(a5l5, "Abbiegespur_5_L_5")]::Abbiegespur_5_L_5, |
| | 5034 | way[is_prop_set(a6l5, "Abbiegespur_6_L_5")]::Abbiegespur_6_L_5, |
| | 5035 | way[is_prop_set(a7l5, "Abbiegespur_7_L_5")]::Abbiegespur_7_L_5, |
| | 5036 | way[is_prop_set(a8l5, "Abbiegespur_8_L_5")]::Abbiegespur_8_L_5 |
| | 5037 | { dashes: 0, 33, 2, 65; } |
| | 5038 | way[is_prop_set(a1l6, "Abbiegespur_1_L_6")]::Abbiegespur_1_L_6, |
| | 5039 | way[is_prop_set(a2l6, "Abbiegespur_2_L_6")]::Abbiegespur_2_L_6, |
| | 5040 | way[is_prop_set(a3l6, "Abbiegespur_3_L_6")]::Abbiegespur_3_L_6, |
| | 5041 | way[is_prop_set(a4l6, "Abbiegespur_4_L_6")]::Abbiegespur_4_L_6, |
| | 5042 | way[is_prop_set(a5l6, "Abbiegespur_5_L_6")]::Abbiegespur_5_L_6, |
| | 5043 | way[is_prop_set(a6l6, "Abbiegespur_6_L_6")]::Abbiegespur_6_L_6, |
| | 5044 | way[is_prop_set(a7l6, "Abbiegespur_7_L_6")]::Abbiegespur_7_L_6, |
| | 5045 | way[is_prop_set(a8l6, "Abbiegespur_8_L_6")]::Abbiegespur_8_L_6 |
| | 5046 | { dashes: 0, 34, 2, 64; } |
| | 5047 | way[is_prop_set(a1l7, "Abbiegespur_1_L_7")]::Abbiegespur_1_L_7, |
| | 5048 | way[is_prop_set(a2l7, "Abbiegespur_2_L_7")]::Abbiegespur_2_L_7, |
| | 5049 | way[is_prop_set(a3l7, "Abbiegespur_3_L_7")]::Abbiegespur_3_L_7, |
| | 5050 | way[is_prop_set(a4l7, "Abbiegespur_4_L_7")]::Abbiegespur_4_L_7, |
| | 5051 | way[is_prop_set(a5l7, "Abbiegespur_5_L_7")]::Abbiegespur_5_L_7, |
| | 5052 | way[is_prop_set(a6l7, "Abbiegespur_6_L_7")]::Abbiegespur_6_L_7, |
| | 5053 | way[is_prop_set(a7l7, "Abbiegespur_7_L_7")]::Abbiegespur_7_L_7, |
| | 5054 | way[is_prop_set(a8l7, "Abbiegespur_8_L_7")]::Abbiegespur_8_L_7 |
| | 5055 | { dashes: 35, 65; } |
| | 5056 | |
| | 5057 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 5058 | /* */ |
| | 5059 | /* Fahrspurpfeil Links rückwärts */ |
| | 5060 | /* */ |
| | 5061 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 5062 | way[is_prop_set(a1bl1, "Abbiegespur_1B_L_1")]::Abbiegespur_1B_L_1, |
| | 5063 | way[is_prop_set(a2bl1, "Abbiegespur_2B_L_1")]::Abbiegespur_2B_L_1, |
| | 5064 | way[is_prop_set(a3bl1, "Abbiegespur_3B_L_1")]::Abbiegespur_3B_L_1, |
| | 5065 | way[is_prop_set(a4bl1, "Abbiegespur_4B_L_1")]::Abbiegespur_4B_L_1, |
| | 5066 | way[is_prop_set(a5bl1, "Abbiegespur_5B_L_1")]::Abbiegespur_5B_L_1, |
| | 5067 | way[is_prop_set(a6bl1, "Abbiegespur_6B_L_1")]::Abbiegespur_6B_L_1, |
| | 5068 | way[is_prop_set(a7bl1, "Abbiegespur_7B_L_1")]::Abbiegespur_7B_L_1, |
| | 5069 | way[is_prop_set(a8bl1, "Abbiegespur_8B_L_1")]::Abbiegespur_8B_L_1 |
| | 5070 | { dashes: 0, 15, 35, 50; } |
| | 5071 | way[is_prop_set(a1bl2, "Abbiegespur_1B_L_2")]::Abbiegespur_1B_L_2, |
| | 5072 | way[is_prop_set(a2bl2, "Abbiegespur_2B_L_2")]::Abbiegespur_2B_L_2, |
| | 5073 | way[is_prop_set(a3bl2, "Abbiegespur_3B_L_2")]::Abbiegespur_3B_L_2, |
| | 5074 | way[is_prop_set(a4bl2, "Abbiegespur_4B_L_2")]::Abbiegespur_4B_L_2, |
| | 5075 | way[is_prop_set(a5bl2, "Abbiegespur_5B_L_2")]::Abbiegespur_5B_L_2, |
| | 5076 | way[is_prop_set(a6bl2, "Abbiegespur_6B_L_2")]::Abbiegespur_6B_L_2, |
| | 5077 | way[is_prop_set(a7bl2, "Abbiegespur_7B_L_2")]::Abbiegespur_7B_L_2, |
| | 5078 | way[is_prop_set(a8bl2, "Abbiegespur_8B_L_2")]::Abbiegespur_8B_L_2 |
| | 5079 | { dashes: 0, 14, 2, 84; } |
| | 5080 | way[is_prop_set(a1bl3, "Abbiegespur_1B_L_3")]::Abbiegespur_1B_L_3, |
| | 5081 | way[is_prop_set(a2bl3, "Abbiegespur_2B_L_3")]::Abbiegespur_2B_L_3, |
| | 5082 | way[is_prop_set(a3bl3, "Abbiegespur_3B_L_3")]::Abbiegespur_3B_L_3, |
| | 5083 | way[is_prop_set(a4bl3, "Abbiegespur_4B_L_3")]::Abbiegespur_4B_L_3, |
| | 5084 | way[is_prop_set(a5bl3, "Abbiegespur_5B_L_3")]::Abbiegespur_5B_L_3, |
| | 5085 | way[is_prop_set(a6bl3, "Abbiegespur_6B_L_3")]::Abbiegespur_6B_L_3, |
| | 5086 | way[is_prop_set(a7bl3, "Abbiegespur_7B_L_3")]::Abbiegespur_7B_L_3, |
| | 5087 | way[is_prop_set(a8bl3, "Abbiegespur_8B_L_3")]::Abbiegespur_8B_L_3 |
| | 5088 | { dashes: 0, 15, 2, 83; } |
| | 5089 | way[is_prop_set(a1bl4, "Abbiegespur_1B_L_4")]::Abbiegespur_1B_L_4, |
| | 5090 | way[is_prop_set(a2bl4, "Abbiegespur_2B_L_4")]::Abbiegespur_2B_L_4, |
| | 5091 | way[is_prop_set(a3bl4, "Abbiegespur_3B_L_4")]::Abbiegespur_3B_L_4, |
| | 5092 | way[is_prop_set(a4bl4, "Abbiegespur_4B_L_4")]::Abbiegespur_4B_L_4, |
| | 5093 | way[is_prop_set(a5bl4, "Abbiegespur_5B_L_4")]::Abbiegespur_5B_L_4, |
| | 5094 | way[is_prop_set(a6bl4, "Abbiegespur_6B_L_4")]::Abbiegespur_6B_L_4, |
| | 5095 | way[is_prop_set(a7bl4, "Abbiegespur_7B_L_4")]::Abbiegespur_7B_L_4, |
| | 5096 | way[is_prop_set(a8bl4, "Abbiegespur_8B_L_4")]::Abbiegespur_8B_L_4 |
| | 5097 | { dashes: 28, 72; } |
| | 5098 | way[is_prop_set(a1bl5, "Abbiegespur_1B_L_5")]::Abbiegespur_1B_L_5, |
| | 5099 | way[is_prop_set(a2bl5, "Abbiegespur_2B_L_5")]::Abbiegespur_2B_L_5, |
| | 5100 | way[is_prop_set(a3bl5, "Abbiegespur_3B_L_5")]::Abbiegespur_3B_L_5, |
| | 5101 | way[is_prop_set(a4bl5, "Abbiegespur_4B_L_5")]::Abbiegespur_4B_L_5, |
| | 5102 | way[is_prop_set(a5bl5, "Abbiegespur_5B_L_5")]::Abbiegespur_5B_L_5, |
| | 5103 | way[is_prop_set(a6bl5, "Abbiegespur_6B_L_5")]::Abbiegespur_6B_L_5, |
| | 5104 | way[is_prop_set(a7bl5, "Abbiegespur_7B_L_5")]::Abbiegespur_7B_L_5, |
| | 5105 | way[is_prop_set(a8bl5, "Abbiegespur_8B_L_5")]::Abbiegespur_8B_L_5 |
| | 5106 | { dashes: 0, 4, 20, 76; } |
| | 5107 | way[is_prop_set(a1bl6, "Abbiegespur_1B_L_6")]::Abbiegespur_1B_L_6, |
| | 5108 | way[is_prop_set(a2bl6, "Abbiegespur_2B_L_6")]::Abbiegespur_2B_L_6, |
| | 5109 | way[is_prop_set(a3bl6, "Abbiegespur_3B_L_6")]::Abbiegespur_3B_L_6, |
| | 5110 | way[is_prop_set(a4bl6, "Abbiegespur_4B_L_6")]::Abbiegespur_4B_L_6, |
| | 5111 | way[is_prop_set(a5bl6, "Abbiegespur_5B_L_6")]::Abbiegespur_5B_L_6, |
| | 5112 | way[is_prop_set(a6bl6, "Abbiegespur_6B_L_6")]::Abbiegespur_6B_L_6, |
| | 5113 | way[is_prop_set(a7bl6, "Abbiegespur_7B_L_6")]::Abbiegespur_7B_L_6, |
| | 5114 | way[is_prop_set(a8bl6, "Abbiegespur_8B_L_6")]::Abbiegespur_8B_L_6 |
| | 5115 | { dashes: 0, 8, 12, 80; } |
| | 5116 | way[is_prop_set(a1bl7, "Abbiegespur_1B_L_7")]::Abbiegespur_1B_L_7, |
| | 5117 | way[is_prop_set(a2bl7, "Abbiegespur_2B_L_7")]::Abbiegespur_2B_L_7, |
| | 5118 | way[is_prop_set(a3bl7, "Abbiegespur_3B_L_7")]::Abbiegespur_3B_L_7, |
| | 5119 | way[is_prop_set(a4bl7, "Abbiegespur_4B_L_7")]::Abbiegespur_4B_L_7, |
| | 5120 | way[is_prop_set(a5bl7, "Abbiegespur_5B_L_7")]::Abbiegespur_5B_L_7, |
| | 5121 | way[is_prop_set(a6bl7, "Abbiegespur_6B_L_7")]::Abbiegespur_6B_L_7, |
| | 5122 | way[is_prop_set(a7bl7, "Abbiegespur_7B_L_7")]::Abbiegespur_7B_L_7, |
| | 5123 | way[is_prop_set(a8bl7, "Abbiegespur_8B_L_7")]::Abbiegespur_8B_L_7 |
| | 5124 | { dashes: 0, 12, 4, 84; } |
| | 5125 | |
| | 5126 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 5127 | /* */ |
| | 5128 | /* Fahrspurpfeil Links-Geradeaus vorwärts */ |
| | 5129 | /* */ |
| | 5130 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 5131 | way[is_prop_set(a1lg1, "Abbiegespur_1_LG_1")]::Abbiegespur_1_LG_1, |
| | 5132 | way[is_prop_set(a2gl1, "Abbiegespur_2_GL_1")]::Abbiegespur_2_GL_1, |
| | 5133 | way[is_prop_set(a3gl1, "Abbiegespur_3_GL_1")]::Abbiegespur_3_GL_1, |
| | 5134 | way[is_prop_set(a4gl1, "Abbiegespur_4_GL_1")]::Abbiegespur_4_GL_1, |
| | 5135 | way[is_prop_set(a5gl1, "Abbiegespur_5_GL_1")]::Abbiegespur_5_GL_1, |
| | 5136 | way[is_prop_set(a6gl1, "Abbiegespur_6_GL_1")]::Abbiegespur_6_GL_1, |
| | 5137 | way[is_prop_set(a7gl1, "Abbiegespur_7_GL_1")]::Abbiegespur_7_GL_1, |
| | 5138 | way[is_prop_set(a8gl1, "Abbiegespur_8_GL_1")]::Abbiegespur_8_GL_1 |
| | 5139 | { dashes: 0, 24, 3, 73; } |
| | 5140 | way[is_prop_set(a1lg2, "Abbiegespur_1_LG_2")]::Abbiegespur_1_LG_2, |
| | 5141 | way[is_prop_set(a2gl2, "Abbiegespur_2_GL_2")]::Abbiegespur_2_GL_2, |
| | 5142 | way[is_prop_set(a3gl2, "Abbiegespur_3_GL_2")]::Abbiegespur_3_GL_2, |
| | 5143 | way[is_prop_set(a4gl2, "Abbiegespur_4_GL_2")]::Abbiegespur_4_GL_2, |
| | 5144 | way[is_prop_set(a5gl2, "Abbiegespur_5_GL_2")]::Abbiegespur_5_GL_2, |
| | 5145 | way[is_prop_set(a6gl2, "Abbiegespur_6_GL_2")]::Abbiegespur_6_GL_2, |
| | 5146 | way[is_prop_set(a7gl2, "Abbiegespur_7_GL_2")]::Abbiegespur_7_GL_2, |
| | 5147 | way[is_prop_set(a8gl2, "Abbiegespur_8_GL_2")]::Abbiegespur_8_GL_2 |
| | 5148 | { dashes: 0, 21, 9, 70; } |
| | 5149 | way[is_prop_set(a1lg3, "Abbiegespur_1_LG_3")]::Abbiegespur_1_LG_3, |
| | 5150 | way[is_prop_set(a2gl3, "Abbiegespur_2_GL_3")]::Abbiegespur_2_GL_3, |
| | 5151 | way[is_prop_set(a3gl3, "Abbiegespur_3_GL_3")]::Abbiegespur_3_GL_3, |
| | 5152 | way[is_prop_set(a4gl3, "Abbiegespur_4_GL_3")]::Abbiegespur_4_GL_3, |
| | 5153 | way[is_prop_set(a5gl3, "Abbiegespur_5_GL_3")]::Abbiegespur_5_GL_3, |
| | 5154 | way[is_prop_set(a6gl3, "Abbiegespur_6_GL_3")]::Abbiegespur_6_GL_3, |
| | 5155 | way[is_prop_set(a7gl3, "Abbiegespur_7_GL_3")]::Abbiegespur_7_GL_3, |
| | 5156 | way[is_prop_set(a8gl3, "Abbiegespur_8_GL_3")]::Abbiegespur_8_GL_3 |
| | 5157 | { dashes: 0, 18, 15, 8, 3, 56; } |
| | 5158 | way[is_prop_set(a1lg4, "Abbiegespur_1_LG_4")]::Abbiegespur_1_LG_4, |
| | 5159 | way[is_prop_set(a2gl4, "Abbiegespur_2_GL_4")]::Abbiegespur_2_GL_4, |
| | 5160 | way[is_prop_set(a3gl4, "Abbiegespur_3_GL_4")]::Abbiegespur_3_GL_4, |
| | 5161 | way[is_prop_set(a4gl4, "Abbiegespur_4_GL_4")]::Abbiegespur_4_GL_4, |
| | 5162 | way[is_prop_set(a5gl4, "Abbiegespur_5_GL_4")]::Abbiegespur_5_GL_4, |
| | 5163 | way[is_prop_set(a6gl4, "Abbiegespur_6_GL_4")]::Abbiegespur_6_GL_4, |
| | 5164 | way[is_prop_set(a7gl4, "Abbiegespur_7_GL_4")]::Abbiegespur_7_GL_4, |
| | 5165 | way[is_prop_set(a8gl4, "Abbiegespur_8_GL_4")]::Abbiegespur_8_GL_4 |
| | 5166 | { dashes: 0, 24, 2, 15, 6, 53; } |
| | 5167 | way[is_prop_set(a1lg5, "Abbiegespur_1_LG_5")]::Abbiegespur_1_LG_5, |
| | 5168 | way[is_prop_set(a2gl5, "Abbiegespur_2_GL_5")]::Abbiegespur_2_GL_5, |
| | 5169 | way[is_prop_set(a3gl5, "Abbiegespur_3_GL_5")]::Abbiegespur_3_GL_5, |
| | 5170 | way[is_prop_set(a4gl5, "Abbiegespur_4_GL_5")]::Abbiegespur_4_GL_5, |
| | 5171 | way[is_prop_set(a5gl5, "Abbiegespur_5_GL_5")]::Abbiegespur_5_GL_5, |
| | 5172 | way[is_prop_set(a6gl5, "Abbiegespur_6_GL_5")]::Abbiegespur_6_GL_5, |
| | 5173 | way[is_prop_set(a7gl5, "Abbiegespur_7_GL_5")]::Abbiegespur_7_GL_5, |
| | 5174 | way[is_prop_set(a8gl5, "Abbiegespur_8_GL_5")]::Abbiegespur_8_GL_5 |
| | 5175 | { dashes: 50, 50; } |
| | 5176 | way[is_prop_set(a1lg6, "Abbiegespur_1_LG_6")]::Abbiegespur_1_LG_6, |
| | 5177 | way[is_prop_set(a2gl6, "Abbiegespur_2_GL_6")]::Abbiegespur_2_GL_6, |
| | 5178 | way[is_prop_set(a3gl6, "Abbiegespur_3_GL_6")]::Abbiegespur_3_GL_6, |
| | 5179 | way[is_prop_set(a4gl6, "Abbiegespur_4_GL_6")]::Abbiegespur_4_GL_6, |
| | 5180 | way[is_prop_set(a5gl6, "Abbiegespur_5_GL_6")]::Abbiegespur_5_GL_6, |
| | 5181 | way[is_prop_set(a6gl6, "Abbiegespur_6_GL_6")]::Abbiegespur_6_GL_6, |
| | 5182 | way[is_prop_set(a7gl6, "Abbiegespur_7_GL_6")]::Abbiegespur_7_GL_6, |
| | 5183 | way[is_prop_set(a8gl6, "Abbiegespur_8_GL_6")]::Abbiegespur_8_GL_6 |
| | 5184 | { dashes: 0, 41, 6, 53; } |
| | 5185 | way[is_prop_set(a1lg7, "Abbiegespur_1_LG_7")]::Abbiegespur_1_LG_7, |
| | 5186 | way[is_prop_set(a2gl7, "Abbiegespur_2_GL_7")]::Abbiegespur_2_GL_7, |
| | 5187 | way[is_prop_set(a3gl7, "Abbiegespur_3_GL_7")]::Abbiegespur_3_GL_7, |
| | 5188 | way[is_prop_set(a4gl7, "Abbiegespur_4_GL_7")]::Abbiegespur_4_GL_7, |
| | 5189 | way[is_prop_set(a5gl7, "Abbiegespur_5_GL_7")]::Abbiegespur_5_GL_7, |
| | 5190 | way[is_prop_set(a6gl7, "Abbiegespur_6_GL_7")]::Abbiegespur_6_GL_7, |
| | 5191 | way[is_prop_set(a7gl7, "Abbiegespur_7_GL_7")]::Abbiegespur_7_GL_7, |
| | 5192 | way[is_prop_set(a8gl7, "Abbiegespur_8_GL_7")]::Abbiegespur_8_GL_7 |
| | 5193 | { dashes: 0, 41, 3, 56; } |
| | 5194 | |
| | 5195 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 5196 | /* */ |
| | 5197 | /* Fahrspurpfeil Links-Geradeaus rückwärts */ |
| | 5198 | /* */ |
| | 5199 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 5200 | way[is_prop_set(a1blg1, "Abbiegespur_1B_LG_1")]::Abbiegespur_1B_LG_1, |
| | 5201 | way[is_prop_set(a2blg1, "Abbiegespur_2B_LG_1")]::Abbiegespur_2B_LG_1, |
| | 5202 | way[is_prop_set(a3blg1, "Abbiegespur_3B_LG_1")]::Abbiegespur_3B_LG_1, |
| | 5203 | way[is_prop_set(a4blg1, "Abbiegespur_4B_LG_1")]::Abbiegespur_4B_LG_1, |
| | 5204 | way[is_prop_set(a5blg1, "Abbiegespur_5B_LG_1")]::Abbiegespur_5B_LG_1, |
| | 5205 | way[is_prop_set(a6blg1, "Abbiegespur_6B_LG_1")]::Abbiegespur_6B_LG_1, |
| | 5206 | way[is_prop_set(a7blg1, "Abbiegespur_7B_LG_1")]::Abbiegespur_7B_LG_1, |
| | 5207 | way[is_prop_set(a8blg1, "Abbiegespur_8B_LG_1")]::Abbiegespur_8B_LG_1 |
| | 5208 | { dashes: 0, 6, 3, 91; } |
| | 5209 | way[is_prop_set(a1blg2, "Abbiegespur_1B_LG_2")]::Abbiegespur_1B_LG_2, |
| | 5210 | way[is_prop_set(a2blg2, "Abbiegespur_2B_LG_2")]::Abbiegespur_2B_LG_2, |
| | 5211 | way[is_prop_set(a3blg2, "Abbiegespur_3B_LG_2")]::Abbiegespur_3B_LG_2, |
| | 5212 | way[is_prop_set(a4blg2, "Abbiegespur_4B_LG_2")]::Abbiegespur_4B_LG_2, |
| | 5213 | way[is_prop_set(a5blg2, "Abbiegespur_5B_LG_2")]::Abbiegespur_5B_LG_2, |
| | 5214 | way[is_prop_set(a6blg2, "Abbiegespur_6B_LG_2")]::Abbiegespur_6B_LG_2, |
| | 5215 | way[is_prop_set(a7blg2, "Abbiegespur_7B_LG_2")]::Abbiegespur_7B_LG_2, |
| | 5216 | way[is_prop_set(a8blg2, "Abbiegespur_8B_LG_2")]::Abbiegespur_8B_LG_2 |
| | 5217 | { dashes: 0, 3, 6, 91; } |
| | 5218 | way[is_prop_set(a1blg3, "Abbiegespur_1B_LG_3")]::Abbiegespur_1B_LG_3, |
| | 5219 | way[is_prop_set(a2blg3, "Abbiegespur_2B_LG_3")]::Abbiegespur_2B_LG_3, |
| | 5220 | way[is_prop_set(a3blg3, "Abbiegespur_3B_LG_3")]::Abbiegespur_3B_LG_3, |
| | 5221 | way[is_prop_set(a4blg3, "Abbiegespur_4B_LG_3")]::Abbiegespur_4B_LG_3, |
| | 5222 | way[is_prop_set(a5blg3, "Abbiegespur_5B_LG_3")]::Abbiegespur_5B_LG_3, |
| | 5223 | way[is_prop_set(a6blg3, "Abbiegespur_6B_LG_3")]::Abbiegespur_6B_LG_3, |
| | 5224 | way[is_prop_set(a7blg3, "Abbiegespur_7B_LG_3")]::Abbiegespur_7B_LG_3, |
| | 5225 | way[is_prop_set(a8blg3, "Abbiegespur_8B_LG_3")]::Abbiegespur_8B_LG_3 |
| | 5226 | { dashes: 50, 50; } |
| | 5227 | way[is_prop_set(a1blg4, "Abbiegespur_1B_LG_4")]::Abbiegespur_1B_LG_4, |
| | 5228 | way[is_prop_set(a2blg4, "Abbiegespur_2B_LG_4")]::Abbiegespur_2B_LG_4, |
| | 5229 | way[is_prop_set(a3blg4, "Abbiegespur_3B_LG_4")]::Abbiegespur_3B_LG_4, |
| | 5230 | way[is_prop_set(a4blg4, "Abbiegespur_4B_LG_4")]::Abbiegespur_4B_LG_4, |
| | 5231 | way[is_prop_set(a5blg4, "Abbiegespur_5B_LG_4")]::Abbiegespur_5B_LG_4, |
| | 5232 | way[is_prop_set(a6blg4, "Abbiegespur_6B_LG_4")]::Abbiegespur_6B_LG_4, |
| | 5233 | way[is_prop_set(a7blg4, "Abbiegespur_7B_LG_4")]::Abbiegespur_7B_LG_4, |
| | 5234 | way[is_prop_set(a8blg4, "Abbiegespur_8B_LG_4")]::Abbiegespur_8B_LG_4 |
| | 5235 | { dashes: 0, 3, 6, 15, 2, 74; } |
| | 5236 | way[is_prop_set(a1blg5, "Abbiegespur_1B_LG_5")]::Abbiegespur_1B_LG_5, |
| | 5237 | way[is_prop_set(a2blg5, "Abbiegespur_2B_LG_5")]::Abbiegespur_2B_LG_5, |
| | 5238 | way[is_prop_set(a3blg5, "Abbiegespur_3B_LG_5")]::Abbiegespur_3B_LG_5, |
| | 5239 | way[is_prop_set(a4blg5, "Abbiegespur_4B_LG_5")]::Abbiegespur_4B_LG_5, |
| | 5240 | way[is_prop_set(a5blg5, "Abbiegespur_5B_LG_5")]::Abbiegespur_5B_LG_5, |
| | 5241 | way[is_prop_set(a6blg5, "Abbiegespur_6B_LG_5")]::Abbiegespur_6B_LG_5, |
| | 5242 | way[is_prop_set(a7blg5, "Abbiegespur_7B_LG_5")]::Abbiegespur_7B_LG_5, |
| | 5243 | way[is_prop_set(a8blg5, "Abbiegespur_8B_LG_5")]::Abbiegespur_8B_LG_5 |
| | 5244 | { dashes: 0, 6, 3, 8, 15, 68; } |
| | 5245 | way[is_prop_set(a1blg6, "Abbiegespur_1B_LG_6")]::Abbiegespur_1B_LG_6, |
| | 5246 | way[is_prop_set(a2blg6, "Abbiegespur_2B_LG_6")]::Abbiegespur_2B_LG_6, |
| | 5247 | way[is_prop_set(a3blg6, "Abbiegespur_3B_LG_6")]::Abbiegespur_3B_LG_6, |
| | 5248 | way[is_prop_set(a4blg6, "Abbiegespur_4B_LG_6")]::Abbiegespur_4B_LG_6, |
| | 5249 | way[is_prop_set(a5blg6, "Abbiegespur_5B_LG_6")]::Abbiegespur_5B_LG_6, |
| | 5250 | way[is_prop_set(a6blg6, "Abbiegespur_6B_LG_6")]::Abbiegespur_6B_LG_6, |
| | 5251 | way[is_prop_set(a7blg6, "Abbiegespur_7B_LG_6")]::Abbiegespur_7B_LG_6, |
| | 5252 | way[is_prop_set(a8blg6, "Abbiegespur_8B_LG_6")]::Abbiegespur_8B_LG_6 |
| | 5253 | { dashes: 0, 20, 9, 71; } |
| | 5254 | way[is_prop_set(a1blg7, "Abbiegespur_1B_LG_7")]::Abbiegespur_1B_LG_7, |
| | 5255 | way[is_prop_set(a2blg7, "Abbiegespur_2B_LG_7")]::Abbiegespur_2B_LG_7, |
| | 5256 | way[is_prop_set(a3blg7, "Abbiegespur_3B_LG_7")]::Abbiegespur_3B_LG_7, |
| | 5257 | way[is_prop_set(a4blg7, "Abbiegespur_4B_LG_7")]::Abbiegespur_4B_LG_7, |
| | 5258 | way[is_prop_set(a5blg7, "Abbiegespur_5B_LG_7")]::Abbiegespur_5B_LG_7, |
| | 5259 | way[is_prop_set(a6blg7, "Abbiegespur_6B_LG_7")]::Abbiegespur_6B_LG_7, |
| | 5260 | way[is_prop_set(a7blg7, "Abbiegespur_7B_LG_7")]::Abbiegespur_7B_LG_7, |
| | 5261 | way[is_prop_set(a8blg7, "Abbiegespur_8B_LG_7")]::Abbiegespur_8B_LG_7 |
| | 5262 | { dashes: 0, 23, 3, 74; } |
| | 5263 | |
| | 5264 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 5265 | /* */ |
| | 5266 | /* Fahrspurpfeil Rechts-Geradeaus vorwärts */ |
| | 5267 | /* */ |
| | 5268 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 5269 | way[is_prop_set(a1rg1, "Abbiegespur_1_RG_1")]::Abbiegespur_1_RG_1, |
| | 5270 | way[is_prop_set(a2gr1, "Abbiegespur_2_GR_1")]::Abbiegespur_2_GR_1, |
| | 5271 | way[is_prop_set(a3gr1, "Abbiegespur_3_GR_1")]::Abbiegespur_3_GR_1, |
| | 5272 | way[is_prop_set(a4gr1, "Abbiegespur_4_GR_1")]::Abbiegespur_4_GR_1, |
| | 5273 | way[is_prop_set(a5gr1, "Abbiegespur_5_GR_1")]::Abbiegespur_5_GR_1, |
| | 5274 | way[is_prop_set(a6gr1, "Abbiegespur_6_GR_1")]::Abbiegespur_6_GR_1, |
| | 5275 | way[is_prop_set(a7gr1, "Abbiegespur_7_GR_1")]::Abbiegespur_7_GR_1, |
| | 5276 | way[is_prop_set(a8gr1, "Abbiegespur_8_GR_1")]::Abbiegespur_8_GR_1 |
| | 5277 | { dashes: 0, 41, 3, 56; } |
| | 5278 | way[is_prop_set(a1rg2, "Abbiegespur_1_RG_2")]::Abbiegespur_1_RG_2, |
| | 5279 | way[is_prop_set(a2gr2, "Abbiegespur_2_GR_2")]::Abbiegespur_2_GR_2, |
| | 5280 | way[is_prop_set(a3gr2, "Abbiegespur_3_GR_2")]::Abbiegespur_3_GR_2, |
| | 5281 | way[is_prop_set(a4gr2, "Abbiegespur_4_GR_2")]::Abbiegespur_4_GR_2, |
| | 5282 | way[is_prop_set(a5gr2, "Abbiegespur_5_GR_2")]::Abbiegespur_5_GR_2, |
| | 5283 | way[is_prop_set(a6gr2, "Abbiegespur_6_GR_2")]::Abbiegespur_6_GR_2, |
| | 5284 | way[is_prop_set(a7gr2, "Abbiegespur_7_GR_2")]::Abbiegespur_7_GR_2, |
| | 5285 | way[is_prop_set(a8gr2, "Abbiegespur_8_GR_2")]::Abbiegespur_8_GR_2 |
| | 5286 | { dashes: 0, 41, 6, 53; } |
| | 5287 | way[is_prop_set(a1rg3, "Abbiegespur_1_RG_3")]::Abbiegespur_1_RG_3, |
| | 5288 | way[is_prop_set(a2gr3, "Abbiegespur_2_GR_3")]::Abbiegespur_2_GR_3, |
| | 5289 | way[is_prop_set(a3gr3, "Abbiegespur_3_GR_3")]::Abbiegespur_3_GR_3, |
| | 5290 | way[is_prop_set(a4gr3, "Abbiegespur_4_GR_3")]::Abbiegespur_4_GR_3, |
| | 5291 | way[is_prop_set(a5gr3, "Abbiegespur_5_GR_3")]::Abbiegespur_5_GR_3, |
| | 5292 | way[is_prop_set(a6gr3, "Abbiegespur_6_GR_3")]::Abbiegespur_6_GR_3, |
| | 5293 | way[is_prop_set(a7gr3, "Abbiegespur_7_GR_3")]::Abbiegespur_7_GR_3, |
| | 5294 | way[is_prop_set(a8gr3, "Abbiegespur_8_GR_3")]::Abbiegespur_8_GR_3 |
| | 5295 | { dashes: 50, 50; } |
| | 5296 | way[is_prop_set(a1rg4, "Abbiegespur_1_RG_4")]::Abbiegespur_1_RG_4, |
| | 5297 | way[is_prop_set(a2gr4, "Abbiegespur_2_GR_4")]::Abbiegespur_2_GR_4, |
| | 5298 | way[is_prop_set(a3gr4, "Abbiegespur_3_GR_4")]::Abbiegespur_3_GR_4, |
| | 5299 | way[is_prop_set(a4gr4, "Abbiegespur_4_GR_4")]::Abbiegespur_4_GR_4, |
| | 5300 | way[is_prop_set(a5gr4, "Abbiegespur_5_GR_4")]::Abbiegespur_5_GR_4, |
| | 5301 | way[is_prop_set(a6gr4, "Abbiegespur_6_GR_4")]::Abbiegespur_6_GR_4, |
| | 5302 | way[is_prop_set(a7gr4, "Abbiegespur_7_GR_4")]::Abbiegespur_7_GR_4, |
| | 5303 | way[is_prop_set(a8gr4, "Abbiegespur_8_GR_4")]::Abbiegespur_8_GR_4 |
| | 5304 | { dashes: 0, 24, 2, 15, 6, 53; } |
| | 5305 | way[is_prop_set(a1rg5, "Abbiegespur_1_RG_5")]::Abbiegespur_1_RG_5, |
| | 5306 | way[is_prop_set(a2gr5, "Abbiegespur_2_GR_5")]::Abbiegespur_2_GR_5, |
| | 5307 | way[is_prop_set(a3gr5, "Abbiegespur_3_GR_5")]::Abbiegespur_3_GR_5, |
| | 5308 | way[is_prop_set(a4gr5, "Abbiegespur_4_GR_5")]::Abbiegespur_4_GR_5, |
| | 5309 | way[is_prop_set(a5gr5, "Abbiegespur_5_GR_5")]::Abbiegespur_5_GR_5, |
| | 5310 | way[is_prop_set(a6gr5, "Abbiegespur_6_GR_5")]::Abbiegespur_6_GR_5, |
| | 5311 | way[is_prop_set(a7gr5, "Abbiegespur_7_GR_5")]::Abbiegespur_7_GR_5, |
| | 5312 | way[is_prop_set(a8gr5, "Abbiegespur_8_GR_5")]::Abbiegespur_8_GR_5 |
| | 5313 | { dashes: 0, 18, 15, 8, 3, 56; } |
| | 5314 | way[is_prop_set(a1rg6, "Abbiegespur_1_RG_6")]::Abbiegespur_1_RG_6, |
| | 5315 | way[is_prop_set(a2gr6, "Abbiegespur_2_GR_6")]::Abbiegespur_2_GR_6, |
| | 5316 | way[is_prop_set(a3gr6, "Abbiegespur_3_GR_6")]::Abbiegespur_3_GR_6, |
| | 5317 | way[is_prop_set(a4gr6, "Abbiegespur_4_GR_6")]::Abbiegespur_4_GR_6, |
| | 5318 | way[is_prop_set(a5gr6, "Abbiegespur_5_GR_6")]::Abbiegespur_5_GR_6, |
| | 5319 | way[is_prop_set(a6gr6, "Abbiegespur_6_GR_6")]::Abbiegespur_6_GR_6, |
| | 5320 | way[is_prop_set(a7gr6, "Abbiegespur_7_GR_6")]::Abbiegespur_7_GR_6, |
| | 5321 | way[is_prop_set(a8gr6, "Abbiegespur_8_GR_6")]::Abbiegespur_8_GR_6 |
| | 5322 | { dashes: 0, 21, 9, 70; } |
| | 5323 | way[is_prop_set(a1rg7, "Abbiegespur_1_RG_7")]::Abbiegespur_1_RG_7, |
| | 5324 | way[is_prop_set(a2gr7, "Abbiegespur_2_GR_7")]::Abbiegespur_2_GR_7, |
| | 5325 | way[is_prop_set(a3gr7, "Abbiegespur_3_GR_7")]::Abbiegespur_3_GR_7, |
| | 5326 | way[is_prop_set(a4gr7, "Abbiegespur_4_GR_7")]::Abbiegespur_4_GR_7, |
| | 5327 | way[is_prop_set(a5gr7, "Abbiegespur_5_GR_7")]::Abbiegespur_5_GR_7, |
| | 5328 | way[is_prop_set(a6gr7, "Abbiegespur_6_GR_7")]::Abbiegespur_6_GR_7, |
| | 5329 | way[is_prop_set(a7gr7, "Abbiegespur_7_GR_7")]::Abbiegespur_7_GR_7, |
| | 5330 | way[is_prop_set(a8gr7, "Abbiegespur_8_GR_7")]::Abbiegespur_8_GR_7 |
| | 5331 | { dashes: 0, 24, 3, 73; } |
| | 5332 | |
| | 5333 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 5334 | /* */ |
| | 5335 | /* Fahrspurpfeil Rechts-Geradeaus rückwärts */ |
| | 5336 | /* */ |
| | 5337 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 5338 | way[is_prop_set(a1brg1, "Abbiegespur_1B_RG_1")]::Abbiegespur_1B_RG_1, |
| | 5339 | way[is_prop_set(a2brg1, "Abbiegespur_2B_RG_1")]::Abbiegespur_2B_RG_1, |
| | 5340 | way[is_prop_set(a3brg1, "Abbiegespur_3B_RG_1")]::Abbiegespur_3B_RG_1, |
| | 5341 | way[is_prop_set(a4brg1, "Abbiegespur_4B_RG_1")]::Abbiegespur_4B_RG_1, |
| | 5342 | way[is_prop_set(a5brg1, "Abbiegespur_5B_RG_1")]::Abbiegespur_5B_RG_1, |
| | 5343 | way[is_prop_set(a6brg1, "Abbiegespur_6B_RG_1")]::Abbiegespur_6B_RG_1, |
| | 5344 | way[is_prop_set(a7brg1, "Abbiegespur_7B_RG_1")]::Abbiegespur_7B_RG_1, |
| | 5345 | way[is_prop_set(a8brg1, "Abbiegespur_8B_RG_1")]::Abbiegespur_8B_RG_1 |
| | 5346 | { dashes: 0, 23, 3, 74; } |
| | 5347 | way[is_prop_set(a1brg2, "Abbiegespur_1B_RG_2")]::Abbiegespur_1B_RG_2, |
| | 5348 | way[is_prop_set(a2brg2, "Abbiegespur_2B_RG_2")]::Abbiegespur_2B_RG_2, |
| | 5349 | way[is_prop_set(a3brg2, "Abbiegespur_3B_RG_2")]::Abbiegespur_3B_RG_2, |
| | 5350 | way[is_prop_set(a4brg2, "Abbiegespur_4B_RG_2")]::Abbiegespur_4B_RG_2, |
| | 5351 | way[is_prop_set(a5brg2, "Abbiegespur_5B_RG_2")]::Abbiegespur_5B_RG_2, |
| | 5352 | way[is_prop_set(a6brg2, "Abbiegespur_6B_RG_2")]::Abbiegespur_6B_RG_2, |
| | 5353 | way[is_prop_set(a7brg2, "Abbiegespur_7B_RG_2")]::Abbiegespur_7B_RG_2, |
| | 5354 | way[is_prop_set(a8brg2, "Abbiegespur_8B_RG_2")]::Abbiegespur_8B_RG_2 |
| | 5355 | { dashes: 0, 20, 9, 71; } |
| | 5356 | way[is_prop_set(a1brg3, "Abbiegespur_1B_RG_3")]::Abbiegespur_1B_RG_3, |
| | 5357 | way[is_prop_set(a2brg3, "Abbiegespur_2B_RG_3")]::Abbiegespur_2B_RG_3, |
| | 5358 | way[is_prop_set(a3brg3, "Abbiegespur_3B_RG_3")]::Abbiegespur_3B_RG_3, |
| | 5359 | way[is_prop_set(a4brg3, "Abbiegespur_4B_RG_3")]::Abbiegespur_4B_RG_3, |
| | 5360 | way[is_prop_set(a5brg3, "Abbiegespur_5B_RG_3")]::Abbiegespur_5B_RG_3, |
| | 5361 | way[is_prop_set(a6brg3, "Abbiegespur_6B_RG_3")]::Abbiegespur_6B_RG_3, |
| | 5362 | way[is_prop_set(a7brg3, "Abbiegespur_7B_RG_3")]::Abbiegespur_7B_RG_3, |
| | 5363 | way[is_prop_set(a8brg3, "Abbiegespur_8B_RG_3")]::Abbiegespur_8B_RG_3 |
| | 5364 | { dashes: 0, 6, 3, 8, 15, 68; } |
| | 5365 | way[is_prop_set(a1brg4, "Abbiegespur_1B_RG_4")]::Abbiegespur_1B_RG_4, |
| | 5366 | way[is_prop_set(a2brg4, "Abbiegespur_2B_RG_4")]::Abbiegespur_2B_RG_4, |
| | 5367 | way[is_prop_set(a3brg4, "Abbiegespur_3B_RG_4")]::Abbiegespur_3B_RG_4, |
| | 5368 | way[is_prop_set(a4brg4, "Abbiegespur_4B_RG_4")]::Abbiegespur_4B_RG_4, |
| | 5369 | way[is_prop_set(a5brg4, "Abbiegespur_5B_RG_4")]::Abbiegespur_5B_RG_4, |
| | 5370 | way[is_prop_set(a6brg4, "Abbiegespur_6B_RG_4")]::Abbiegespur_6B_RG_4, |
| | 5371 | way[is_prop_set(a7brg4, "Abbiegespur_7B_RG_4")]::Abbiegespur_7B_RG_4, |
| | 5372 | way[is_prop_set(a8brg4, "Abbiegespur_8B_RG_4")]::Abbiegespur_8B_RG_4 |
| | 5373 | { dashes: 0, 3, 6, 15, 2, 74; } |
| | 5374 | way[is_prop_set(a1brg5, "Abbiegespur_1B_RG_5")]::Abbiegespur_1B_RG_5, |
| | 5375 | way[is_prop_set(a2brg5, "Abbiegespur_2B_RG_5")]::Abbiegespur_2B_RG_5, |
| | 5376 | way[is_prop_set(a3brg5, "Abbiegespur_3B_RG_5")]::Abbiegespur_3B_RG_5, |
| | 5377 | way[is_prop_set(a4brg5, "Abbiegespur_4B_RG_5")]::Abbiegespur_4B_RG_5, |
| | 5378 | way[is_prop_set(a5brg5, "Abbiegespur_5B_RG_5")]::Abbiegespur_5B_RG_5, |
| | 5379 | way[is_prop_set(a6brg5, "Abbiegespur_6B_RG_5")]::Abbiegespur_6B_RG_5, |
| | 5380 | way[is_prop_set(a7brg5, "Abbiegespur_7B_RG_5")]::Abbiegespur_7B_RG_5, |
| | 5381 | way[is_prop_set(a8brg5, "Abbiegespur_8B_RG_5")]::Abbiegespur_8B_RG_5 |
| | 5382 | { dashes: 50, 50; } |
| | 5383 | way[is_prop_set(a1brg6, "Abbiegespur_1B_RG_6")]::Abbiegespur_1B_RG_6, |
| | 5384 | way[is_prop_set(a2brg6, "Abbiegespur_2B_RG_6")]::Abbiegespur_2B_RG_6, |
| | 5385 | way[is_prop_set(a3brg6, "Abbiegespur_3B_RG_6")]::Abbiegespur_3B_RG_6, |
| | 5386 | way[is_prop_set(a4brg6, "Abbiegespur_4B_RG_6")]::Abbiegespur_4B_RG_6, |
| | 5387 | way[is_prop_set(a5brg6, "Abbiegespur_5B_RG_6")]::Abbiegespur_5B_RG_6, |
| | 5388 | way[is_prop_set(a6brg6, "Abbiegespur_6B_RG_6")]::Abbiegespur_6B_RG_6, |
| | 5389 | way[is_prop_set(a7brg6, "Abbiegespur_7B_RG_6")]::Abbiegespur_7B_RG_6, |
| | 5390 | way[is_prop_set(a8brg6, "Abbiegespur_8B_RG_6")]::Abbiegespur_8B_RG_6 |
| | 5391 | { dashes: 0, 3, 6, 91; } |
| | 5392 | way[is_prop_set(a1brg7, "Abbiegespur_1B_RG_7")]::Abbiegespur_1B_RG_7, |
| | 5393 | way[is_prop_set(a2brg7, "Abbiegespur_2B_RG_7")]::Abbiegespur_2B_RG_7, |
| | 5394 | way[is_prop_set(a3brg7, "Abbiegespur_3B_RG_7")]::Abbiegespur_3B_RG_7, |
| | 5395 | way[is_prop_set(a4brg7, "Abbiegespur_4B_RG_7")]::Abbiegespur_4B_RG_7, |
| | 5396 | way[is_prop_set(a5brg7, "Abbiegespur_5B_RG_7")]::Abbiegespur_5B_RG_7, |
| | 5397 | way[is_prop_set(a6brg7, "Abbiegespur_6B_RG_7")]::Abbiegespur_6B_RG_7, |
| | 5398 | way[is_prop_set(a7brg7, "Abbiegespur_7B_RG_7")]::Abbiegespur_7B_RG_7, |
| | 5399 | way[is_prop_set(a8brg7, "Abbiegespur_8B_RG_7")]::Abbiegespur_8B_RG_7 |
| | 5400 | { dashes: 0, 6, 3, 91; } |
| | 5401 | |
| | 5402 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 5403 | /* */ |
| | 5404 | /* Fahrspurpfeil Links-Rechts vorwärts */ |
| | 5405 | /* */ |
| | 5406 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 5407 | way[is_prop_set(a1rl1, "Abbiegespur_1_RL_1")]::Abbiegespur_1_RL_1, |
| | 5408 | way[is_prop_set(a2rl1, "Abbiegespur_2_RL_1")]::Abbiegespur_2_RL_1, |
| | 5409 | way[is_prop_set(a3rl1, "Abbiegespur_3_RL_1")]::Abbiegespur_3_RL_1, |
| | 5410 | way[is_prop_set(a4rl1, "Abbiegespur_4_RL_1")]::Abbiegespur_4_RL_1, |
| | 5411 | way[is_prop_set(a5rl1, "Abbiegespur_5_RL_1")]::Abbiegespur_5_RL_1, |
| | 5412 | way[is_prop_set(a6rl1, "Abbiegespur_6_RL_1")]::Abbiegespur_6_RL_1, |
| | 5413 | way[is_prop_set(a7rl1, "Abbiegespur_7_RL_1")]::Abbiegespur_7_RL_1, |
| | 5414 | way[is_prop_set(a8rl1, "Abbiegespur_8_RL_1")]::Abbiegespur_8_RL_1 |
| | 5415 | { dashes: 0, 100; } |
| | 5416 | way[is_prop_set(a1rl2, "Abbiegespur_1_RL_2")]::Abbiegespur_1_RL_2, |
| | 5417 | way[is_prop_set(a2rl2, "Abbiegespur_2_RL_2")]::Abbiegespur_2_RL_2, |
| | 5418 | way[is_prop_set(a3rl2, "Abbiegespur_3_RL_2")]::Abbiegespur_3_RL_2, |
| | 5419 | way[is_prop_set(a4rl2, "Abbiegespur_4_RL_2")]::Abbiegespur_4_RL_2, |
| | 5420 | way[is_prop_set(a5rl2, "Abbiegespur_5_RL_2")]::Abbiegespur_5_RL_2, |
| | 5421 | way[is_prop_set(a6rl2, "Abbiegespur_6_RL_2")]::Abbiegespur_6_RL_2, |
| | 5422 | way[is_prop_set(a7rl2, "Abbiegespur_7_RL_2")]::Abbiegespur_7_RL_2, |
| | 5423 | way[is_prop_set(a8rl2, "Abbiegespur_8_RL_2")]::Abbiegespur_8_RL_2 |
| | 5424 | { dashes: 0, 12, 3, 8, 27, 50; } |
| | 5425 | way[is_prop_set(a1rl3, "Abbiegespur_1_RL_3")]::Abbiegespur_1_RL_3, |
| | 5426 | way[is_prop_set(a2rl3, "Abbiegespur_2_RL_3")]::Abbiegespur_2_RL_3, |
| | 5427 | way[is_prop_set(a3rl3, "Abbiegespur_3_RL_3")]::Abbiegespur_3_RL_3, |
| | 5428 | way[is_prop_set(a4rl3, "Abbiegespur_4_RL_3")]::Abbiegespur_4_RL_3, |
| | 5429 | way[is_prop_set(a5rl3, "Abbiegespur_5_RL_3")]::Abbiegespur_5_RL_3, |
| | 5430 | way[is_prop_set(a6rl3, "Abbiegespur_6_RL_3")]::Abbiegespur_6_RL_3, |
| | 5431 | way[is_prop_set(a7rl3, "Abbiegespur_7_RL_3")]::Abbiegespur_7_RL_3, |
| | 5432 | way[is_prop_set(a8rl3, "Abbiegespur_8_RL_3")]::Abbiegespur_8_RL_3 |
| | 5433 | { dashes: 0, 9, 9, 8, 21, 53; } |
| | 5434 | way[is_prop_set(a1rl4, "Abbiegespur_1_RL_4")]::Abbiegespur_1_RL_4, |
| | 5435 | way[is_prop_set(a2rl4, "Abbiegespur_2_RL_4")]::Abbiegespur_2_RL_4, |
| | 5436 | way[is_prop_set(a3rl4, "Abbiegespur_3_RL_4")]::Abbiegespur_3_RL_4, |
| | 5437 | way[is_prop_set(a4rl4, "Abbiegespur_4_RL_4")]::Abbiegespur_4_RL_4, |
| | 5438 | way[is_prop_set(a5rl4, "Abbiegespur_5_RL_4")]::Abbiegespur_5_RL_4, |
| | 5439 | way[is_prop_set(a6rl4, "Abbiegespur_6_RL_4")]::Abbiegespur_6_RL_4, |
| | 5440 | way[is_prop_set(a7rl4, "Abbiegespur_7_RL_4")]::Abbiegespur_7_RL_4, |
| | 5441 | way[is_prop_set(a8rl4, "Abbiegespur_8_RL_4")]::Abbiegespur_8_RL_4 |
| | 5442 | { dashes: 0, 6, 15, 8, 15, 56; } |
| | 5443 | way[is_prop_set(a1rl5, "Abbiegespur_1_RL_5")]::Abbiegespur_1_RL_5, |
| | 5444 | way[is_prop_set(a2rl5, "Abbiegespur_2_RL_5")]::Abbiegespur_2_RL_5, |
| | 5445 | way[is_prop_set(a3rl5, "Abbiegespur_3_RL_5")]::Abbiegespur_3_RL_5, |
| | 5446 | way[is_prop_set(a4rl5, "Abbiegespur_4_RL_5")]::Abbiegespur_4_RL_5, |
| | 5447 | way[is_prop_set(a5rl5, "Abbiegespur_5_RL_5")]::Abbiegespur_5_RL_5, |
| | 5448 | way[is_prop_set(a6rl5, "Abbiegespur_6_RL_5")]::Abbiegespur_6_RL_5, |
| | 5449 | way[is_prop_set(a7rl5, "Abbiegespur_7_RL_5")]::Abbiegespur_7_RL_5, |
| | 5450 | way[is_prop_set(a8rl5, "Abbiegespur_8_RL_5")]::Abbiegespur_8_RL_5 |
| | 5451 | { dashes: 0, 3, 21, 8, 9, 59; } |
| | 5452 | way[is_prop_set(a1rl6, "Abbiegespur_1_RL_6")]::Abbiegespur_1_RL_6, |
| | 5453 | way[is_prop_set(a2rl6, "Abbiegespur_2_RL_6")]::Abbiegespur_2_RL_6, |
| | 5454 | way[is_prop_set(a3rl6, "Abbiegespur_3_RL_6")]::Abbiegespur_3_RL_6, |
| | 5455 | way[is_prop_set(a4rl6, "Abbiegespur_4_RL_6")]::Abbiegespur_4_RL_6, |
| | 5456 | way[is_prop_set(a5rl6, "Abbiegespur_5_RL_6")]::Abbiegespur_5_RL_6, |
| | 5457 | way[is_prop_set(a6rl6, "Abbiegespur_6_RL_6")]::Abbiegespur_6_RL_6, |
| | 5458 | way[is_prop_set(a7rl6, "Abbiegespur_7_RL_6")]::Abbiegespur_7_RL_6, |
| | 5459 | way[is_prop_set(a8rl6, "Abbiegespur_8_RL_6")]::Abbiegespur_8_RL_6 |
| | 5460 | { dashes: 27, 8, 3, 62; } |
| | 5461 | way[is_prop_set(a1rl7, "Abbiegespur_1_RL_7")]::Abbiegespur_1_RL_7, |
| | 5462 | way[is_prop_set(a2rl7, "Abbiegespur_2_RL_7")]::Abbiegespur_2_RL_7, |
| | 5463 | way[is_prop_set(a3rl7, "Abbiegespur_3_RL_7")]::Abbiegespur_3_RL_7, |
| | 5464 | way[is_prop_set(a4rl7, "Abbiegespur_4_RL_7")]::Abbiegespur_4_RL_7, |
| | 5465 | way[is_prop_set(a5rl7, "Abbiegespur_5_RL_7")]::Abbiegespur_5_RL_7, |
| | 5466 | way[is_prop_set(a6rl7, "Abbiegespur_6_RL_7")]::Abbiegespur_6_RL_7, |
| | 5467 | way[is_prop_set(a7rl7, "Abbiegespur_7_RL_7")]::Abbiegespur_7_RL_7, |
| | 5468 | way[is_prop_set(a8rl7, "Abbiegespur_8_RL_7")]::Abbiegespur_8_RL_7 |
| | 5469 | { dashes: 0, 100; } |
| | 5470 | |
| | 5471 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 5472 | /* */ |
| | 5473 | /* Fahrspurpfeil Links-Rechts rückwärts */ |
| | 5474 | /* */ |
| | 5475 | /*-------------------------------------------------------------------------------------------------------------------------------------------------*/ |
| | 5476 | way[is_prop_set(a1brl1, "Abbiegespur_1B_RL_1")]::Abbiegespur_1B_RL_1, |
| | 5477 | way[is_prop_set(a2brl1, "Abbiegespur_2B_RL_1")]::Abbiegespur_2B_RL_1, |
| | 5478 | way[is_prop_set(a3brl1, "Abbiegespur_3B_RL_1")]::Abbiegespur_3B_RL_1, |
| | 5479 | way[is_prop_set(a4brl1, "Abbiegespur_4B_RL_1")]::Abbiegespur_4B_RL_1, |
| | 5480 | way[is_prop_set(a5brl1, "Abbiegespur_5B_RL_1")]::Abbiegespur_5B_RL_1, |
| | 5481 | way[is_prop_set(a6brl1, "Abbiegespur_6B_RL_1")]::Abbiegespur_6B_RL_1, |
| | 5482 | way[is_prop_set(a7brl1, "Abbiegespur_7B_RL_1")]::Abbiegespur_7B_RL_1, |
| | 5483 | way[is_prop_set(a8brl1, "Abbiegespur_8B_RL_1")]::Abbiegespur_8B_RL_1 |
| | 5484 | { dashes: 0, 100; } |
| | 5485 | way[is_prop_set(a1brl2, "Abbiegespur_1B_RL_2")]::Abbiegespur_1B_RL_2, |
| | 5486 | way[is_prop_set(a2brl2, "Abbiegespur_2B_RL_2")]::Abbiegespur_2B_RL_2, |
| | 5487 | way[is_prop_set(a3brl2, "Abbiegespur_3B_RL_2")]::Abbiegespur_3B_RL_2, |
| | 5488 | way[is_prop_set(a4brl2, "Abbiegespur_4B_RL_2")]::Abbiegespur_4B_RL_2, |
| | 5489 | way[is_prop_set(a5brl2, "Abbiegespur_5B_RL_2")]::Abbiegespur_5B_RL_2, |
| | 5490 | way[is_prop_set(a6brl2, "Abbiegespur_6B_RL_2")]::Abbiegespur_6B_RL_2, |
| | 5491 | way[is_prop_set(a7brl2, "Abbiegespur_7B_RL_2")]::Abbiegespur_7B_RL_2, |
| | 5492 | way[is_prop_set(a8brl2, "Abbiegespur_8B_RL_2")]::Abbiegespur_8B_RL_2 |
| | 5493 | { dashes: 27, 8, 3, 62; } |
| | 5494 | way[is_prop_set(a1brl3, "Abbiegespur_1B_RL_3")]::Abbiegespur_1B_RL_3, |
| | 5495 | way[is_prop_set(a2brl3, "Abbiegespur_2B_RL_3")]::Abbiegespur_2B_RL_3, |
| | 5496 | way[is_prop_set(a3brl3, "Abbiegespur_3B_RL_3")]::Abbiegespur_3B_RL_3, |
| | 5497 | way[is_prop_set(a4brl3, "Abbiegespur_4B_RL_3")]::Abbiegespur_4B_RL_3, |
| | 5498 | way[is_prop_set(a5brl3, "Abbiegespur_5B_RL_3")]::Abbiegespur_5B_RL_3, |
| | 5499 | way[is_prop_set(a6brl3, "Abbiegespur_6B_RL_3")]::Abbiegespur_6B_RL_3, |
| | 5500 | way[is_prop_set(a7brl3, "Abbiegespur_7B_RL_3")]::Abbiegespur_7B_RL_3, |
| | 5501 | way[is_prop_set(a8brl3, "Abbiegespur_8B_RL_3")]::Abbiegespur_8B_RL_3 |
| | 5502 | { dashes: 0, 3, 21, 8, 9, 59; } |
| | 5503 | way[is_prop_set(a1brl4, "Abbiegespur_1B_RL_4")]::Abbiegespur_1B_RL_4, |
| | 5504 | way[is_prop_set(a2brl4, "Abbiegespur_2B_RL_4")]::Abbiegespur_2B_RL_4, |
| | 5505 | way[is_prop_set(a3brl4, "Abbiegespur_3B_RL_4")]::Abbiegespur_3B_RL_4, |
| | 5506 | way[is_prop_set(a4brl4, "Abbiegespur_4B_RL_4")]::Abbiegespur_4B_RL_4, |
| | 5507 | way[is_prop_set(a5brl4, "Abbiegespur_5B_RL_4")]::Abbiegespur_5B_RL_4, |
| | 5508 | way[is_prop_set(a6brl4, "Abbiegespur_6B_RL_4")]::Abbiegespur_6B_RL_4, |
| | 5509 | way[is_prop_set(a7brl4, "Abbiegespur_7B_RL_4")]::Abbiegespur_7B_RL_4, |
| | 5510 | way[is_prop_set(a8brl4, "Abbiegespur_8B_RL_4")]::Abbiegespur_8B_RL_4 |
| | 5511 | { dashes: 0, 6, 15, 8, 15, 56; } |
| | 5512 | way[is_prop_set(a1brl5, "Abbiegespur_1B_RL_5")]::Abbiegespur_1B_RL_5, |
| | 5513 | way[is_prop_set(a2brl5, "Abbiegespur_2B_RL_5")]::Abbiegespur_2B_RL_5, |
| | 5514 | way[is_prop_set(a3brl5, "Abbiegespur_3B_RL_5")]::Abbiegespur_3B_RL_5, |
| | 5515 | way[is_prop_set(a4brl5, "Abbiegespur_4B_RL_5")]::Abbiegespur_4B_RL_5, |
| | 5516 | way[is_prop_set(a5brl5, "Abbiegespur_5B_RL_5")]::Abbiegespur_5B_RL_5, |
| | 5517 | way[is_prop_set(a6brl5, "Abbiegespur_6B_RL_5")]::Abbiegespur_6B_RL_5, |
| | 5518 | way[is_prop_set(a7brl5, "Abbiegespur_7B_RL_5")]::Abbiegespur_7B_RL_5, |
| | 5519 | way[is_prop_set(a8brl5, "Abbiegespur_8B_RL_5")]::Abbiegespur_8B_RL_5 |
| | 5520 | { dashes: 0, 9, 9, 8, 21, 53; } |
| | 5521 | way[is_prop_set(a1brl6, "Abbiegespur_1B_RL_6")]::Abbiegespur_1B_RL_6, |
| | 5522 | way[is_prop_set(a2brl6, "Abbiegespur_2B_RL_6")]::Abbiegespur_2B_RL_6, |
| | 5523 | way[is_prop_set(a3brl6, "Abbiegespur_3B_RL_6")]::Abbiegespur_3B_RL_6, |
| | 5524 | way[is_prop_set(a4brl6, "Abbiegespur_4B_RL_6")]::Abbiegespur_4B_RL_6, |
| | 5525 | way[is_prop_set(a5brl6, "Abbiegespur_5B_RL_6")]::Abbiegespur_5B_RL_6, |
| | 5526 | way[is_prop_set(a6brl6, "Abbiegespur_6B_RL_6")]::Abbiegespur_6B_RL_6, |
| | 5527 | way[is_prop_set(a7brl6, "Abbiegespur_7B_RL_6")]::Abbiegespur_7B_RL_6, |
| | 5528 | way[is_prop_set(a8brl6, "Abbiegespur_8B_RL_6")]::Abbiegespur_8B_RL_6 |
| | 5529 | { dashes: 0, 12, 3, 8, 27, 50; } |
| | 5530 | way[is_prop_set(a1brl7, "Abbiegespur_1B_RL_7")]::Abbiegespur_1B_RL_7, |
| | 5531 | way[is_prop_set(a2brl7, "Abbiegespur_2B_RL_7")]::Abbiegespur_2B_RL_7, |
| | 5532 | way[is_prop_set(a3brl7, "Abbiegespur_3B_RL_7")]::Abbiegespur_3B_RL_7, |
| | 5533 | way[is_prop_set(a4brl7, "Abbiegespur_4B_RL_7")]::Abbiegespur_4B_RL_7, |
| | 5534 | way[is_prop_set(a5brl7, "Abbiegespur_5B_RL_7")]::Abbiegespur_5B_RL_7, |
| | 5535 | way[is_prop_set(a6brl7, "Abbiegespur_6B_RL_7")]::Abbiegespur_6B_RL_7, |
| | 5536 | way[is_prop_set(a7brl7, "Abbiegespur_7B_RL_7")]::Abbiegespur_7B_RL_7, |
| | 5537 | way[is_prop_set(a8brl7, "Abbiegespur_8B_RL_7")]::Abbiegespur_8B_RL_7 |
| | 5538 | { dashes: 0, 100; } |
| | 5539 | }}} |