-
Notifications
You must be signed in to change notification settings - Fork 11
/
car_maxspeed.yaml
261 lines (251 loc) · 9.06 KB
/
car_maxspeed.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
type: overpass
name:
ca: Velocitat màxima
cs: Maximální rychlost
de: Höchstgeschwindigkeiten
en: Maxspeed
es: Velocidad máxima
fr: Limites de vitesse
gl: Velocidade máxima
hu: Sebességkorlátozás
it: Velocità massima
ja: 最高速度
nb: Fartsgrense
nl: Snelheidslimiet
oc: Limits de velocitat
pl: Prędkość maksymalna
pt: Velocidade máxima
pt-br: Veloc. máxima
ro: Viteza maximă
ru: Максимальная скорость
sr: Максимална брзина
tr: En yüksek hız
query:
11: way[highway~"^(motorway|trunk)$"];
13: way[highway~"^(motorway|motorway_link|trunk|trunk_link|primary|primary_link|secondary|tertiary)$"];
15: way[highway~"^(motorway|motorway_link|trunk|trunk_link|primary|primary_link|secondary|secondary_link|tertiary|tertiary_link|residential|unclassified)$"];
16: |-
(
way[highway~"^(motorway|motorway_link|trunk|trunk_link|primary|primary_link|secondary|secondary_link|tertiary|tertiary_link|residential|unclassified)$"];
node[traffic_sign~"^(|.*;)maxspeed(;.*|)$"];
)
17: |-
(
way[highway~"^(motorway|motorway_link|trunk|trunk_link|primary|primary_link|secondary|secondary_link|tertiary|tertiary_link|residential|unclassified|service|living_street|pedestrian|track|road)$"];
node[traffic_sign~"^(|.*;)maxspeed(;.*|)$"];
)
feature:
pre: |-
{% set maxspeedKmh = null %}
{% set maxspeed = null %}
{% set unit = null %}
{% if tags.maxspeed is defined %}
{% if const.colorOther[tags.maxspeed] %}
{% set maxspeed = tags.maxspeed %}
{% elseif tags.maxspeed|matches("^[0-9]+$") %}
{% set maxspeedKmh = tags.maxspeed %}
{% set maxspeed = tags.maxspeed %}
{% set unit = "km/h" %}
{% elseif tags.maxspeed|matches( "(^[0-9]+) mph$") %}
{% set m = tags.maxspeed|matches("(^[0-9]+) mph$") %}
{% set maxspeedKmh = m[1] * 1.60934 %}
{% set maxspeed = m[1] %}
{% set unit = "mph" %}
{% else %}
{% set maxspeed = 'other' %}
{% endif %}
{% endif %}
{% if attribute(tags, 'maxspeed:forward') is defined %}
{% set x = attribute(tags, 'maxspeed:forward') %}
{% if const.colorOther[x] %}
{% set maxspeedF = attribute(tags, 'maxspeed:forward') %}
{% elseif attribute(tags, 'maxspeed:forward')|matches("^[0-9]+$") %}
{% set maxspeedFKmh = attribute(tags, 'maxspeed:forward') %}
{% set maxspeedF = attribute(tags, 'maxspeed:forward') %}
{% set unit = "km/h" %}
{% elseif attribute(tags, 'maxspeed:forward')|matches("^[0-9]+ mph$") %}
{% set m = attribute(tags, 'maxspeed:forward')|matches("(^[0-9]+) mph$") %}
{% set maxspeedFKmh = m[1] * 1.60934 %}
{% set maxspeedF = m[1] %}
{% set unit = "mph" %}
{% else %}
{% set maxspeedF = 'other' %}
{% endif %}
{% endif %}
{% if attribute(tags, 'maxspeed:backward') is defined %}
{% set x = attribute(tags, 'maxspeed:backward') %}
{% if const.colorOther[x] %}
{% set maxspeedB = attribute(tags, 'maxspeed:backward') %}
{% elseif attribute(tags, 'maxspeed:backward')|matches("^[0-9]+$") %}
{% set maxspeedBKmh = attribute(tags, 'maxspeed:backward') %}
{% set maxspeedB = attribute(tags, 'maxspeed:backward') %}
{% set unit = "km/h" %}
{% elseif attribute(tags, 'maxspeed:backward')|matches("^[0-9]+ mph$") %}
{% set m = attribute(tags, 'maxspeed:backward')|matches("(^[0-9]+) mph$") %}
{% set maxspeedBKmh = m[1] * 1.60934 %}
{% set maxspeedB = m[1] %}
{% set unit = "mph" %}
{% else %}
{% set maxspeedB = 'other' %}
{% endif %}
{% endif %}
{% if const.colorOther[maxspeed] %}
{% set color = const.colorOther[maxspeed] %}
{% elseif not maxspeedKmh %}
{% set color = "#404040" %}
{% else %}
{% set color = colorInterpolate(const.colorMap, (maxspeedKmh - const.offsetColorSpeed) / const.highestColorSpeed) %}
{% endif %}
{% if const.colorOther[maxspeedF] %}
{% set colorF = const.colorOther[maxspeedF] %}
{% elseif maxspeedFKmh %}
{% set colorF = colorInterpolate(const.colorMap, (maxspeedFKmh - const.offsetColorSpeed) / const.highestColorSpeed) %}
{% endif %}
{% if const.colorOther[maxspeedB] %}
{% set colorB = const.colorOther[maxspeedB] %}
{% elseif maxspeedBKmh %}
{% set colorB = colorInterpolate(const.colorMap, (maxspeedBKmh - const.offsetColorSpeed) / const.highestColorSpeed) %}
{% endif %}
description: |-
{% if tags.highway %}
{{ tagTransList('highway', tags.highway) }}
{% else %}
{{ keyTrans('traffic_sign') }}: {{ tagTransList('traffic_sign', tags.traffic_sign) }}
{% endif %}
details: |-
{% if maxspeedF or maxspeedB %}
<span style='color: {{ colorB }}'>{{ maxspeedB == 'other' ? attribute(tags, 'maxspeed:backward') : const.colorOther[maxspeedB] ? tagTrans('maxspeed', maxspeedB) : maxspeedB|default(trans('unknown')) }}</span> / <span style='color: {{ colorF }}'>{{ maxspeedF == 'other' ? attribute(tags, 'maxspeed:forward') : const.colorOther[maxspeedF] ? tagTrans('maxspeed', maxspeedF) : maxspeedF|default(trans('unknown')) }}</span> {{ unit }}
{% elseif maxspeed %}
<span style='color: {{ color }}'>{{ maxspeed == 'other' ? tags.maxspeed : const.colorOther[maxspeed] ? tagTrans('maxspeed', maxspeed) : maxspeed }} {{ unit }}</span>
{% elseif tags.maxspeed %}
{{ tags.maxspeed }}
{% else %}
{{ trans('unknown') }}
{% endif %}
markerSymbol: |-
{% if not tags.highway %}
{{ markerCircle({ color: 'red', width: 2, fill: true, fillColor: '#ffffff', fillOpacity: 1, radius: 9 }) }}
{% endif %}
listMarkerSymbol: |-
{% if tags.highway %}
line
{% else %}
{{ markerCircle({ color: 'red', width: 2, fill: true, fillColor: '#ffffff', fillOpacity: 1, radius: 9 }) }}
{% endif %}
markerSign: |
{% if not tags.highway %}
<span style='font-size: 8pt;
{% if tags.direction != null %}
transform: rotate({{ tags.direction|parseDirection|default(0) + 180 }}deg);
{% endif %}
'>{{ tags.maxspeed|default('?') }}</span>
{% endif %}
listMarkerSign: |
{% if not tags.highway %}
<span style='font-size: 8pt;'>{{ tags.maxspeed|default('?') }}</span>
{% endif %}
styles: |-
{% if not tags.highway %}
traffic_sign
{% elseif maxspeedB or maxspeedF %}
left,right,default
{% else %}
default
{% endif %}
style:
width: '{% if maxspeedB or maxspeedF %}0{% else %}4{% endif %}'
color: '{{ color }}'
text: |-
{% if maxspeedB or maxspeedF %}
{% if maxspeedB %}🡸 {{ maxspeedB == 'other' ? attribute(tags, 'maxspeed:backward') : maxspeedB }} {% endif %}|{% if maxspeedF %} {{ maxspeedF == 'other' ? attribute(tags, 'maxspeed:forward') : maxspeedF }} 🡺{% endif %}
{% else %}
{{ maxspeed == 'other' ? tags.maxspeed : maxspeed }}
{% endif %}
textRepeat: '1'
textOffset: '4'
textFontWeight: bold
style:left:
width: '2'
color: |-
{{ colorB|default('#404040') }}
offset: '-1'
style:right:
width: '2'
color: |
{{ colorF|default('#404040') }}
offset: '1'
style:traffic_sign:
width: 0
radius: 0
const:
colorMap:
- '#00af00'
- '#ff7f00'
- '#ff0000'
- '#af00af'
colorOther:
none: '#ff00ff'
walk: '#00afff'
other: '#0000ff'
highestColorSpeed: 150
offsetColorSpeed: 10
info: |-
<table>
<tr>
<td>{{ markerLine(evaluate({}))|raw }}</td>
<td colspan>{{ trans('unknown') }}</td>
</tr>
<tr>
<td>{{ markerLine(evaluate({ "maxspeed": "walk" }))|raw }}</td>
<td colspan>{{ tagTrans('maxspeed', 'walk') }}</td>
</tr>
<tr>
<td>{{ markerLine(evaluate({ "maxspeed": "none" }))|raw }}</td>
<td>{{ tagTrans('maxspeed', 'none') }}</td>
</tr>
<tr>
<td>{{ markerLine(evaluate({ "maxspeed": "other" }))|raw }}</td>
<td>{{ trans('other') }}</td>
</tr>
</table>
<div style='display: inline-block; width: 49%;'>
<table>
{% for i in range(10, 140, 20) %}
<tr>
<td>{{ markerLine(evaluate({ "maxspeed": i }))|raw }}</td>
<td>{{ i }}km/h</td>
</tr>
{% endfor %}
<tr>
<td>{{ markerLine(evaluate({ "maxspeed": 150 }))|raw }}</td>
<td>≥150km/h</td>
</tr>
</table>
</div>
<div style='display: inline-block; width: 49%;'>
<table>
{% for i in range(10, 60, 10) %}
<tr>
<td>{{ markerLine(evaluate({ "maxspeed": (i * 1.60934)|round }))|raw }}</td>
<td>{{ i }}mph</td>
</tr>
{% endfor %}
<tr>
<td>{{ markerLine(evaluate({ "maxspeed": (75 * 1.60934)|round }))|raw }}</td>
<td>75mph</td>
</tr>
<tr>
<td>{{ markerLine(evaluate({ "maxspeed": (95 * 1.60934)|round }))|raw }}</td>
<td>≥95mph</td>
</tr>
</table>
</div>
filter:
type:
name: |
{{ trans('filter:type') }}
type: select
show_default: true
values: |-
<option value='road' query='way[highway]'>{{ keyTrans('highway') }}</option>
<option value='traffic_sign' query='node[traffic_sign]'>{{ keyTrans('traffic_sign') }}</option>