Sun, 15 Apr 2018 13:51:39 +0300
map updates
5 | 1 | #!/usr/bin/env python3 |
27 | 2 | |
72 | 3 | from misc import profile |
88
3b86597c5a88
major update, moved the map to an osm patch
Teemu Piippo <teemu@hecknology.net>
parents:
87
diff
changeset
|
4 | regions = {} |
52 | 5 | |
88
3b86597c5a88
major update, moved the map to an osm patch
Teemu Piippo <teemu@hecknology.net>
parents:
87
diff
changeset
|
6 | def priority(region_name): |
3b86597c5a88
major update, moved the map to an osm patch
Teemu Piippo <teemu@hecknology.net>
parents:
87
diff
changeset
|
7 | if region_name in regions: |
3b86597c5a88
major update, moved the map to an osm patch
Teemu Piippo <teemu@hecknology.net>
parents:
87
diff
changeset
|
8 | return float(regions[region_name]['priority']) |
3b86597c5a88
major update, moved the map to an osm patch
Teemu Piippo <teemu@hecknology.net>
parents:
87
diff
changeset
|
9 | else: |
3b86597c5a88
major update, moved the map to an osm patch
Teemu Piippo <teemu@hecknology.net>
parents:
87
diff
changeset
|
10 | return 0 |
27 | 11 | |
88
3b86597c5a88
major update, moved the map to an osm patch
Teemu Piippo <teemu@hecknology.net>
parents:
87
diff
changeset
|
12 | def simplify_name(region_name): |
3b86597c5a88
major update, moved the map to an osm patch
Teemu Piippo <teemu@hecknology.net>
parents:
87
diff
changeset
|
13 | region = regions.get(region_name) |
3b86597c5a88
major update, moved the map to an osm patch
Teemu Piippo <teemu@hecknology.net>
parents:
87
diff
changeset
|
14 | if region: |
3b86597c5a88
major update, moved the map to an osm patch
Teemu Piippo <teemu@hecknology.net>
parents:
87
diff
changeset
|
15 | return region.get('short_name', region_name) |
3b86597c5a88
major update, moved the map to an osm patch
Teemu Piippo <teemu@hecknology.net>
parents:
87
diff
changeset
|
16 | else: |
3b86597c5a88
major update, moved the map to an osm patch
Teemu Piippo <teemu@hecknology.net>
parents:
87
diff
changeset
|
17 | return region_name |
87 | 18 | |
19 | def reduce_schedule(route, trip_length, whole = False, format = 'medium'): | |
71
d2e19670b772
Remove assumptions and added some api stuff
Teemu Piippo <teemu@hecknology.net>
parents:
68
diff
changeset
|
20 | length = ((trip_length / 600) * 3 + len(route) * 2) / 5 |
87 | 21 | have_already = set() |
22 | i = 0 | |
71
d2e19670b772
Remove assumptions and added some api stuff
Teemu Piippo <teemu@hecknology.net>
parents:
68
diff
changeset
|
23 | if not route: |
5 | 24 | return '' |
71
d2e19670b772
Remove assumptions and added some api stuff
Teemu Piippo <teemu@hecknology.net>
parents:
68
diff
changeset
|
25 | while i < len(route): |
88
3b86597c5a88
major update, moved the map to an osm patch
Teemu Piippo <teemu@hecknology.net>
parents:
87
diff
changeset
|
26 | region = regions.get(route[i]) |
3b86597c5a88
major update, moved the map to an osm patch
Teemu Piippo <teemu@hecknology.net>
parents:
87
diff
changeset
|
27 | if region and region.get('replacement'): |
3b86597c5a88
major update, moved the map to an osm patch
Teemu Piippo <teemu@hecknology.net>
parents:
87
diff
changeset
|
28 | route[i] = region['replacement'] |
3b86597c5a88
major update, moved the map to an osm patch
Teemu Piippo <teemu@hecknology.net>
parents:
87
diff
changeset
|
29 | if not route[i] or route[i] in have_already: |
71
d2e19670b772
Remove assumptions and added some api stuff
Teemu Piippo <teemu@hecknology.net>
parents:
68
diff
changeset
|
30 | del route[i] |
5 | 31 | else: |
71
d2e19670b772
Remove assumptions and added some api stuff
Teemu Piippo <teemu@hecknology.net>
parents:
68
diff
changeset
|
32 | have_already.add(route[i]) |
5 | 33 | i += 1 |
71
d2e19670b772
Remove assumptions and added some api stuff
Teemu Piippo <teemu@hecknology.net>
parents:
68
diff
changeset
|
34 | from_place = route[0] |
d2e19670b772
Remove assumptions and added some api stuff
Teemu Piippo <teemu@hecknology.net>
parents:
68
diff
changeset
|
35 | destination = route[-1] |
88
3b86597c5a88
major update, moved the map to an osm patch
Teemu Piippo <teemu@hecknology.net>
parents:
87
diff
changeset
|
36 | route_weights = {} |
22 | 37 | f = lambda i: i**-0.3 |
71
d2e19670b772
Remove assumptions and added some api stuff
Teemu Piippo <teemu@hecknology.net>
parents:
68
diff
changeset
|
38 | factor = 1 / max(f(i + 1) for i in range(len(route))) |
88
3b86597c5a88
major update, moved the map to an osm patch
Teemu Piippo <teemu@hecknology.net>
parents:
87
diff
changeset
|
39 | while priority(route[-1]) < 0: |
71
d2e19670b772
Remove assumptions and added some api stuff
Teemu Piippo <teemu@hecknology.net>
parents:
68
diff
changeset
|
40 | del route[-1] |
87 | 41 | if not route: |
42 | return '' | |
71
d2e19670b772
Remove assumptions and added some api stuff
Teemu Piippo <teemu@hecknology.net>
parents:
68
diff
changeset
|
43 | destination = route[-1] |
d2e19670b772
Remove assumptions and added some api stuff
Teemu Piippo <teemu@hecknology.net>
parents:
68
diff
changeset
|
44 | for i, stop in enumerate(route): |
5 | 45 | # muunna indeksi siten että myöhemmät alueet korostuvat |
24
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
46 | i = f(i + 1) * factor |
5 | 47 | # ota prioriteetti huomioon, jotkin alueet ovat tärkeämpiä kyltissä kuin toiset |
88
3b86597c5a88
major update, moved the map to an osm patch
Teemu Piippo <teemu@hecknology.net>
parents:
87
diff
changeset
|
48 | i *= priority(stop) |
3b86597c5a88
major update, moved the map to an osm patch
Teemu Piippo <teemu@hecknology.net>
parents:
87
diff
changeset
|
49 | route_weights[stop] = i |
5 | 50 | # nollaa lähtöpaikan arvo ettei se mitenkään tule kylttiin |
88
3b86597c5a88
major update, moved the map to an osm patch
Teemu Piippo <teemu@hecknology.net>
parents:
87
diff
changeset
|
51 | if from_place in route_weights: |
3b86597c5a88
major update, moved the map to an osm patch
Teemu Piippo <teemu@hecknology.net>
parents:
87
diff
changeset
|
52 | route_weights[from_place] = 0 |
24
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
53 | # varmista että destination tulee kylttiin |
88
3b86597c5a88
major update, moved the map to an osm patch
Teemu Piippo <teemu@hecknology.net>
parents:
87
diff
changeset
|
54 | route_weights[destination] = 1e10 |
24
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
55 | # muodosta sign-tiedot järjestettynä reittiarvon mukaan |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
56 | weights = sorted([ |
88
3b86597c5a88
major update, moved the map to an osm patch
Teemu Piippo <teemu@hecknology.net>
parents:
87
diff
changeset
|
57 | (stop, route_weights[stop], i) \ |
71
d2e19670b772
Remove assumptions and added some api stuff
Teemu Piippo <teemu@hecknology.net>
parents:
68
diff
changeset
|
58 | for i, stop in enumerate(route) \ |
88
3b86597c5a88
major update, moved the map to an osm patch
Teemu Piippo <teemu@hecknology.net>
parents:
87
diff
changeset
|
59 | if route_weights[stop] >= 1 |
24
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
60 | ], key = lambda stop: -stop[1]) |
87 | 61 | if format == 'long': |
68 | 62 | weights = weights[:4] |
87 | 63 | elif format == 'short': |
64 | weights = weights[:2] | |
65 | # repeat for the second sign value | |
66 | try: | |
67 | if weights[1][0] != destination and weights[1][1] < (500 / length ** 1.15): | |
68 | del weights[1] | |
69 | except IndexError: | |
70 | pass | |
68 | 71 | else: |
72 | # enintään neljä tulee kylttiin | |
73 | weights = weights[:3] | |
87 | 74 | # if the third sign value is not significant enough, drop it |
68 | 75 | try: |
76 | if weights[2][0] != destination and weights[2][1] < (725 / length ** 0.8): | |
77 | del weights[2] | |
78 | except IndexError: | |
79 | pass | |
87 | 80 | # repeat for the second sign value |
68 | 81 | try: |
82 | if weights[1][0] != destination and weights[1][1] < (500 / length ** 1.15): | |
83 | del weights[1] | |
84 | except IndexError: | |
85 | pass | |
87 | 86 | # reorder to get the sign the right way around |
52 | 87 | weights = sorted(weights, key = lambda weight_data: weight_data[2]) |
87 | 88 | # form the sign.. |
24
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
89 | sign = [paino[0] for paino in weights] |
52 | 90 | old_sign = sign.copy() |
91 | sign = [] | |
92 | for place in old_sign: | |
93 | if place not in sign: | |
94 | sign.append(place) | |
24
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
95 | if whole: |
52 | 96 | sign = [from_place] + sign |
97 | if not sign: | |
98 | sign = [destination] | |
99 | return sign |