octranspo 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (73) hide show
  1. data/.gitignore +3 -0
  2. data/Gemfile +2 -0
  3. data/Gemfile.lock +26 -0
  4. data/Rakefile +8 -0
  5. data/lib/octranspo.rb +20 -0
  6. data/lib/octranspo/headsign.rb +2539 -0
  7. data/lib/octranspo/headsigns.yml +40565 -0
  8. data/lib/octranspo/landmarks.rb +37 -0
  9. data/lib/octranspo/lingo.rb +125 -0
  10. data/lib/octranspo/lingo/headsign_messages.yml +104 -0
  11. data/lib/octranspo/lingo/headsign_signatures.yml +3 -0
  12. data/lib/octranspo/lingo/landmarks.yml +205 -0
  13. data/lib/octranspo/lingo/roadways.yml +1957 -0
  14. data/lib/octranspo/mobile_resource_methods.rb +98 -0
  15. data/lib/octranspo/mobile_route_data.rb +85 -0
  16. data/lib/octranspo/mobile_route_schedule.rb +118 -0
  17. data/lib/octranspo/mobile_stop_schedule.rb +137 -0
  18. data/lib/octranspo/remote_resource_methods.rb +89 -0
  19. data/lib/octranspo/route.rb +31 -0
  20. data/lib/octranspo/routes.yml +507 -0
  21. data/lib/octranspo/service_date.rb +17 -0
  22. data/lib/octranspo/stations.yml +77 -0
  23. data/lib/octranspo/stop.rb +69 -0
  24. data/lib/octranspo/stop_resource.rb +46 -0
  25. data/lib/octranspo/stops.yml +30696 -0
  26. data/lib/octranspo/version.rb +3 -0
  27. data/octranspo.gemspec +22 -0
  28. data/test/fixtures/mobile_route_data/20090323/route_123_index_0.html +457 -0
  29. data/test/fixtures/mobile_route_data/20090323/route_123_index_1.html +99 -0
  30. data/test/fixtures/mobile_route_data/20090323/route_1_index_0.html +700 -0
  31. data/test/fixtures/mobile_route_data/20090323/route_1_index_1.html +691 -0
  32. data/test/fixtures/mobile_route_data/20090323/route_2_index_0.html +682 -0
  33. data/test/fixtures/mobile_route_data/20090323/route_2_index_1.html +646 -0
  34. data/test/fixtures/mobile_route_data/20100323/route_123_index_0.html +469 -0
  35. data/test/fixtures/mobile_route_data/20100323/route_123_index_1.html +105 -0
  36. data/test/fixtures/mobile_route_data/20100323/route_1_index_0.html +703 -0
  37. data/test/fixtures/mobile_route_data/20100323/route_1_index_1.html +694 -0
  38. data/test/fixtures/mobile_route_data/20100323/route_2_index_0.html +685 -0
  39. data/test/fixtures/mobile_route_data/20100323/route_2_index_1.html +649 -0
  40. data/test/fixtures/mobile_route_data/20100323/route_3_index_0.html +649 -0
  41. data/test/fixtures/mobile_route_data/20100323/route_3_index_1.html +721 -0
  42. data/test/fixtures/mobile_route_schedule/20090323/route_18_direction_2_location_25.html +1038 -0
  43. data/test/fixtures/mobile_route_schedule/20090323/route_1_direction_1_location_0.html +1127 -0
  44. data/test/fixtures/mobile_route_schedule/20090323/route_2_direction_2_location_11.html +1430 -0
  45. data/test/fixtures/mobile_route_schedule/20090323/route_2_direction__location_11.html +104 -0
  46. data/test/fixtures/mobile_route_schedule/20100323/route_1_direction_1_location_0.html +1180 -0
  47. data/test/fixtures/mobile_route_schedule/20100323/route_2_direction_2_location_11.html +1554 -0
  48. data/test/fixtures/mobile_route_schedule/20100323/route_3_direction_1_location_0.html +1082 -0
  49. data/test/fixtures/mobile_route_schedule/20100323/route_3_direction_1_location_1.html +1082 -0
  50. data/test/fixtures/mobile_stop_schedule/20090323/location_1987.yml +198 -0
  51. data/test/fixtures/mobile_stop_schedule/20090323/location_1987_route_index_0.html +1283 -0
  52. data/test/fixtures/mobile_stop_schedule/20090323/location_1987_route_index_1.html +194 -0
  53. data/test/fixtures/mobile_stop_schedule/20090323/location_1987_route_index_2.html +116 -0
  54. data/test/fixtures/mobile_stop_schedule/20090323/location_3058_route_index_12.html +149 -0
  55. data/test/fixtures/mobile_stop_schedule/20090323/location_8789_route_index_0.html +1002 -0
  56. data/test/fixtures/mobile_stop_schedule/20100323/location_1987.yml +209 -0
  57. data/test/fixtures/mobile_stop_schedule/20100323/location_1987_route_index_0.html +1393 -0
  58. data/test/fixtures/mobile_stop_schedule/20100323/location_1987_route_index_1.html +206 -0
  59. data/test/fixtures/mobile_stop_schedule/20100323/location_1987_route_index_2.html +123 -0
  60. data/test/fixtures/mobile_stop_schedule/20100323/location_3058_route_index_12.html +278 -0
  61. data/test/fixtures/mobile_stop_schedule/20100323/location_7558_route_index_0.html +979 -0
  62. data/test/fixtures/mobile_stop_schedule/20100323/location_8789_route_index_0.html +1059 -0
  63. data/test/fixtures/stop_resource/1987.html +126 -0
  64. data/test/test_helper.rb +15 -0
  65. data/test/unit/headsign_test.rb +34 -0
  66. data/test/unit/lingo_test.rb +139 -0
  67. data/test/unit/mobile_resource_methods_test.rb +25 -0
  68. data/test/unit/mobile_route_data_test.rb +124 -0
  69. data/test/unit/mobile_route_schedule_test.rb +210 -0
  70. data/test/unit/mobile_stop_schedule_test.rb +153 -0
  71. data/test/unit/service_date_test.rb +27 -0
  72. data/test/unit/stop_resource_test.rb +26 -0
  73. metadata +251 -0
@@ -0,0 +1,209 @@
1
+ ---
2
+ - :departures:
3
+ - :destination: BAYSHORE
4
+ :time: 2010-03-23 09:03:00 Z
5
+ - :destination: BAYSHORE
6
+ :time: 2010-03-23 09:33:00 Z
7
+ - :destination: BAYSHORE
8
+ :time: 2010-03-23 10:02:00 Z
9
+ - :destination: BAYSHORE
10
+ :time: 2010-03-23 10:21:00 Z
11
+ - :destination: BAYSHORE
12
+ :time: 2010-03-23 10:36:00 Z
13
+ - :destination: BAYSHORE
14
+ :time: 2010-03-23 10:51:00 Z
15
+ - :destination: BAYSHORE
16
+ :time: 2010-03-23 11:06:00 Z
17
+ - :destination: BAYSHORE
18
+ :time: 2010-03-23 11:21:00 Z
19
+ - :destination: BAYSHORE
20
+ :time: 2010-03-23 11:36:00 Z
21
+ - :destination: BAYSHORE
22
+ :time: 2010-03-23 11:51:00 Z
23
+ - :destination: BAYSHORE
24
+ :time: 2010-03-23 12:06:00 Z
25
+ - :destination: BAYSHORE
26
+ :time: 2010-03-23 12:21:00 Z
27
+ - :destination: BAYSHORE
28
+ :time: 2010-03-23 12:36:00 Z
29
+ - :destination: BAYSHORE
30
+ :time: 2010-03-23 12:51:00 Z
31
+ - :destination: BAYSHORE
32
+ :time: 2010-03-23 13:06:00 Z
33
+ - :destination: BAYSHORE
34
+ :time: 2010-03-23 13:21:00 Z
35
+ - :destination: BAYSHORE
36
+ :time: 2010-03-23 13:33:00 Z
37
+ - :destination: BAYSHORE
38
+ :time: 2010-03-23 13:45:00 Z
39
+ - :destination: BAYSHORE
40
+ :time: 2010-03-23 13:57:00 Z
41
+ - :destination: BAYSHORE
42
+ :time: 2010-03-23 14:09:00 Z
43
+ - :destination: BAYSHORE
44
+ :time: 2010-03-23 14:21:00 Z
45
+ - :destination: BAYSHORE
46
+ :time: 2010-03-23 14:33:00 Z
47
+ - :destination: BAYSHORE
48
+ :time: 2010-03-23 14:45:00 Z
49
+ - :destination: BAYSHORE
50
+ :time: 2010-03-23 14:57:00 Z
51
+ - :destination: BAYSHORE
52
+ :time: 2010-03-23 15:09:00 Z
53
+ - :destination: BAYSHORE
54
+ :time: 2010-03-23 15:21:00 Z
55
+ - :destination: BAYSHORE
56
+ :time: 2010-03-23 15:33:00 Z
57
+ - :destination: BAYSHORE
58
+ :time: 2010-03-23 15:45:00 Z
59
+ - :destination: BAYSHORE
60
+ :time: 2010-03-23 15:57:00 Z
61
+ - :destination: BAYSHORE
62
+ :time: 2010-03-23 16:09:00 Z
63
+ - :destination: BAYSHORE
64
+ :time: 2010-03-23 16:21:00 Z
65
+ - :destination: BAYSHORE
66
+ :time: 2010-03-23 16:33:00 Z
67
+ - :destination: BAYSHORE
68
+ :time: 2010-03-23 16:45:00 Z
69
+ - :destination: BAYSHORE
70
+ :time: 2010-03-23 16:57:00 Z
71
+ - :destination: BAYSHORE
72
+ :time: 2010-03-23 17:09:00 Z
73
+ - :destination: BAYSHORE
74
+ :time: 2010-03-23 17:21:00 Z
75
+ - :destination: BAYSHORE
76
+ :time: 2010-03-23 17:33:00 Z
77
+ - :destination: BAYSHORE
78
+ :time: 2010-03-23 17:45:00 Z
79
+ - :destination: BAYSHORE
80
+ :time: 2010-03-23 17:57:00 Z
81
+ - :destination: BAYSHORE
82
+ :time: 2010-03-23 18:09:00 Z
83
+ - :destination: BAYSHORE
84
+ :time: 2010-03-23 18:24:00 Z
85
+ - :destination: BAYSHORE
86
+ :time: 2010-03-23 18:36:00 Z
87
+ - :destination: BAYSHORE
88
+ :time: 2010-03-23 18:48:00 Z
89
+ - :destination: BAYSHORE
90
+ :time: 2010-03-23 19:00:00 Z
91
+ - :destination: BAYSHORE
92
+ :time: 2010-03-23 19:12:00 Z
93
+ - :destination: BAYSHORE
94
+ :time: 2010-03-23 19:24:00 Z
95
+ - :destination: BAYSHORE
96
+ :time: 2010-03-23 19:34:00 Z
97
+ - :destination: BAYSHORE
98
+ :time: 2010-03-23 19:44:00 Z
99
+ - :destination: BAYSHORE
100
+ :time: 2010-03-23 19:54:00 Z
101
+ - :destination: BAYSHORE
102
+ :time: 2010-03-23 20:04:00 Z
103
+ - :destination: BAYSHORE
104
+ :time: 2010-03-23 20:14:00 Z
105
+ - :destination: BAYSHORE
106
+ :time: 2010-03-23 20:24:00 Z
107
+ - :destination: BAYSHORE
108
+ :time: 2010-03-23 20:34:00 Z
109
+ - :destination: BAYSHORE
110
+ :time: 2010-03-23 20:44:00 Z
111
+ - :destination: BAYSHORE
112
+ :time: 2010-03-23 20:54:00 Z
113
+ - :destination: BAYSHORE
114
+ :time: 2010-03-23 21:04:00 Z
115
+ - :destination: BAYSHORE
116
+ :time: 2010-03-23 21:14:00 Z
117
+ - :destination: BAYSHORE
118
+ :time: 2010-03-23 21:24:00 Z
119
+ - :destination: BAYSHORE
120
+ :time: 2010-03-23 21:34:00 Z
121
+ - :destination: BAYSHORE
122
+ :time: 2010-03-23 21:44:00 Z
123
+ - :destination: BAYSHORE
124
+ :time: 2010-03-23 21:54:00 Z
125
+ - :destination: BAYSHORE
126
+ :time: 2010-03-23 22:04:00 Z
127
+ - :destination: BAYSHORE
128
+ :time: 2010-03-23 22:14:00 Z
129
+ - :destination: BAYSHORE
130
+ :time: 2010-03-23 22:24:00 Z
131
+ - :destination: BAYSHORE
132
+ :time: 2010-03-23 22:39:00 Z
133
+ - :destination: BAYSHORE
134
+ :time: 2010-03-23 22:53:00 Z
135
+ - :destination: BAYSHORE
136
+ :time: 2010-03-23 23:08:00 Z
137
+ - :destination: BAYSHORE
138
+ :time: 2010-03-23 23:21:00 Z
139
+ - :destination: BAYSHORE
140
+ :time: 2010-03-23 23:36:00 Z
141
+ - :destination: BAYSHORE
142
+ :time: 2010-03-23 23:51:00 Z
143
+ - :destination: BAYSHORE
144
+ :time: 2010-03-24 00:06:00 Z
145
+ - :destination: BAYSHORE
146
+ :time: 2010-03-24 00:23:00 Z
147
+ - :destination: BAYSHORE
148
+ :time: 2010-03-24 00:38:00 Z
149
+ - :destination: BAYSHORE
150
+ :time: 2010-03-24 00:54:00 Z
151
+ - :destination: BAYSHORE
152
+ :time: 2010-03-24 01:09:00 Z
153
+ - :destination: BAYSHORE
154
+ :time: 2010-03-24 01:22:00 Z
155
+ - :destination: BAYSHORE
156
+ :time: 2010-03-24 01:37:00 Z
157
+ - :destination: BAYSHORE
158
+ :time: 2010-03-24 01:52:00 Z
159
+ - :destination: BAYSHORE
160
+ :time: 2010-03-24 02:07:00 Z
161
+ - :destination: BAYSHORE
162
+ :time: 2010-03-24 02:40:00 Z
163
+ - :destination: BAYSHORE
164
+ :time: 2010-03-24 03:10:00 Z
165
+ - :destination: BAYSHORE
166
+ :time: 2010-03-24 03:39:00 Z
167
+ - :destination: BAYSHORE
168
+ :time: 2010-03-23 16:08:00 Z
169
+ - :destination: BAYSHORE
170
+ :time: 2010-03-23 16:43:00 Z
171
+ - :destination: BAYSHORE
172
+ :time: 2010-03-24 05:18:00 Z
173
+ :date: 2010-03-23
174
+ :direction: BAYSHORE
175
+ :headsigns:
176
+ - BAYSHORE
177
+ :legend: {}
178
+
179
+ :location:
180
+ :number: "1987"
181
+ :name: SOMERSET O-W / BRONSON
182
+ :destinations: {}
183
+
184
+ :route: "2"
185
+ - :departures:
186
+ - :destination: LEBRETON
187
+ :time: 2010-03-23 14:35:00 Z
188
+ - :destination: LEBRETON
189
+ :time: 2010-03-23 15:35:00 Z
190
+ - :destination: LEBRETON
191
+ :time: 2010-03-23 16:35:00 Z
192
+ - :destination: LEBRETON
193
+ :time: 2010-03-23 17:35:00 Z
194
+ - :destination: LEBRETON
195
+ :time: 2010-03-23 18:35:00 Z
196
+ - :destination: LEBRETON
197
+ :time: 2010-03-23 19:37:00 Z
198
+ :date: 2010-03-23
199
+ :direction: LEBRETON
200
+ :headsigns:
201
+ - LEBRETON
202
+ :legend: {}
203
+
204
+ :location:
205
+ :number: "1987"
206
+ :name: SOMERSET O-W / BRONSON
207
+ :destinations: {}
208
+
209
+ :route: "153"
@@ -0,0 +1,1393 @@
1
+
2
+
3
+
4
+
5
+
6
+
7
+
8
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/2002/REC-xhtml1-20020801/DTD/xhtml1-transitional.dtd">
9
+ <html>
10
+ <head>
11
+ <title>OCTranspo Stop Times</title>
12
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
13
+ <meta http-equiv="Content-Language" content="en-us"/>
14
+ <link rel="stylesheet" type="text/css" href="mobileweb.css"/>
15
+
16
+
17
+
18
+
19
+
20
+
21
+
22
+
23
+
24
+
25
+
26
+
27
+ </head>
28
+ <body>
29
+ <p id="TemplateHeader" class="TemplateHeader"><img src="logo.jpg" width="80" height="20" alt="octranspo" align="left"/>&nbsp;Stop Passing Times</p>
30
+ <br/>
31
+
32
+
33
+
34
+
35
+
36
+
37
+
38
+
39
+
40
+
41
+
42
+
43
+
44
+ <table id="StopTimesTimesSelectedTable" cellpadding="0" cellspacing="0" border="0">
45
+ <tr>
46
+ <td class="header" valign="top">Date: </td>
47
+ <td class="selected">
48
+
49
+
50
+
51
+ Tue, Mar 23, 2010
52
+
53
+
54
+ </td>
55
+ </tr>
56
+ <tr>
57
+ <td class="header" valign="top">Time: </td><td class="selected">All Day (3am-3am)</td>
58
+ </tr>
59
+ <tr>
60
+ <td class="header" valign="top">Stop: </td><td class="selected">
61
+
62
+ SOMERSET O-W / BRONSON (1987).</td>
63
+ </tr>
64
+ <tr><td colspan="2">&nbsp;</td></tr>
65
+ <tr>
66
+ <td class="header" valign="top" colspan="2">All times</td>
67
+ </tr>
68
+
69
+
70
+ <tr><td colspan="2">&nbsp;</td></tr>
71
+ <tr>
72
+ <td class="header" valign="top">Route: </td><td class="selected">
73
+
74
+ 2 Bayshore
75
+ .</td>
76
+ </tr>
77
+
78
+ <tr>
79
+ <td colspan="2">
80
+ <table id="StopTimesTimesListTable0" cellpadding="0" cellspacing="5" border="1" width="100%">
81
+
82
+
83
+
84
+
85
+ <tr>
86
+
87
+ <td>
88
+
89
+
90
+
91
+ 5:03 AM
92
+
93
+
94
+
95
+
96
+ </td>
97
+
98
+
99
+
100
+ <td>
101
+
102
+
103
+
104
+ 5:33 AM
105
+
106
+
107
+
108
+
109
+ </td>
110
+
111
+ </tr>
112
+
113
+
114
+
115
+ <tr>
116
+
117
+ <td>
118
+
119
+
120
+
121
+ 6:02 AM
122
+
123
+
124
+
125
+
126
+ </td>
127
+
128
+
129
+
130
+ <td>
131
+
132
+
133
+
134
+ 6:21 AM
135
+
136
+
137
+
138
+
139
+ </td>
140
+
141
+ </tr>
142
+
143
+
144
+
145
+ <tr>
146
+
147
+ <td>
148
+
149
+
150
+
151
+ 6:36 AM
152
+
153
+
154
+
155
+
156
+ </td>
157
+
158
+
159
+
160
+ <td>
161
+
162
+
163
+
164
+ 6:51 AM
165
+
166
+
167
+
168
+
169
+ </td>
170
+
171
+ </tr>
172
+
173
+
174
+
175
+ <tr>
176
+
177
+ <td>
178
+
179
+
180
+
181
+ 7:06 AM
182
+
183
+
184
+
185
+
186
+ </td>
187
+
188
+
189
+
190
+ <td>
191
+
192
+
193
+
194
+ 7:21 AM
195
+
196
+
197
+
198
+
199
+ </td>
200
+
201
+ </tr>
202
+
203
+
204
+
205
+ <tr>
206
+
207
+ <td>
208
+
209
+
210
+
211
+ 7:36 AM
212
+
213
+
214
+
215
+
216
+ </td>
217
+
218
+
219
+
220
+ <td>
221
+
222
+
223
+
224
+ 7:51 AM
225
+
226
+
227
+
228
+
229
+ </td>
230
+
231
+ </tr>
232
+
233
+
234
+
235
+ <tr>
236
+
237
+ <td>
238
+
239
+
240
+
241
+ 8:06 AM
242
+
243
+
244
+
245
+
246
+ </td>
247
+
248
+
249
+
250
+ <td>
251
+
252
+
253
+
254
+ 8:21 AM
255
+
256
+
257
+
258
+
259
+ </td>
260
+
261
+ </tr>
262
+
263
+
264
+
265
+ <tr>
266
+
267
+ <td>
268
+
269
+
270
+
271
+ 8:36 AM
272
+
273
+
274
+
275
+
276
+ </td>
277
+
278
+
279
+
280
+ <td>
281
+
282
+
283
+
284
+ 8:51 AM
285
+
286
+
287
+
288
+
289
+ </td>
290
+
291
+ </tr>
292
+
293
+
294
+
295
+ <tr>
296
+
297
+ <td>
298
+
299
+
300
+
301
+ 9:06 AM
302
+
303
+
304
+
305
+
306
+ </td>
307
+
308
+
309
+
310
+ <td>
311
+
312
+
313
+
314
+ 9:21 AM
315
+
316
+
317
+
318
+
319
+ </td>
320
+
321
+ </tr>
322
+
323
+
324
+
325
+ <tr>
326
+
327
+ <td>
328
+
329
+
330
+
331
+ 9:33 AM
332
+
333
+
334
+
335
+
336
+ </td>
337
+
338
+
339
+
340
+ <td>
341
+
342
+
343
+
344
+ 9:45 AM
345
+
346
+
347
+
348
+
349
+ </td>
350
+
351
+ </tr>
352
+
353
+
354
+
355
+ <tr>
356
+
357
+ <td>
358
+
359
+
360
+
361
+ 9:57 AM
362
+
363
+
364
+
365
+
366
+ </td>
367
+
368
+
369
+
370
+ <td>
371
+
372
+
373
+
374
+ 10:09 AM
375
+
376
+
377
+
378
+
379
+ </td>
380
+
381
+ </tr>
382
+
383
+
384
+
385
+ <tr>
386
+
387
+ <td>
388
+
389
+
390
+
391
+ 10:21 AM
392
+
393
+
394
+
395
+
396
+ </td>
397
+
398
+
399
+
400
+ <td>
401
+
402
+
403
+
404
+ 10:33 AM
405
+
406
+
407
+
408
+
409
+ </td>
410
+
411
+ </tr>
412
+
413
+
414
+
415
+ <tr>
416
+
417
+ <td>
418
+
419
+
420
+
421
+ 10:45 AM
422
+
423
+
424
+
425
+
426
+ </td>
427
+
428
+
429
+
430
+ <td>
431
+
432
+
433
+
434
+ 10:57 AM
435
+
436
+
437
+
438
+
439
+ </td>
440
+
441
+ </tr>
442
+
443
+
444
+
445
+ <tr>
446
+
447
+ <td>
448
+
449
+
450
+
451
+ 11:09 AM
452
+
453
+
454
+
455
+
456
+ </td>
457
+
458
+
459
+
460
+ <td>
461
+
462
+
463
+
464
+ 11:21 AM
465
+
466
+
467
+
468
+
469
+ </td>
470
+
471
+ </tr>
472
+
473
+
474
+
475
+ <tr>
476
+
477
+ <td>
478
+
479
+
480
+
481
+ 11:33 AM
482
+
483
+
484
+
485
+
486
+ </td>
487
+
488
+
489
+
490
+ <td>
491
+
492
+
493
+
494
+ 11:45 AM
495
+
496
+
497
+
498
+
499
+ </td>
500
+
501
+ </tr>
502
+
503
+
504
+
505
+ <tr>
506
+
507
+ <td>
508
+
509
+
510
+
511
+ 11:57 AM
512
+
513
+
514
+
515
+
516
+ </td>
517
+
518
+
519
+
520
+ <td>
521
+
522
+
523
+
524
+ 12:09 PM
525
+
526
+
527
+
528
+
529
+ </td>
530
+
531
+ </tr>
532
+
533
+
534
+
535
+ <tr>
536
+
537
+ <td>
538
+
539
+
540
+
541
+ 12:21 PM
542
+
543
+
544
+
545
+
546
+ </td>
547
+
548
+
549
+
550
+ <td>
551
+
552
+
553
+
554
+ 12:33 PM
555
+
556
+
557
+
558
+
559
+ </td>
560
+
561
+ </tr>
562
+
563
+
564
+
565
+ <tr>
566
+
567
+ <td>
568
+
569
+
570
+
571
+ 12:45 PM
572
+
573
+
574
+
575
+
576
+ </td>
577
+
578
+
579
+
580
+ <td>
581
+
582
+
583
+
584
+ 12:57 PM
585
+
586
+
587
+
588
+
589
+ </td>
590
+
591
+ </tr>
592
+
593
+
594
+
595
+ <tr>
596
+
597
+ <td>
598
+
599
+
600
+
601
+ 1:09 PM
602
+
603
+
604
+
605
+
606
+ </td>
607
+
608
+
609
+
610
+ <td>
611
+
612
+
613
+
614
+ 1:21 PM
615
+
616
+
617
+
618
+
619
+ </td>
620
+
621
+ </tr>
622
+
623
+
624
+
625
+ <tr>
626
+
627
+ <td>
628
+
629
+
630
+
631
+ 1:33 PM
632
+
633
+
634
+
635
+
636
+ </td>
637
+
638
+
639
+
640
+ <td>
641
+
642
+
643
+
644
+ 1:45 PM
645
+
646
+
647
+
648
+
649
+ </td>
650
+
651
+ </tr>
652
+
653
+
654
+
655
+ <tr>
656
+
657
+ <td>
658
+
659
+
660
+
661
+ 1:57 PM
662
+
663
+
664
+
665
+
666
+ </td>
667
+
668
+
669
+
670
+ <td>
671
+
672
+
673
+
674
+ 2:09 PM
675
+
676
+
677
+
678
+
679
+ </td>
680
+
681
+ </tr>
682
+
683
+
684
+
685
+ <tr>
686
+
687
+ <td>
688
+
689
+
690
+
691
+ 2:24 PM
692
+
693
+
694
+
695
+
696
+ </td>
697
+
698
+
699
+
700
+ <td>
701
+
702
+
703
+
704
+ 2:36 PM
705
+
706
+
707
+
708
+
709
+ </td>
710
+
711
+ </tr>
712
+
713
+
714
+
715
+ <tr>
716
+
717
+ <td>
718
+
719
+
720
+
721
+ 2:48 PM
722
+
723
+
724
+
725
+
726
+ </td>
727
+
728
+
729
+
730
+ <td>
731
+
732
+
733
+
734
+ 3:00 PM
735
+
736
+
737
+
738
+
739
+ </td>
740
+
741
+ </tr>
742
+
743
+
744
+
745
+ <tr>
746
+
747
+ <td>
748
+
749
+
750
+
751
+ 3:12 PM
752
+
753
+
754
+
755
+
756
+ </td>
757
+
758
+
759
+
760
+ <td>
761
+
762
+
763
+
764
+ 3:24 PM
765
+
766
+
767
+
768
+
769
+ </td>
770
+
771
+ </tr>
772
+
773
+
774
+
775
+ <tr>
776
+
777
+ <td>
778
+
779
+
780
+
781
+ 3:34 PM
782
+
783
+
784
+
785
+
786
+ </td>
787
+
788
+
789
+
790
+ <td>
791
+
792
+
793
+
794
+ 3:44 PM
795
+
796
+
797
+
798
+
799
+ </td>
800
+
801
+ </tr>
802
+
803
+
804
+
805
+ <tr>
806
+
807
+ <td>
808
+
809
+
810
+
811
+ 3:54 PM
812
+
813
+
814
+
815
+
816
+ </td>
817
+
818
+
819
+
820
+ <td>
821
+
822
+
823
+
824
+ 4:04 PM
825
+
826
+
827
+
828
+
829
+ </td>
830
+
831
+ </tr>
832
+
833
+
834
+
835
+ <tr>
836
+
837
+ <td>
838
+
839
+
840
+
841
+ 4:14 PM
842
+
843
+
844
+
845
+
846
+ </td>
847
+
848
+
849
+
850
+ <td>
851
+
852
+
853
+
854
+ 4:24 PM
855
+
856
+
857
+
858
+
859
+ </td>
860
+
861
+ </tr>
862
+
863
+
864
+
865
+ <tr>
866
+
867
+ <td>
868
+
869
+
870
+
871
+ 4:34 PM
872
+
873
+
874
+
875
+
876
+ </td>
877
+
878
+
879
+
880
+ <td>
881
+
882
+
883
+
884
+ 4:44 PM
885
+
886
+
887
+
888
+
889
+ </td>
890
+
891
+ </tr>
892
+
893
+
894
+
895
+ <tr>
896
+
897
+ <td>
898
+
899
+
900
+
901
+ 4:54 PM
902
+
903
+
904
+
905
+
906
+ </td>
907
+
908
+
909
+
910
+ <td>
911
+
912
+
913
+
914
+ 5:04 PM
915
+
916
+
917
+
918
+
919
+ </td>
920
+
921
+ </tr>
922
+
923
+
924
+
925
+ <tr>
926
+
927
+ <td>
928
+
929
+
930
+
931
+ 5:14 PM
932
+
933
+
934
+
935
+
936
+ </td>
937
+
938
+
939
+
940
+ <td>
941
+
942
+
943
+
944
+ 5:24 PM
945
+
946
+
947
+
948
+
949
+ </td>
950
+
951
+ </tr>
952
+
953
+
954
+
955
+ <tr>
956
+
957
+ <td>
958
+
959
+
960
+
961
+ 5:34 PM
962
+
963
+
964
+
965
+
966
+ </td>
967
+
968
+
969
+
970
+ <td>
971
+
972
+
973
+
974
+ 5:44 PM
975
+
976
+
977
+
978
+
979
+ </td>
980
+
981
+ </tr>
982
+
983
+
984
+
985
+ <tr>
986
+
987
+ <td>
988
+
989
+
990
+
991
+ 5:54 PM
992
+
993
+
994
+
995
+
996
+ </td>
997
+
998
+
999
+
1000
+ <td>
1001
+
1002
+
1003
+
1004
+ 6:04 PM
1005
+
1006
+
1007
+
1008
+
1009
+ </td>
1010
+
1011
+ </tr>
1012
+
1013
+
1014
+
1015
+ <tr>
1016
+
1017
+ <td>
1018
+
1019
+
1020
+
1021
+ 6:14 PM
1022
+
1023
+
1024
+
1025
+
1026
+ </td>
1027
+
1028
+
1029
+
1030
+ <td>
1031
+
1032
+
1033
+
1034
+ 6:24 PM
1035
+
1036
+
1037
+
1038
+
1039
+ </td>
1040
+
1041
+ </tr>
1042
+
1043
+
1044
+
1045
+ <tr>
1046
+
1047
+ <td>
1048
+
1049
+
1050
+
1051
+ 6:39 PM
1052
+
1053
+
1054
+
1055
+
1056
+ </td>
1057
+
1058
+
1059
+
1060
+ <td>
1061
+
1062
+
1063
+
1064
+ 6:53 PM
1065
+
1066
+
1067
+
1068
+
1069
+ </td>
1070
+
1071
+ </tr>
1072
+
1073
+
1074
+
1075
+ <tr>
1076
+
1077
+ <td>
1078
+
1079
+
1080
+
1081
+ 7:08 PM
1082
+
1083
+
1084
+
1085
+
1086
+ </td>
1087
+
1088
+
1089
+
1090
+ <td>
1091
+
1092
+
1093
+
1094
+ 7:21 PM
1095
+
1096
+
1097
+
1098
+
1099
+ </td>
1100
+
1101
+ </tr>
1102
+
1103
+
1104
+
1105
+ <tr>
1106
+
1107
+ <td>
1108
+
1109
+
1110
+
1111
+ 7:36 PM
1112
+
1113
+
1114
+
1115
+
1116
+ </td>
1117
+
1118
+
1119
+
1120
+ <td>
1121
+
1122
+
1123
+
1124
+ 7:51 PM
1125
+
1126
+
1127
+
1128
+
1129
+ </td>
1130
+
1131
+ </tr>
1132
+
1133
+
1134
+
1135
+ <tr>
1136
+
1137
+ <td>
1138
+
1139
+
1140
+
1141
+ 8:06 PM
1142
+
1143
+
1144
+
1145
+
1146
+ </td>
1147
+
1148
+
1149
+
1150
+ <td>
1151
+
1152
+
1153
+
1154
+ 8:23 PM
1155
+
1156
+
1157
+
1158
+
1159
+ </td>
1160
+
1161
+ </tr>
1162
+
1163
+
1164
+
1165
+ <tr>
1166
+
1167
+ <td>
1168
+
1169
+
1170
+
1171
+ 8:38 PM
1172
+
1173
+
1174
+
1175
+
1176
+ </td>
1177
+
1178
+
1179
+
1180
+ <td>
1181
+
1182
+
1183
+
1184
+ 8:54 PM
1185
+
1186
+
1187
+
1188
+
1189
+ </td>
1190
+
1191
+ </tr>
1192
+
1193
+
1194
+
1195
+ <tr>
1196
+
1197
+ <td>
1198
+
1199
+
1200
+
1201
+ 9:09 PM
1202
+
1203
+
1204
+
1205
+
1206
+ </td>
1207
+
1208
+
1209
+
1210
+ <td>
1211
+
1212
+
1213
+
1214
+ 9:22 PM
1215
+
1216
+
1217
+
1218
+
1219
+ </td>
1220
+
1221
+ </tr>
1222
+
1223
+
1224
+
1225
+ <tr>
1226
+
1227
+ <td>
1228
+
1229
+
1230
+
1231
+ 9:37 PM
1232
+
1233
+
1234
+
1235
+
1236
+ </td>
1237
+
1238
+
1239
+
1240
+ <td>
1241
+
1242
+
1243
+
1244
+ 9:52 PM
1245
+
1246
+
1247
+
1248
+
1249
+ </td>
1250
+
1251
+ </tr>
1252
+
1253
+
1254
+
1255
+ <tr>
1256
+
1257
+ <td>
1258
+
1259
+
1260
+
1261
+ 10:07 PM
1262
+
1263
+
1264
+
1265
+
1266
+ </td>
1267
+
1268
+
1269
+
1270
+ <td>
1271
+
1272
+
1273
+
1274
+ 10:40 PM
1275
+
1276
+
1277
+
1278
+
1279
+ </td>
1280
+
1281
+ </tr>
1282
+
1283
+
1284
+
1285
+ <tr>
1286
+
1287
+ <td>
1288
+
1289
+
1290
+
1291
+ 11:10 PM
1292
+
1293
+
1294
+
1295
+
1296
+ </td>
1297
+
1298
+
1299
+
1300
+ <td>
1301
+
1302
+
1303
+
1304
+ 11:39 PM
1305
+
1306
+
1307
+
1308
+
1309
+ </td>
1310
+
1311
+ </tr>
1312
+
1313
+
1314
+
1315
+ <tr>
1316
+
1317
+ <td>
1318
+
1319
+
1320
+
1321
+ 12:08 AM
1322
+
1323
+
1324
+
1325
+
1326
+ </td>
1327
+
1328
+
1329
+
1330
+ <td>
1331
+
1332
+
1333
+
1334
+ 12:43 AM
1335
+
1336
+
1337
+
1338
+
1339
+ </td>
1340
+
1341
+ </tr>
1342
+
1343
+
1344
+
1345
+ <tr>
1346
+
1347
+ <td>
1348
+
1349
+
1350
+
1351
+ 1:18 AM
1352
+
1353
+
1354
+
1355
+
1356
+ </td>
1357
+
1358
+
1359
+
1360
+ </tr>
1361
+
1362
+
1363
+
1364
+
1365
+ </table>
1366
+ </td>
1367
+ </tr>
1368
+
1369
+
1370
+ </table>
1371
+
1372
+ <table id="StopTimesTimesLinksTable" cellpadding="0" cellspacing="0" border="0">
1373
+ <tr><td id="StopTimesTimesLinksTDBlank">&nbsp;</td></tr>
1374
+
1375
+ <tr>
1376
+ <td class="link"><a href="post.datestop.stoptimes.oci;jsessionid=496BF5C84C95C10C679243D23E456A6E?lang=en&amp;day=20100323&amp;stop=1987&amp;rangeIndex=5&amp;accessible=false">Choose a new route</a></td>
1377
+ </tr>
1378
+
1379
+ <tr>
1380
+ <td class="link"><a href="start.stoptimes.oci;jsessionid=496BF5C84C95C10C679243D23E456A6E?lang=en">Choose a new stop</a></td>
1381
+ </tr>
1382
+ </table>
1383
+
1384
+
1385
+
1386
+
1387
+ <br/>
1388
+ <p id="TemplateFooter" class="TemplateFooter"><a href="startFR.stoptimes.oci">Fran�ais</a> | <a href="startEN.schedules.oci">Route Schedules</a> | <a href="startEN.tripplan.oci">Travel Planner</a></p>
1389
+ </body>
1390
+ </html>
1391
+
1392
+
1393
+