-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathroutemap.py
600 lines (458 loc) · 23.7 KB
/
routemap.py
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
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
from datetime import datetime
import requests, time, sys, os, re, math, json, base64, urllib
origin_tile = (3490, 1584)
rx_pass_stop = re.compile('\((경유|가상)\)$')
rx_centerstop = re.compile('\(중\)$')
svg_depot_icon = '<g id="bus_depot" transform="translate(18, 18) scale(2.8, 2.8) rotate({0:.2f})"><circle style="fill:{1};fill-opacity:1;stroke:nonel" cx="0" cy="0" r="5.8" /> <path style="fill:#ffffff;fill-opacity:1;stroke:none" d="m 0,0 c -0.19263,0 -0.3856,0.073 -0.5332,0.2207 -0.2952,0.2952 -0.2952,0.7712 0,1.0664 l 1.00976,1.0097 h -4.10742 c -0.41747,0 -0.75195,0.3365 -0.75195,0.7539 0,0.4175 0.33448,0.7539 0.75195,0.7539 h 4.11719 l -1.05469,1.0547 c -0.2952,0.2952 -0.2952,0.7712 0,1.0664 0.2952,0.2952 0.77121,0.2952 1.06641,0 l 2.25586,-2.2539 c 0.0305,-0.022 0.0603,-0.049 0.0879,-0.076 0.16605,-0.1661 0.23755,-0.3876 0.21679,-0.6036 -6.2e-4,-0.01 -10e-4,-0.013 -0.002,-0.019 -0.002,-0.018 -0.005,-0.035 -0.008,-0.053 -3.9e-4,0 -0.002,0 -0.002,-0.01 -0.0347,-0.1908 -0.14003,-0.3555 -0.28907,-0.4668 l -2.22461,-2.2265 c -0.1476,-0.1476 -0.34057,-0.2207 -0.5332,-0.2207 z" transform="translate(0.6,-3)" /></g>'
class Mapframe():
def __init__(self, left, top, right, bottom):
self.left = left
self.top = top
self.right = right
self.bottom = bottom
if self.left > self.right:
raise ValueError("left is greater than right")
if self.top > self.bottom:
raise ValueError("top is greater than bottom")
def size(self):
return (self.right - self.left, self.bottom - self.top)
def width(self):
return self.right - self.left
def height(self):
return self.bottom - self.top
def update_rect(self, rect):
if self.right < rect[0] + rect[2]:
self.right = rect[0] + rect[2]
if self.left > rect[0]:
self.left = rect[0]
if self.bottom < rect[1] + rect[3]:
self.bottom = rect[1] + rect[3]
if self.top > rect[1]:
self.top = rect[1]
def update_x(self, x):
if self.right < x:
self.right = x
elif self.left > x:
self.left = x
def update_y(self, y):
if self.bottom < y:
self.bottom = y
elif self.top > y:
self.top = y
def extend(self, x):
self.left -= x
self.right += x
self.top -= x
self.bottom += x
def center(self):
return ((self.left + self.right) / 2, (self.top + self.bottom) / 2)
@classmethod
def from_points(cls, points):
left = min(x for x, _ in points)
right = max(x for x, _ in points)
top = min(y for _, y in points)
bottom = max(y for _, y in points)
return cls(left, top, right, bottom)
def make_svg_path(style, points):
path = "M"
for i, (x, y) in enumerate(points):
if i == 0:
path += "{:.5f},{:.5f}".format(x, y)
else:
path += " L{:.5f},{:.5f}".format(x, y)
return '<path style="{}" d="{}" />\n'.format(style, path)
def convert_pos(pos):
lat_rad = math.radians(pos[1])
n = 1 << 12
x = ((pos[0] + 180.0) / 360.0 * n - origin_tile[0]) * 512
y = ((1.0 - math.asinh(math.tan(lat_rad)) / math.pi) / 2.0 * n - origin_tile[1]) * 512
return (x, y)
def convert_gps(pos):
n = 1 << 12
lon_deg = (pos[0] / 512 + origin_tile[0]) / n * 360.0 - 180.0
lat_rad = math.atan(math.sinh(math.pi * (1 - 2 * (pos[1] / 512 + origin_tile[1]) / n)))
lat_deg = math.degrees(lat_rad)
return (lon_deg, lat_deg)
def distance(pos1, pos2):
return math.sqrt((pos2[0] - pos1[0]) ** 2 + (pos2[1] - pos1[1]) ** 2)
def distance_from_segment(pos, pos1, pos2):
d_pos12 = (pos2[0] - pos1[0]) ** 2 + (pos2[1] - pos1[1]) ** 2
if d_pos12 == 0:
return distance(pos, pos1)
dot = (pos2[0] - pos1[0]) * (pos[0] - pos1[0]) + (pos[1] - pos1[1]) * (pos2[1] - pos1[1])
param = dot / d_pos12
if param < 0:
return distance(pos, pos1)
elif param > 1:
return distance(pos, pos2)
else:
return distance(pos, (pos1[0] + param * (pos2[0] - pos1[0]), pos1[1] + param * (pos2[1] - pos1[1])))
def find_nearest_point(pos, points):
min_dist = distance(points[0], pos)
t_point = 0
for i in range(len(points)):
dist = distance(points[i], pos)
if min_dist > dist:
t_point = i
min_dist = dist
return t_point
def get_point_segment(points, start, end, dist):
idx_prev = start
idx_next = end
i = end
for i in range(end + 1, len(points)):
if distance(points[i], points[end]) > dist:
break
idx_next = i
i = start
for i in range(start - 1, -1, -1):
if distance(points[i], points[start]) > dist:
break
idx_prev = i
return idx_prev, idx_next
def get_text_width(text):
result = 0
for i in text:
if re.match(r'[\.\(\)]', i):
result += 0.2
elif re.match(r'[0-9a-z\-]', i):
result += 0.6
elif re.match(r'[A-Z]', i):
result += 0.8
else:
result += 1
return result
def check_collision(r1, r2):
if r1[0] < r2[0] + r2[2] and r1[0] + r1[2] > r2[0] and r1[1] < r2[1] + r2[3] and r1[1] + r1[3] > r2[1]:
if r2[0] > r1[0]:
dx = r1[0] + r1[2] - r2[0]
else:
dx = r2[0] + r2[2] - r1[0]
if r2[1] > r1[1]:
dy = r1[1] + r1[3] - r2[1]
else:
dy = r2[1] + r2[3] - r1[1]
return dx * dy
return 0
def get_collision_score(new_rect, rects, points):
collision = 0
for r in rects:
collision += check_collision(r, new_rect)
for p in points:
collision += check_collision((p[0] - 2, p[1] - 2, 4, 4), new_rect)
return collision
def min_distance_from_points(pos, points):
min_dist = distance(pos, points[0])
for p in points:
dist = distance(pos, p)
if min_dist > dist:
min_dist = dist
return min_dist
def min_distance_from_segments(pos, points):
min_dist = distance(pos, points[0])
for i in range(len(points) - 1):
dist = distance_from_segment(pos, points[i], points[i+1])
if min_dist > dist:
min_dist = dist
return min_dist
def get_bus_stop_name(bus_stop):
name_split = bus_stop['name'].split('.')
name = bus_stop['name']
# 중앙차로 정류장 괄호 제거
match = rx_centerstop.search(bus_stop['name'])
if match:
name = name[:match.start(0)]
for n in name_split:
# 주요 경유지 처리
stn_match = re.search(r'(?:(?:지하철)?[1-9]호선|신분당선|공항철도)?(.+역)(?:[1-9]호선|환승센터)?(?:[0-9]+번(출구|승강장))?$', n)
center_match = re.search(r'(광역환승센터|환승센터|환승센타|고속터미널|잠실종합운동장)$', n)
if center_match:
return n, True
elif stn_match:
stn_name = stn_match[1]
stn_name = re.sub(r'\(.+\)역', '역', stn_name)
return stn_name, True
return name, False
def get_bus_color(route_info):
if route_info['type'] == 1 or route_info['type'] == 51:
# 공항리무진
line_color = '#aa9872'
line_dark_color = '#81704e'
elif route_info['type'] == 2 or route_info['type'] == 4 or route_info['type'] == 30:
# 서울 지선
line_color = '#5bb025'
line_dark_color = '#44831c'
elif route_info['type'] == 6 or route_info['type'] == 11 or route_info['type'] == 21:
if route_info['name'][0] == 'P':
# 경기 프리미엄
line_color = '#aa9872'
line_dark_color = '#81704e'
else:
# 서울 광역 / 경기 직좌
line_color = '#c83737'
line_dark_color = '#782121'
elif route_info['type'] == 12 or route_info['type'] == 22:
# 경기 일좌
line_color = '#0075c8'
line_dark_color = '#005693'
elif route_info['type'] == 13 or route_info['type'] == 23:
# 경기 일반
line_color = '#248f6c'
line_dark_color = '#19654b'
elif route_info['type'] == 14:
# 광역급행버스
line_color = '#00aad4'
line_dark_color = '#0088aa'
elif route_info['type'] == 61:
# 부산 일반
line_color = '#3399ff'
line_dark_color = '#2770b7'
elif route_info['type'] == 62 or route_info['type'] == 63:
# 부산 급행 / 좌석
line_color = '#f58220'
line_dark_color = '#b45708'
elif route_info['type'] == 64:
# 부산 심야
line_color = '#aaaaaa'
line_dark_color = '#747474'
elif route_info['type'] == 65:
# 부산 마을
line_color = '#6EBF46'
line_dark_color = '#559734'
else:
# 서울 간선
line_color = '#3d5bab'
line_dark_color = '#263c77'
return (line_color, line_dark_color)
class RouteMap():
def __init__(self, route_info, bus_stops, points, is_one_way = False, theme = 'light'):
self.route_info = route_info
self.bus_stops = bus_stops
self.points = points
self.is_one_way = is_one_way
self.mapframe = Mapframe.from_points(self.points)
self.update_trans_id(self.get_trans_id())
self.line_color, self.line_dark_color = get_bus_color(self.route_info)
self.theme = theme
def get_trans_id(self):
for i, stop in enumerate(self.bus_stops):
if stop['is_trans']:
return i
return None
def update_trans_id(self, new_id):
if new_id >= len(self.bus_stops) or new_id < 0:
raise ValueError()
self.trans_id = new_id
self.t_point = find_nearest_point(convert_pos(self.bus_stops[self.trans_id]['pos']), self.points)
def parse_bus_stops(self, min_interval):
# 버스 정류장 렌더링
bus_stop_name_list = []
main_stop_list = []
minor_stop_list = []
last_stop_id = len(self.bus_stops) - 1 if self.is_one_way else self.trans_id
# 기종점 처리
for i in [0, last_stop_id]:
name, is_main = get_bus_stop_name(self.bus_stops[i])
bus_stop_name_list.append(name)
pos = convert_pos(self.bus_stops[i]['pos'])
pass_stop = bool(rx_pass_stop.search(self.bus_stops[i]['name']))
section = 1 if i > self.trans_id else 0
main_stop_list.append({'ord': i, 'pos': pos, 'name': name, 'section': section, 'pass': pass_stop})
# 주요 정류장 처리
for i in range(len(self.bus_stops)):
name, is_main = get_bus_stop_name(self.bus_stops[i])
if not is_main or name in bus_stop_name_list:
continue
bus_stop_name_list.append(name)
pos = convert_pos(self.bus_stops[i]['pos'])
pass_stop = bool(rx_pass_stop.search(self.bus_stops[i]['name']))
section = 1 if i > self.trans_id else 0
if section == 1:
min_path_dist = min_distance_from_segments(pos, self.points[:self.t_point])
if min_path_dist < min_interval / 8:
section = 0
main_stop_list.append({'ord': i, 'pos': pos, 'name': name, 'section': section, 'pass': pass_stop})
main_stop_ids = [x['ord'] for x in main_stop_list]
# 비주요 정류장 처리
for i in range(len(self.bus_stops)):
if i in main_stop_ids:
continue
pos = convert_pos(self.bus_stops[i]['pos'])
pass_stop = bool(rx_pass_stop.search(self.bus_stops[i]['name']))
section = 1 if i > self.trans_id else 0
stop_points = [s['pos'] for s in main_stop_list + minor_stop_list]
min_dist = min_distance_from_points(pos, stop_points)
if i > self.trans_id:
min_path_dist = min_distance_from_segments(pos, self.points[:self.t_point])
if min_path_dist < min_interval / 4:
continue
if min_dist > min_interval:
minor_stop_list.append({'ord': i, 'pos': pos, 'name': self.bus_stops[i]['name'], 'section': section, 'pass': pass_stop})
return main_stop_list + minor_stop_list
def draw_bus_info(self, size_factor):
name_match = re.search('[0-9A-Za-z]+', self.route_info['name'])
if name_match:
bus_name_main = self.route_info['name'][:name_match.end(0)]
bus_name_suffix = self.route_info['name'][name_match.end(0):]
else:
bus_name_main = self.route_info['name']
bus_name_suffix = ''
bus_name_width = get_text_width(bus_name_main) * 72 + get_text_width(bus_name_suffix) * 60 + 45
bus_startend_width = (get_text_width(self.route_info['start']) + get_text_width(self.route_info['end'])) * 57 + 150
bus_info_width = (bus_name_width + bus_startend_width) * size_factor
if self.mapframe.width() < bus_info_width:
pos_x = self.mapframe.center()[0] - bus_info_width / 2
else:
pos_x = self.mapframe.left
pos_y = self.mapframe.top
pos_y -= 135 * size_factor
self.mapframe.update_rect((pos_x, pos_y, bus_info_width, 100 * size_factor))
bus_name_svg = bus_name_main + '<tspan style="font-size:72px">{}</tspan>'.format(bus_name_suffix)
if bus_name_main[0] == 'N':
bus_name_svg = '<tspan style="fill:#ffcc00">N</tspan>' + bus_name_svg[1:]
svg_text = '<g id="businfo" transform="translate({0}, {1}) scale({2}, {2})" style="display:inline">'.format(pos_x, pos_y, size_factor)
svg_text += '<rect y="0" x="0" height="100" width="{}" id="busname_bg" style="opacity:1;fill:{};fill-opacity:1;stroke:none;" />'.format(bus_name_width, self.line_color)
svg_text += '<text id="busname" y="82" x="20" style="font-weight:normal;font-size:85.3333px;font-family:\'Din Medium\';text-align:start;fill:#ffffff">{}</text>'.format(bus_name_svg)
svg_text += '<rect y="0" x="{}" height="100" width="{}" id="busstartend_bg" style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;" />'.format(bus_name_width, bus_startend_width)
svg_text += '<text id="busstartend" y="70" x="{}" style="font-weight:bold;font-size:64px;font-family:\'NanumSquare\';text-align:start;fill:#000000">{} <tspan style="font-family:\'NanumSquareRound\'">↔</tspan> {}</text>'.format(bus_name_width + 20, self.route_info['start'], self.route_info['end'])
svg_text += '</g>'
return svg_text
def draw_bus_stop_circle(self, stop, size_factor):
style_circle_base = "opacity:1;fill-opacity:1;stroke-width:{};stroke-dasharray:none;stroke-opacity:1;".format(3.2 * size_factor)
if self.theme == 'light':
style_fill_circle = "fill:#ffffff;"
elif self.theme == 'dark':
style_fill_circle = "fill:#282828;"
style_fill_gray = "fill:#cccccc;"
style_fill_yellow = "fill:#ffcc00;"
style_circle = "stroke:{};".format(self.line_color) + style_circle_base
style_circle_dark = "stroke:{};".format(self.line_dark_color) + style_circle_base
section = 0 if stop['section'] == 0 or self.is_one_way else 1
stop_circle_style = ((style_fill_gray if stop['pass'] else style_fill_circle) if self.route_info['name'][0] != 'N' else style_fill_yellow) + (style_circle if section == 0 else style_circle_dark)
svg_circle = '<circle style="{}" cx="{}" cy="{}" r="{}" />\n'.format(stop_circle_style, stop['pos'][0], stop['pos'][1], 6 * size_factor)
return svg_circle
def draw_bus_stop_text(self, stop, size_factor, direction = -1):
style_fill_white = "fill:#ffffff;"
style_fill_gray = "fill:#cccccc;"
style_fill_yellow = "fill:#ffcc00;"
style_text = "font-size:30px;line-height:1.0;font-family:'KoPubDotum Bold';text-align:start;letter-spacing:0px;word-spacing:0px;fill-opacity:1;"
section = 0 if stop['section'] == 0 or self.is_one_way else 1
if section == 0:
stop_p = find_nearest_point(stop['pos'], self.points[:self.t_point])
else:
stop_p = find_nearest_point(stop['pos'], self.points[self.t_point:]) + self.t_point
stop_p_prev, stop_p_next = get_point_segment(self.points, stop_p, stop_p, 10 * size_factor)
path_dir = (self.points[stop_p_next][0] - self.points[stop_p_prev][0], self.points[stop_p_next][1] - self.points[stop_p_prev][1])
normal_dir = (path_dir[1], -path_dir[0])
if normal_dir[0] == 0 and normal_dir[1] == 0:
normal_dir = (1, 1)
if normal_dir[0] < 0:
normal_dir = (-normal_dir[0], -normal_dir[1])
dir_factor = math.sqrt(normal_dir[0] ** 2 + normal_dir[1] ** 2)
normal_dir = (normal_dir[0] / dir_factor, normal_dir[1] / dir_factor)
# 정류장 명칭 박스 위치 설정
text_size_factor = size_factor * 0.56
text_height = 30 * text_size_factor
match = rx_pass_stop.search(stop['name'])
if match:
stop_name_main = stop['name'][:match.start(0)]
stop_name_suffix = stop['name'][match.start(0):]
else:
stop_name_main = stop['name']
stop_name_suffix = ''
text_width = (get_text_width(stop_name_main) * 27.5 + get_text_width(stop_name_suffix) * 22 + 25)
text_pos_right = (stop['pos'][0] + 20 * normal_dir[0] * size_factor, stop['pos'][1] + 20 * normal_dir[1] * size_factor - text_height / 2)
text_rect_right = (text_pos_right[0], text_pos_right[1], text_width * text_size_factor, text_height)
text_pos_left = (stop['pos'][0] - 20 * normal_dir[0] * size_factor - text_width * text_size_factor, stop['pos'][1] - 20 * normal_dir[1] * size_factor - text_height / 2)
text_rect_left = (text_pos_left[0], text_pos_left[1], text_width * text_size_factor, text_height)
if normal_dir[1] < 0:
normal_dir = (-normal_dir[0], -normal_dir[1])
text_pos_up = (stop['pos'][0] + 20 * normal_dir[0] * size_factor - text_width * text_size_factor / 2, stop['pos'][1] + 25 * normal_dir[1] * size_factor - text_height / 2)
text_rect_up = (text_pos_up[0], text_pos_up[1], text_width * text_size_factor, text_height)
text_pos_down = (stop['pos'][0] - 20 * normal_dir[0] * size_factor - text_width * text_size_factor / 2, stop['pos'][1] - 25 * normal_dir[1] * size_factor - text_height / 2)
text_rect_down = (text_pos_down[0], text_pos_down[1], text_width * text_size_factor, text_height)
text_pos_list = [text_pos_up, text_pos_down, text_pos_left, text_pos_right]
text_rect_list = [text_rect_up, text_rect_down, text_rect_left, text_rect_right]
if direction == -1:
collisions = [get_collision_score(x, self.text_rects, self.points) for x in text_rect_list]
direction = 0
for i in range(1, len(collisions)):
if collisions[direction] >= collisions[i]:
direction = i
text_pos = text_pos_list[direction]
text_rect = text_rect_list[direction]
else:
if direction >= len(text_rect_list) or direction < 0:
raise IndexError()
text_pos = text_pos_list[direction]
text_rect = text_rect_list[direction]
self.text_rects.append(text_rect)
stop_name_svg = stop_name_main.replace('&', '&')
if stop_name_suffix:
stop_name_svg += '<tspan style="font-size:24px">{}</tspan>'.format(stop_name_suffix)
svg_text = ''
text_offset = 0
# 기점 표시
if stop['ord'] == 0:
dir_len = math.sqrt(path_dir[0] ** 2 + path_dir[1] ** 2)
if dir_len == 0:
dir_cos = 1
else:
dir_cos = path_dir[0] / dir_len
dir_deg = math.acos(dir_cos) / math.pi * 180
if path_dir[1] < 0:
dir_deg = 360 - dir_deg
svg_text += svg_depot_icon.format(dir_deg, self.line_color) + '\n'
text_offset = 40
svg_text += '<rect style="fill:{};fill-opacity:1;stroke:none;" width="{:.2f}" height="36" x="{:.2f}" y="0" ry="18" />'.format(self.line_color if section == 0 else self.line_dark_color, text_width, text_offset)
svg_text += '<text style="{}" text-anchor="middle" x="{:.2f}" y="28">{}</text>\n'.format(style_text + (style_fill_gray if stop['pass'] else style_fill_white), text_width / 2 + text_offset, stop_name_svg)
svg_text = '<g id="stop{3}" transform="translate({0:.2f}, {1:.2f}) scale({2:.2f}, {2:.2f})">'.format(text_pos[0], text_pos[1], text_size_factor, stop['ord']) + svg_text + '</g>'
self.mapframe.update_rect(text_rect)
return svg_text
def render_path(self, size_factor):
# 노선 경로 렌더링
style_path_base = "display:inline;fill:none;stroke-width:{};stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1".format(8 * size_factor)
style_path = "stroke:{};".format(self.line_color) + style_path_base
style_path_dark = "stroke:{};".format(self.line_dark_color) + style_path_base
path_points = []
start_point = find_nearest_point(convert_pos(self.bus_stops[0]['pos']), self.points[:self.t_point])
end_point = find_nearest_point(convert_pos(self.bus_stops[-1]['pos']), self.points[self.t_point:]) + self.t_point
path_points.append(self.points[start_point:self.t_point+1])
if self.route_info['type'] <= 10:
# skip = 2
skip = 1
else:
skip = 1
is_path_dark = False
skip_threshold = 5 * size_factor
segment_start = 0
segment_end = -1
for i in range(self.t_point, end_point):
min_dist = min_distance_from_segments(self.points[i], path_points[0])
if min_dist > skip_threshold and i < end_point - 1:
if segment_end < 0:
segment_start = i
segment_end = i
elif segment_end >= 0:
path_segment = get_point_segment(self.points, segment_start, segment_end, skip_threshold * 2)
path_points.append(self.points[path_segment[0]:min(path_segment[1]+1, end_point)])
segment_end = -1
svg_path = ''
for i, path in enumerate(path_points):
if i == 0 or self.is_one_way:
path_style = style_path
else:
path_style = style_path_dark
svg_path = make_svg_path(path_style, path) + svg_path
return svg_path
def render_init(self):
self.text_rects = []
def render(self, size_factor, min_interval):
self.render_init()
svg = self.render_path(size_factor)
bus_stops = self.parse_bus_stops(min_interval)
for stop in bus_stops:
svg += self.draw_bus_stop_circle(stop, size_factor)
svg += self.draw_bus_stop_text(stop, size_factor)
svg += self.draw_bus_info(size_factor * 0.75) + '\n'
return svg