-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp_tooltip.html
207 lines (207 loc) · 7.04 KB
/
app_tooltip.html
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
<!-- This is the HTML code for the travel time comparison app tooltip. -->
<!-- for Sampo Vesanen's MSc thesis. 15.10.2020. -->
<div id='app-tooltip'>
<div>
<i class='icon hourglass-start'></i>%s, %s<br> <!-- from_zip, nimi[1] -->
<i class='icon hourglass-end'></i><b>%s, %s</b> <!-- zipcode, nimi -->
</div>
<hr class='tooltip-hr'>
<!-- TTM18 data -->
<div>
<i class='icon database'></i>
<b>Travel Time Matrix 2018</b>
</div>
<!-- TTM18 zipcode averages -->
<table class='tg tg-header'>
<tr>
<th class='tg-cell'></th>
<th class='tg-cell mover'><div>rush hour</div></th>
<th class='tg-cell'>midday</th>
<th class='tg-cell mover'><div>all, average</div></th>
</tr>
</table>
<table class='tg tg-flattop vl-sfp-wtd'>
<tr id='ttm-sfp'>
<td class='tg-cell mover'>
<div>
<div class='cell-abbr'>sfp</div>
<div class='cell-expl'>searching for parking (min)</div>
</div>
</td>
<td class='tg-cell'>%0.2f</td> <!-- ttm_sfp -->
<td class='tg-cell'>%0.2f</td> <!-- ttm_sfp -->
<td class='tg-cell'>%0.2f</td> <!-- ttm_sfp -->
</tr>
<tr id='ttm-wtd'>
<td class='tg-cell mover'>
<div>
<div class='cell-abbr'>wtd_avg</div>
<div class='cell-expl'>walk to destination, mean (min)</div>
</div>
</td>
<td class='tg-cell'>%0.2f</td> <!-- ttm_wtd -->
<td class='tg-cell'>%0.2f</td> <!-- ttm_wtd -->
<td class='tg-cell'>%0.2f</td> <!-- ttm_wtd -->
</tr>
</table>
<table class='tg'>
<tr class='tg vl-avg' id='ttm-avg'>
<td class='tg-cell mover'>
<div>
<div class='cell-abbr'>avg</div>
<div class='cell-expl'>mean duration of the total travel chain (min)</div>
</div>
</td>
<td class='tg-cell'>%0.2f</td> <!-- ttm_r_avg -->
<td class='tg-cell'>%0.2f</td> <!-- ttm_m_avg -->
<td class='tg-cell'>%0.2f</td> <!-- ttm_all_avg -->
</tr>
<tr class='tg vl-drive-pct' id='ttm-drivetime'>
<td class='tg-cell mover'>
<div>
<div class='cell-abbr'>drivetime</div>
<div class='cell-expl'>duration of the driving segment in the mean total travel chain (min)</div>
</div>
</td>
<td class='tg-cell'>%0.2f</td> <!-- ttm_r_drivetime -->
<td class='tg-cell'>%0.2f</td> <!-- ttm_m_drivetime -->
<td class='tg-cell'>%0.2f</td> <!-- ttm_all_drivetime -->
</tr>
<tr class='tg vl-drive-pct' id='ttm-pct'>
<td class='tg-cell mover'>
<div>
<div class='cell-abbr'>pct</div>
<div class='cell-expl'>share of the parking process in the total duration of the travel chain (%%)</div>
</div>
</td>
<td class='tg-cell'>%0.2f</td> <!-- ttm_r_pct -->
<td class='tg-cell'>%0.2f</td> <!-- ttm_m_pct -->
<td class='tg-cell'>%0.2f</td> <!-- ttm_all_pct -->
</tr>
</table>
<hr class='tooltip-hr'>
<!-- Thesis results data -->
<div>
<i class='icon poll'></i>
<b>Thesis data</b>, values in %s: %s <!-- zipcode, vals_in_zip -->
</div>
<table class='tg tg-header'>
<tr>
<th class='tg-cell'></th>
<th class='tg-cell mover'><div>rush hour</div></th>
<th class='tg-cell'>midday</th>
<th class='tg-cell mover'><div>all, average</div></th>
</tr>
</table>
<table class='tg tg-flattop vl-sfp-wtd'>
<tr id='thesis-sfp'>
<td class='tg-cell mover'>
<div>
<div class='cell-abbr'>sfp_avg</div>
<div class='cell-expl'>searching for parking, mean (min)</div>
</div>
</td>
<td class='tg-cell'>%0.2f</td> <!-- thesis_r_sfp -->
<td class='tg-cell'>%0.2f</td> <!-- thesis_m_sfp -->
<td class='tg-cell'>%0.2f</td> <!-- thesis_all_sfp -->
</tr>
<tr id='thesis-wtd'>
<td class='tg-cell mover'>
<div>
<div class='cell-abbr'>wtd_avg</div>
<div class='cell-expl'>walk to destination, mean (min)</div>
</div>
</td>
<td class='tg-cell'>%0.2f</td> <!-- thesis_r_wtd -->
<td class='tg-cell'>%0.2f</td> <!-- thesis_m_wtd -->
<td class='tg-cell'>%0.2f</td> <!-- thesis_all_wtd -->
</tr>
</table>
<table class='tg vl-drive-pct'>
<tr id='thesis-drivetime'>
<td class='tg-cell mover'>
<div>
<div class='cell-abbr'>drivetime</div>
<div class='cell-expl'>duration of the driving segment in the mean total travel chain (min)</div>
</div>
</td>
<td class='tg-cell'>%0.2f</td> <!-- thesis_r_drivetime -->
<td class='tg-cell'>%0.2f</td> <!-- thesis_m_drivetime -->
<td class='tg-cell'>%0.2f</td> <!-- thesis_all_drivetime -->
</tr>
<tr id='thesis-pct'>
<td class='tg-cell mover'>
<div>
<div class='cell-abbr'>pct</div>
<div class='cell-expl'>share of the parking process in the total travel chain (%%)</div>
</div>
</td>
<td class='tg-cell'>%0.2f</td> <!-- thesis_r_pct -->
<td class='tg-cell'>%0.2f</td> <!-- thesis_m_pct -->
<td class='tg-cell'>%0.2f</td> <!-- thesis_all_pct -->
</tr>
</table>
<hr class='tooltip-hr'>
<!-- Compare TTM18 and thesis data -->
<div>
<i class='icon exchange-alt'></i>
<b>Comparison of TTM18 and<br>
thesis data</b>
</div>
<table class='tg tg-header'>
<tr>
<th class='tg-cell'></th>
<th class='tg-cell mover'><div>rush hour</div></th>
<th class='tg-cell'>midday</th>
<th class='tg-cell mover'><div>all, average</div></th>
</tr>
</table>
<table class='tg tg-compare tg-flattop vl-sfp-wtd'>
<tr id='compare-sfp'>
<td class='tg-cell mover'>
<div>
<div class='cell-abbr'>sfp</div>
<div class='cell-expl'>compare datasets: searching for parking (%%)</div>
</div>
</td>
<td class='tg-cell compcol1'>%0.2f</td> <!-- comp_r_sfp -->
<td class='tg-cell compcol2'>%0.2f</td> <!-- comp_m_sfp -->
<td class='tg-cell compcol3'>%0.2f</td> <!-- comp_all_sfp -->
</tr>
<tr id='compare-wtd'>
<td class='tg-cell mover'>
<div>
<div class='cell-abbr'>wtd</div>
<div class='cell-expl'>compare datasets: walk to destination (%%)</div>
</div>
</td>
<td class='tg-cell compcol1'>%0.2f</td> <!-- comp_r_wtd -->
<td class='tg-cell compcol2'>%0.2f</td> <!-- comp_m_wtd -->
<td class='tg-cell compcol3'>%0.2f</td> <!-- comp_all_wtd -->
</tr>
</table>
<table class='tg tg-compare vl-drive-pct'>
<tr id='compare-drivetime'>
<td class='tg-cell mover'>
<div>
<div class='cell-abbr'>drivetime</div>
<div class='cell-expl'>compare durations of the driving segments in the two datasets (%%)</div>
</div>
</td>
<td class='tg-cell compcol1'>%0.2f</td> <!-- comp_r_drivetime -->
<td class='tg-cell compcol2'>%0.2f</td> <!-- comp_m_drivetime -->
<td class='tg-cell compcol3'>%0.2f</td> <!-- comp_all_drivetime -->
</tr>
<tr id='compare-pct'>
<td class='tg-cell mover'>
<div>
<div class='cell-abbr'>pct</div>
<div class='cell-expl'>compare the significances of the parking processes in the two datasets (%%)</div>
</div>
</td>
<td class='tg-cell compcol1'>%0.2f</td> <!-- comp_r_pct -->
<td class='tg-cell compcol2'>%0.2f</td> <!-- comp_m_pct -->
<td class='tg-cell compcol3'>%0.2f</td> <!-- comp_all_pct -->
</tr>
</table>
</div>