-
Notifications
You must be signed in to change notification settings - Fork 20
/
maxspeed.mml
317 lines (311 loc) · 13.6 KB
/
maxspeed.mml
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
scale: 1
metatile: 2
name: OpenRailwayMap Maxspeed
description: A map style for railway speed limits
bounds: &world
- -180
- -85.05112877980659
- 180
- 85.05112877980659
center:
- 0
- 0
- 4
format: png
interactivity: false
minzoom: 0
maxzoom: 22
srs: "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over"
# Various parts to be included later on
_parts:
# Extents are used for tilemill, and don't actually make it to the generated XML
extents: &extents
extent: *world
srs-name: "900913"
srs: "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over"
extents84: &extents84
extent: *world
srs-name: "WGS84"
srs: "+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs"
osm2pgsql: &osm2pgsql
type: "postgis"
dbname: "gis"
key_field: ""
geometry_field: "way"
extent: "-20037508,-20037508,20037508,20037508"
Stylesheet:
- fonts.mss
- maxspeed_signals.mss
- maxspeed.mss
- common.mss
- common_disused.mss
Layer:
- id: railway_line_casing
geometry: line
<<: *extents
Datasource:
<<: *osm2pgsql
table: |-
(SELECT
way, railway, usage, service,
disused, construction,
disused_railway,
construction_railway,
CASE WHEN railway = 'rail' AND usage IN ('tourism', 'military', 'test') AND service IS NULL THEN 400
WHEN railway = 'rail' AND usage IS NULL AND service IS NULL THEN 400
WHEN railway = 'rail' AND usage IS NULL AND service = 'siding' THEN 870
WHEN railway = 'rail' AND usage IS NULL AND service = 'yard' THEN 860
WHEN railway = 'rail' AND usage IS NULL AND service = 'spur' THEN 880
WHEN railway = 'rail' AND usage IS NULL AND service = 'crossover' THEN 300
WHEN railway = 'rail' AND usage = 'main' AND service IS NULL THEN 1100
WHEN railway = 'rail' AND usage = 'branch' AND service IS NULL THEN 1000
WHEN railway = 'rail' AND usage = 'industrial' AND service IS NULL THEN 850
WHEN railway = 'rail' AND usage = 'industrial' AND service IN ('siding', 'spur', 'yard', 'crossover') THEN 850
WHEN railway IN ('preserved', 'construction') THEN 400
WHEN railway = 'disused' THEN 300
ELSE 50
END AS rank
FROM
(SELECT
way, railway, usage, service,
tags->'disused' AS disused, construction,
tags->'disused:railway' AS disused_railway,
tags->'construction:railway' AS construction_railway,
layer
FROM openrailwaymap_osm_line
WHERE railway IN ('rail', 'tram', 'light_rail', 'subway', 'narrow_gauge', 'disused', 'construction')
) AS r
ORDER by layer, rank NULLS LAST
) AS railway_line_casing
properties:
minzoom: 9
- id: railway_line_low
geometry: line
<<: *extents
Datasource:
<<: *osm2pgsql
table: |-
(SELECT
way, railway, usage,
-- speeds are converted to kph in this layer because it is used for colouring
railway_dominant_speed(preferred_direction, maxspeed, maxspeed_forward, maxspeed_backward) AS maxspeed,
NULL AS service,
NULL AS disused, NULL AS construction,
NULL AS disused_railway,
NULL AS construction_railway,
NULL AS disused_usage, NULL AS disused_service,
NULL AS construction_usage, NULL AS construction_service,
NULL AS preserved_railway, NULL AS preserved_service,
NULL AS preserved_usage,
CASE WHEN railway = 'rail' AND usage = 'main' THEN 1100
WHEN railway = 'rail' AND usage = 'branch' THEN 1000
ELSE 50
END AS rank
FROM
(SELECT
way, railway, usage,
maxspeed,
maxspeed_forward,
maxspeed_backward,
preferred_direction,
layer
FROM openrailwaymap_osm_line
WHERE railway = 'rail' AND usage IN ('main', 'branch') AND service IS NULL
) AS r
ORDER BY
layer,
rank NULLS LAST,
maxspeed ASC NULLS FIRST
) AS openrailwaymap_line_low
properties:
maxzoom: 7
- id: railway_line_med
geometry: line
<<: *extents
Datasource:
<<: *osm2pgsql
table: |-
(SELECT
way, railway, usage,
-- speeds are converted to kph in this layer because it is used for colouring
railway_dominant_speed(preferred_direction, maxspeed, maxspeed_forward, maxspeed_backward) AS maxspeed,
NULL AS service,
NULL AS disused, NULL AS construction,
NULL AS disused_railway,
NULL AS construction_railway,
NULL AS disused_usage, NULL AS disused_service,
NULL AS construction_usage, NULL AS construction_service,
NULL AS preserved_railway, NULL AS preserved_service,
NULL AS preserved_usage,
CASE WHEN railway = 'rail' AND usage = 'main' THEN 1100
WHEN railway = 'rail' AND usage = 'branch' THEN 1000
ELSE 50
END AS rank
FROM
(SELECT
way, railway, usage,
maxspeed,
maxspeed_forward,
maxspeed_backward,
preferred_direction,
layer
FROM openrailwaymap_osm_line
WHERE railway = 'rail' AND usage = 'main' AND service IS NULL
) AS r
ORDER BY
layer,
rank NULLS LAST,
maxspeed ASC NULLS FIRST
) AS railway_line_med
properties:
minzoom: 8
maxzoom: 8
- id: railway_line_fill
geometry: line
<<: *extents
Datasource:
<<: *osm2pgsql
table: |-
(SELECT
way, railway, usage, service,
-- speeds are converted to kph in this layer because it is used for colouring
railway_dominant_speed(preferred_direction, maxspeed, maxspeed_forward, maxspeed_backward) AS maxspeed,
disused, construction,
disused_railway,
construction_railway,
disused_usage, disused_service,
construction_usage, construction_service,
preserved_railway, preserved_service,
preserved_usage,
CASE WHEN railway = 'rail' AND usage IN ('tourism', 'military', 'test') AND service IS NULL THEN 400
WHEN railway = 'rail' AND usage IS NULL AND service IS NULL THEN 400
WHEN railway = 'rail' AND usage IS NULL AND service = 'siding' THEN 870
WHEN railway = 'rail' AND usage IS NULL AND service = 'yard' THEN 860
WHEN railway = 'rail' AND usage IS NULL AND service = 'spur' THEN 880
WHEN railway = 'rail' AND usage IS NULL AND service = 'crossover' THEN 300
WHEN railway = 'rail' AND usage = 'main' AND service IS NULL THEN 1100
WHEN railway = 'rail' AND usage = 'branch' AND service IS NULL THEN 1000
WHEN railway = 'rail' AND usage = 'industrial' AND service IS NULL THEN 850
WHEN railway = 'rail' AND usage = 'industrial' AND service IN ('siding', 'spur', 'yard', 'crossover') THEN 850
WHEN railway IN ('preserved', 'construction') THEN 400
WHEN railway = 'disused' THEN 300
ELSE 50
END AS rank
FROM
(SELECT
way, railway, usage, service,
maxspeed,
maxspeed_forward,
maxspeed_backward,
preferred_direction,
tags->'disused' AS disused, construction,
tags->'disused:railway' AS disused_railway,
tags->'construction:railway' AS construction_railway,
tags->'disused:usage' AS disused_usage, tags->'disused:service' AS disused_service,
tags->'construction:usage' AS construction_usage, tags->'construction:service' AS construction_service,
tags->'preserved:railway' AS preserved_railway, tags->'preserved:service' AS preserved_service,
tags->'preserved:usage' AS preserved_usage,
layer
FROM openrailwaymap_osm_line
WHERE railway IN ('rail', 'tram', 'light_rail', 'subway', 'narrow_gauge', 'disused', 'construction', 'preserved')
) AS r
ORDER BY
layer,
rank NULLS LAST,
maxspeed ASC NULLS FIRST
) AS railway_line_fill
properties:
minzoom: 9
- id: railway_signals
geometry: point
<<: *extents
Datasource:
<<: *osm2pgsql
table: |-
(SELECT
way AS way,
railway AS railway,
COALESCE(signal_speed_limit, signal_speed_limit_distant) AS feature,
signal_speed_limit_form AS signal_speed_limit_form,
-- We cast the lowest speed to text to make it possible to only select those speeds in
-- CartoCSS we have an icon for. Otherwise we might render an icon for 40 kph if
-- 42 is tagged (but invalid tagging).
railway_largest_speed_noconvert(signal_speed_limit_speed)::text AS signal_speed_limit_speed,
signal_speed_limit_distant_form AS signal_speed_limit_distant_form,
railway_largest_speed_noconvert(signal_speed_limit_distant_speed)::text AS signal_speed_limit_distant_speed
FROM openrailwaymap_osm_point
WHERE
railway = 'signal'
AND "signal_direction" IS NOT NULL
AND (
"signal_speed_limit" IS NOT NULL
OR "signal_speed_limit_distant" IS NOT NULL
)
ORDER BY
-- distant signals are less important, signals for slower speeds are more important
(CASE WHEN signal_speed_limit IS NOT NULL THEN 1 ELSE 2 END) DESC NULLS FIRST,
railway_speed_int(COALESCE(signal_speed_limit_speed, signal_speed_limit_distant_speed)) DESC NULLS FIRST
) AS railway_line_text
properties:
minzoom: 14
- id: railway_line_text
geometry: line
<<: *extents
Datasource:
<<: *osm2pgsql
table: |-
(SELECT
way,
railway, usage, service,
CASE WHEN speed_arr[3] = 4 THEN speed_arr[1]
WHEN speed_arr[3] = 3 THEN speed_arr[1]
WHEN speed_arr[3] = 2 THEN speed_arr[2]
WHEN speed_arr[3] = 1 THEN speed_arr[1]
END AS maxspeed,
railway_speed_label(speed_arr) AS label,
disused, construction,
disused_railway,
construction_railway,
disused_usage, disused_service,
construction_usage, construction_service,
preserved_railway, preserved_service,
preserved_usage,
CASE WHEN railway = 'rail' AND usage IN ('tourism', 'military', 'test') AND service IS NULL THEN 400
WHEN railway = 'rail' AND usage IS NULL AND service IS NULL THEN 400
WHEN railway = 'rail' AND usage IS NULL AND service = 'siding' THEN 870
WHEN railway = 'rail' AND usage IS NULL AND service = 'yard' THEN 860
WHEN railway = 'rail' AND usage IS NULL AND service = 'spur' THEN 880
WHEN railway = 'rail' AND usage IS NULL AND service = 'crossover' THEN 300
WHEN railway = 'rail' AND usage = 'main' AND service IS NULL THEN 1100
WHEN railway = 'rail' AND usage = 'branch' AND service IS NULL THEN 1000
WHEN railway = 'rail' AND usage = 'industrial' AND service IS NULL THEN 850
WHEN railway = 'rail' AND usage = 'industrial' AND service IN ('siding', 'spur', 'yard', 'crossover') THEN 850
WHEN railway IN ('preserved', 'construction') THEN 400
WHEN railway = 'disused' THEN 300
ELSE 50
END AS rank
FROM
(SELECT
ST_Area(ST_Envelope(way)) / NULLIF(POW(!scale_denominator!*0.001*0.28,2),0) AS bbox_pixels,
way, railway, usage, service,
-- does no unit conversion
railway_direction_speed_limit(tags->'railway:preferred_direction',tags->'maxspeed', tags->'maxspeed:forward', tags->'maxspeed:backward') AS speed_arr,
tags->'disused' AS disused, construction,
tags->'disused:railway' AS disused_railway,
tags->'construction:railway' AS construction_railway,
tags->'disused:usage' AS disused_usage, tags->'disused:service' AS disused_service,
tags->'construction:usage' AS construction_usage, tags->'construction:service' AS construction_service,
tags->'preserved:railway' AS preserved_railway, tags->'preserved:service' AS preserved_service,
tags->'preserved:usage' AS preserved_usage,
layer
FROM openrailwaymap_osm_line
WHERE railway IN ('rail', 'tram', 'light_rail', 'subway', 'narrow_gauge', 'disused', 'construction', 'preserved')
) AS r
WHERE bbox_pixels > 150
ORDER BY
layer,
rank NULLS LAST,
maxspeed DESC NULLS LAST
) AS railway_line_text
properties:
minzoom: 9