Wed, 21 Jun 2017 18:24:34 +0300
Lisää aluejuttuja
5 | 1 | #!/usr/bin/env python3 |
27 | 2 | |
3 | replacements = { | |
4 | "Ylioppilaskylä-Itä": "Ylioppilaskylä", | |
5 | "Ylioppilaskylä-Länsi": "Ylioppilaskylä", | |
6 | "Caribia": "Ylioppilaskylä", | |
7 | "Jokila": "Lieto", | |
8 | "Piispala": "Lieto", | |
9 | 'Saaro': 'Ruissalo', | |
10 | 'Silvola': 'Vahto', | |
11 | 'Hemmola': 'Vahto', | |
12 | 'Paasniittu': 'Ruskon keskusta', | |
13 | 'Kahari': 'Ruskon keskusta', | |
14 | 'Kemiö': 'Kemiönsaari', | |
15 | 'Kasnäs': 'Kemiönsaari', | |
16 | } | |
17 | ||
18 | # nimiä joista voidaan joustaa tarvittaessa | |
19 | abbreviations = { | |
20 | 'Raision keskusta': 'Raisio', | |
21 | 'Ruskon keskusta': 'Rusko', | |
22 | 'Naantalin keskusta': 'Naantali', | |
23 | 'Kaarinan keskusta': 'Kaarina', | |
24 | 'Kauppakeskus Mylly': 'Mylly', | |
25 | } | |
26 | ||
27 | def simplify_name(name): | |
28 | name = replacements.get(name, name) | |
29 | name = abbreviations.get(name, name) | |
30 | return name | |
31 | ||
24
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
32 | def reduce_schedule(reitti, trip_length, whole = False): |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
33 | length = ((trip_length / 600) + len(reitti)) / 2 |
5 | 34 | if not reitti: |
35 | return '' | |
22 | 36 | eksoalueet = { |
37 | 'Turku', 'Naantali', 'Lieto', 'Aura', 'Kaarina', 'Pargas', 'Marttila', 'Somero', 'Koski Tl', 'Tarvasjoki', | |
38 | 'Kaivopuisto', | |
39 | } | |
5 | 40 | have_already = set() |
41 | i = 0 | |
42 | while i < len(reitti): | |
43 | if reitti[i] in replacements: | |
44 | reitti[i] = replacements[reitti[i]] | |
45 | if reitti[i] in have_already: | |
46 | del reitti[i] | |
47 | else: | |
48 | have_already.add(reitti[i]) | |
49 | i += 1 | |
24
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
50 | priorities = { |
5 | 51 | 'Ihala': 150, |
52 | 'Kauppakeskus Mylly': 200, | |
53 | 'Kuninkoja': 80, | |
22 | 54 | 'Moikoinen': 35, |
5 | 55 | 'Raision keskusta': 100, |
6 | 56 | 'Friskala': 20, |
5 | 57 | 'Kukola': 50, |
58 | 'Kaistarniemi': 50, | |
59 | 'Papinsaari': 50, | |
60 | 'Oriniemi': 50, | |
61 | 'Pikisaari': 50, | |
62 | 'Häppilä': 50, | |
63 | 'Haarla': 50, | |
64 | 'Ylioppilaskylä': 50, | |
65 | 'Halinen': 70, | |
21 | 66 | 'Kakskerta': 200, |
5 | 67 | 'Pansio': 50, |
68 | 'Räntämäki': 10, | |
69 | 'Verkahovi': 20, | |
70 | 'Skanssi': 200, | |
71 | 'Vaala': 20, | |
72 | 'Varissuo': 60, | |
73 | 'Kohmo': 80, | |
74 | 'Kupittaa': 70, | |
75 | 'Kauppatori': 1e15, | |
76 | 'Lentoasema': 50, | |
77 | 'Runosmäki': 50, | |
78 | 'Lieto': 100, | |
22 | 79 | 'Lieto as': 200, |
6 | 80 | 'Ilmarinen': 50, |
5 | 81 | 'Vahto': 50, |
82 | 'Ruskon keskusta': 200, | |
27 | 83 | 'Oriketo': 50, |
5 | 84 | 'Harittu': 40, |
85 | 'Jäkärlä': 50, | |
86 | 'Paattinen': 100, | |
87 | 'Kaarinan keskusta': 200, | |
88 | 'Naantalin keskusta': 200, | |
89 | 'Uittamo': 50, | |
6 | 90 | 'Piikkiö': 100, |
91 | 'Paimio': 100, | |
5 | 92 | 'Pargas': 50, |
27 | 93 | 'Yli-Maaria': 70, |
5 | 94 | 'Saramäki': 50, |
95 | 'Tarvasjoki': 100, | |
96 | 'Marttila': 100, | |
97 | 'Koski Tl': 100, | |
98 | 'Katariina': 50, | |
99 | 'Länsikeskus': 50, | |
100 | 'Kaanaa': 100, | |
101 | 'Satava': 50, | |
6 | 102 | 'Suikkila': 50, |
103 | 'Raunistula': 50, | |
104 | 'Räntämäki': 50, | |
105 | 'Moisio': 25, | |
13
55241f0e1079
Rajattu Pääskyvuoren ja Varissuon alueet ja lisätty Pääskyvuoren prioriteettia. Nyt Pääskyvuori näkyy niissä P2:n kylteissä jotka menevät Pääskyvuoreen
Teemu Piippo <teemu@hecknology.net>
parents:
12
diff
changeset
|
106 | 'Pääskyvuori': 100, |
22 | 107 | 'Rautatieasema': 50, |
20
3199e289ae62
- Sivusto hieman edustuksellisempi
Teemu Piippo <teemu@hecknology.net>
parents:
16
diff
changeset
|
108 | 'Rymättylä': 50, |
22 | 109 | "Sauvo": 500, |
110 | "Kemiönsaari": 500, | |
5 | 111 | } |
112 | ||
113 | if 'Kauppatori' not in reitti: | |
24
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
114 | priorities['Länsikeskus'] = priorities['Skanssi'] = priorities['Kauppatori'] |
5 | 115 | |
24
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
116 | from_place = reitti[0] |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
117 | destination = reitti[-1] |
5 | 118 | reitti_arvot = {} |
22 | 119 | f = lambda i: i**-0.3 |
24
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
120 | factor = 1 / max(f(i + 1) for i in range(len(reitti))) |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
121 | for i, stop in enumerate(reitti): |
5 | 122 | # 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
|
123 | i = f(i + 1) * factor |
5 | 124 | # ota prioriteetti huomioon, jotkin alueet ovat tärkeämpiä kyltissä kuin toiset |
24
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
125 | i *= priorities.get(stop, 1) |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
126 | reitti_arvot[stop] = i |
5 | 127 | # nollaa lähtöpaikan arvo ettei se mitenkään tule kylttiin |
24
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
128 | if from_place in reitti_arvot: |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
129 | reitti_arvot[from_place] = 0 |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
130 | # varmista että destination tulee kylttiin |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
131 | reitti_arvot[destination] = 1e10 |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
132 | # muodosta sign-tiedot järjestettynä reittiarvon mukaan |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
133 | weights = sorted([ |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
134 | (stop, reitti_arvot[stop], i) \ |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
135 | for i, stop in enumerate(reitti) \ |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
136 | if reitti_arvot[stop] >= 1 |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
137 | ], key = lambda stop: -stop[1]) |
5 | 138 | # enintään neljä tulee kylttiin |
24
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
139 | weights = weights[:3] |
22 | 140 | # jos kolmas kylttiarvo ei ole tarpeeksi merkittävä suhteessa reitin pituuteen niin otetaan se pois |
141 | try: | |
27 | 142 | if weights[2][0] != destination and weights[2][1] < (1200 / length ** 0.9): |
24
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
143 | del weights[2] |
22 | 144 | except IndexError: |
145 | pass | |
146 | try: | |
24
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
147 | if weights[1][0] != destination and weights[1][1] < (500 / length ** 1.15): |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
148 | del weights[1] |
22 | 149 | except IndexError: |
150 | pass | |
24
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
151 | # lajitellaan painoarvot uudestaan reittijärjestykseen jotta sign tulee oikeinpäin |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
152 | weights = sorted(weights, key = lambda paino: paino[2]) |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
153 | # muodostetaan sign.. |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
154 | sign = [paino[0] for paino in weights] |
5 | 155 | # supista nimet jos mahdollista |
24
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
156 | def finalise(sign, abbreviation_level = 0): |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
157 | if abbreviation_level > 0: |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
158 | sign = [abbreviations.get(paikka, paikka) for paikka in sign] |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
159 | return sign |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
160 | result = finalise(sign) |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
161 | for i in range(len(sign) - 1): |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
162 | if sign[i + 1].startswith(sign[i]): |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
163 | del sign[i] |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
164 | if len(' - '.join(sign)) > 20: |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
165 | result = finalise(sign, abbreviation_level = 1) |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
166 | if whole: |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
167 | result = [from_place] + result |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
168 | short_from_place = replacements.get(from_place, from_place) |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
169 | if ( |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
170 | short_from_place != result[-1] |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
171 | and abbreviations.get(short_from_place, short_from_place) in eksoalueet | {'Kauppatori'} |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
172 | and result[-1] in eksoalueet | {'Kauppatori'} |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
173 | ): |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
174 | result = ['Turku' if k == 'Kauppatori' else k for k in result] |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
175 | return result |