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