-
Notifications
You must be signed in to change notification settings - Fork 20
/
electrification.mml
382 lines (379 loc) · 17.8 KB
/
electrification.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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
scale: 1
metatile: 2
name: OpenRailwayMap Electrification
description: A map style for railway electrification
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
- electrification_signals.mss
- electrification.mss
- common.mss
Layer:
- id: railway_line_casing
geometry: line
<<: *extents
Datasource:
<<: *osm2pgsql
table: |-
(SELECT
way, railway, usage, service,
construction,
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
ELSE 50
END AS rank,
electrified,
frequency,
voltage,
construction_electrified,
construction_frequency,
proposed_electrified,
proposed_frequency,
railway_no_to_null(deelectrified)
FROM
(SELECT
way, railway, usage, service,
construction,
tags->'construction:railway' AS construction_railway,
electrified,
frequency,
voltage,
construction_electrified,
construction_frequency,
proposed_electrified,
proposed_frequency,
deelectrified,
layer
FROM openrailwaymap_osm_line
WHERE railway IN ('rail', 'tram', 'light_rail', 'subway', 'narrow_gauge', '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,
NULL AS service,
NULL AS construction,
NULL AS construction_railway,
NULL AS construction_usage, NULL AS construction_service,
NULL AS preserved_railway, NULL AS preserved_service,
NULL AS preserved_usage,
electrification_state AS state,
electrification_state_without_future AS state_now,
railway_voltage_for_state(electrification_state, voltage, construction_voltage, proposed_voltage) AS merged_voltage,
railway_frequency_for_state(electrification_state, frequency, construction_frequency, proposed_frequency) AS merged_frequency,
railway_to_int(voltage) AS voltage,
railway_to_float(frequency) AS frequency
FROM
(SELECT
way, railway, usage,
railway_electrification_state(railway, electrified, deelectrified, abandoned_electrified, construction_electrified, proposed_electrified, FALSE) AS electrification_state,
railway_electrification_state(railway, electrified, deelectrified, abandoned_electrified, NULL, NULL, TRUE) AS electrification_state_without_future,
frequency AS frequency,
voltage AS voltage,
construction_frequency AS construction_frequency,
construction_voltage AS construction_voltage,
proposed_frequency AS proposed_frequency,
proposed_voltage AS proposed_voltage,
layer
FROM openrailwaymap_osm_line
WHERE railway = 'rail' AND usage = 'main' AND service IS NULL
) AS r
ORDER BY layer NULLS LAST
) AS openrailwaymap_line_low
properties:
maxzoom: 7
- id: railway_line_med
geometry: line
<<: *extents
Datasource:
<<: *osm2pgsql
table: |-
(SELECT
way, railway, usage,
NULL AS service,
NULL AS construction,
NULL AS construction_railway,
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,
electrification_state AS state,
electrification_state_without_future AS state_now,
railway_voltage_for_state(electrification_state, voltage, construction_voltage, proposed_voltage) AS merged_voltage,
railway_frequency_for_state(electrification_state, frequency, construction_frequency, proposed_frequency) AS merged_frequency,
railway_to_int(voltage) AS voltage,
railway_to_float(frequency) AS frequency
FROM
(SELECT
way, railway, usage,
railway_electrification_state(railway, electrified, deelectrified, abandoned_electrified, construction_electrified, proposed_electrified, FALSE) AS electrification_state,
railway_electrification_state(railway, electrified, deelectrified, abandoned_electrified, NULL, NULL, TRUE) AS electrification_state_without_future,
frequency AS frequency,
voltage AS voltage,
construction_frequency AS construction_frequency,
construction_voltage AS construction_voltage,
proposed_frequency AS proposed_frequency,
proposed_voltage AS proposed_voltage,
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
) AS railway_line_med
properties:
minzoom: 8
maxzoom: 8
- id: railway_line_fill
geometry: line
<<: *extents
Datasource:
<<: *osm2pgsql
table: |-
(SELECT
way, railway, usage, service,
construction,
construction_railway,
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
ELSE 50
END AS rank,
electrification_state_without_future AS state,
railway_voltage_for_state(electrification_state_without_future, voltage, construction_voltage, proposed_voltage) AS voltage,
railway_frequency_for_state(electrification_state_without_future, frequency, construction_frequency, proposed_frequency) AS frequency
FROM
(SELECT
way, railway, usage, service,
construction,
tags->'construction:railway' AS construction_railway,
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,
railway_electrification_state(railway, electrified, deelectrified, abandoned_electrified, construction_electrified, proposed_electrified, FALSE) AS electrification_state,
railway_electrification_state(railway, electrified, deelectrified, abandoned_electrified, NULL, NULL, TRUE) AS electrification_state_without_future,
frequency AS frequency,
voltage AS voltage,
construction_frequency AS construction_frequency,
construction_voltage AS construction_voltage,
proposed_frequency AS proposed_frequency,
proposed_voltage AS proposed_voltage,
layer
FROM openrailwaymap_osm_line
WHERE railway IN ('rail', 'tram', 'light_rail', 'subway', 'narrow_gauge', 'construction', 'preserved')
) AS r
ORDER BY
layer,
rank NULLS LAST
) AS railway_line_fill
properties:
minzoom: 9
# electrification_future renders with almost the same styling on top of the line fill and thereby adds dashing.
- id: electrification_future
geometry: line
<<: *extents
Datasource:
<<: *osm2pgsql
table: |-
(SELECT
way, railway, usage, service,
construction,
construction_railway,
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
ELSE 50
END AS rank,
electrification_state AS state,
railway_voltage_for_state(electrification_state, voltage, construction_voltage, proposed_voltage) AS voltage,
railway_frequency_for_state(electrification_state, frequency, construction_frequency, proposed_frequency) AS frequency
FROM
(SELECT
way, railway, usage, service,
construction,
tags->'construction:railway' AS construction_railway,
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,
railway_electrification_state(railway, electrified, deelectrified, abandoned_electrified, construction_electrified, proposed_electrified, FALSE) AS electrification_state,
frequency AS frequency,
voltage AS voltage,
construction_frequency AS construction_frequency,
construction_voltage AS construction_voltage,
proposed_frequency AS proposed_frequency,
proposed_voltage AS proposed_voltage,
layer
FROM openrailwaymap_osm_line
WHERE railway IN ('rail', 'tram', 'light_rail', 'subway', 'narrow_gauge', 'construction', 'preserved')
) AS r
ORDER BY
layer,
rank NULLS LAST
) AS electrification_future
properties:
minzoom: 9
- id: electrification-signals
geometry: point
<<: *extents
Datasource:
<<: *osm2pgsql
table: |-
(SELECT
way,
railway,
tags->'railway:signal:electricity' AS signal_electricity,
tags->'railway:signal:electricity:form' AS electricity_form,
tags->'railway:signal:electricity:turn_direction' AS electricity_turn_direction,
tags->'railway:signal:electricity:type' AS electricity_type,
signal_direction
FROM openrailwaymap_osm_signals
WHERE
railway = 'signal'
AND tags ? 'railway:signal:electricity'
) AS railway_signals
properties:
minzoom: 15
- id: railway_text_med
geometry: line
<<: *extents
Datasource:
<<: *osm2pgsql
table: |-
(SELECT
way, railway, usage, service,
construction,
tags->'construction:railway' AS construction_railway,
CASE WHEN railway = 'rail' AND usage = 'main' THEN 1100
WHEN railway = 'rail' AND usage = 'branch' THEN 1000
ELSE 50
END AS rank,
layer,
railway_electrification_label(electrified, deelectrified, construction_electrified, proposed_electrified, voltage, frequency, construction_voltage, construction_frequency, proposed_voltage, proposed_frequency) AS label,
railway_electrification_state(railway, electrified, deelectrified, abandoned_electrified, construction_electrified, proposed_electrified, FALSE) AS state
FROM openrailwaymap_osm_line
WHERE
railway = 'rail' AND usage IN ('main', 'branch') AND service IS NULL
AND (
electrified IS NOT NULL
OR deelectrified IS NOT NULL
OR construction_electrified IS NOT NULL
OR proposed_electrified IS NOT NULL
)
ORDER by layer, rank NULLS LAST
) AS railway_text_high
properties:
minzoom: 8
maxzoom: 8
- id: railway_text_high
geometry: line
<<: *extents
Datasource:
<<: *osm2pgsql
table: |-
(SELECT
way, railway, usage, service,
construction,
tags->'construction:railway' AS construction_railway,
CASE WHEN railway = 'rail' AND usage IN ('usage', '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
ELSE 50
END AS rank,
layer,
railway_electrification_label(electrified, deelectrified, construction_electrified, proposed_electrified, voltage, frequency, construction_voltage, construction_frequency, proposed_voltage, proposed_frequency) AS label,
railway_electrification_state(railway, electrified, deelectrified, abandoned_electrified, construction_electrified, proposed_electrified, FALSE) AS state
FROM openrailwaymap_osm_line
WHERE
railway IN ('rail', 'tram', 'light_rail', 'subway', 'narrow_gauge', 'construction', 'preserved')
AND (
electrified IS NOT NULL
OR deelectrified IS NOT NULL
OR construction_electrified IS NOT NULL
OR proposed_electrified IS NOT NULL
)
ORDER by layer, rank NULLS LAST
) AS railway_text_high
properties:
minzoom: 9