cta_redux 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (55) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +37 -0
  3. data/.rspec +2 -0
  4. data/Gemfile +4 -0
  5. data/LICENSE +22 -0
  6. data/README.md +16 -0
  7. data/Rakefile +2 -0
  8. data/cta_redux.gemspec +32 -0
  9. data/data/.gitkeep +0 -0
  10. data/data/cta-gtfs.db.gz +0 -0
  11. data/lib/cta_redux/api/api_response.rb +45 -0
  12. data/lib/cta_redux/api/bus_tracker.rb +178 -0
  13. data/lib/cta_redux/api/customer_alerts.rb +68 -0
  14. data/lib/cta_redux/api/train_tracker.rb +89 -0
  15. data/lib/cta_redux/bus_tracker.rb +183 -0
  16. data/lib/cta_redux/customer_alerts.rb +72 -0
  17. data/lib/cta_redux/faraday_middleware/bus_tracker_parser.rb +46 -0
  18. data/lib/cta_redux/faraday_middleware/customer_alerts_parser.rb +39 -0
  19. data/lib/cta_redux/faraday_middleware/simple_cache.rb +32 -0
  20. data/lib/cta_redux/faraday_middleware/train_tracker_parser.rb +37 -0
  21. data/lib/cta_redux/models/agency.rb +4 -0
  22. data/lib/cta_redux/models/bus.rb +46 -0
  23. data/lib/cta_redux/models/calendar.rb +7 -0
  24. data/lib/cta_redux/models/route.rb +62 -0
  25. data/lib/cta_redux/models/shape.rb +4 -0
  26. data/lib/cta_redux/models/stop.rb +66 -0
  27. data/lib/cta_redux/models/stop_time.rb +6 -0
  28. data/lib/cta_redux/models/train.rb +74 -0
  29. data/lib/cta_redux/models/transfer.rb +6 -0
  30. data/lib/cta_redux/models/trip.rb +64 -0
  31. data/lib/cta_redux/train_tracker.rb +103 -0
  32. data/lib/cta_redux/version.rb +3 -0
  33. data/lib/cta_redux.rb +50 -0
  34. data/script/gtfs_to_sqlite.rb +137 -0
  35. data/spec/bus_tracker_spec.rb +149 -0
  36. data/spec/customer_alerts_spec.rb +48 -0
  37. data/spec/spec_helper.rb +16 -0
  38. data/spec/stubs/alerts_response.xml +362 -0
  39. data/spec/stubs/getdirections_response.xml +16 -0
  40. data/spec/stubs/getpatterns_rt22_response.xml +2768 -0
  41. data/spec/stubs/getpredictions_rt22stpid15895_response.xml +59 -0
  42. data/spec/stubs/getpredictions_vid4361_response.xml +647 -0
  43. data/spec/stubs/getroutes_response.xml +774 -0
  44. data/spec/stubs/getservicebulletins_rt8_response.xml +110 -0
  45. data/spec/stubs/getstops_response.xml +614 -0
  46. data/spec/stubs/gettime_response.xml +2 -0
  47. data/spec/stubs/getvehicles_rt22_response.xml +239 -0
  48. data/spec/stubs/getvehicles_vid4394_response.xml +23 -0
  49. data/spec/stubs/route_status8_response.xml +1 -0
  50. data/spec/stubs/routes_response.xml +1 -0
  51. data/spec/stubs/ttarivals_stpid30141_response.xml +1 -0
  52. data/spec/stubs/ttfollow_run217_response.xml +1 -0
  53. data/spec/stubs/ttpositions_response.xml +1 -0
  54. data/spec/train_tracker_spec.rb +70 -0
  55. metadata +234 -0
@@ -0,0 +1,774 @@
1
+ <?xml version="1.0"?>
2
+
3
+
4
+
5
+
6
+
7
+
8
+ <bustime-response>
9
+
10
+
11
+ <route>
12
+ <rt>1</rt>
13
+ <rtnm>Bronzeville/Union Station</rtnm>
14
+ <rtclr>#336633</rtclr>
15
+ </route>
16
+
17
+ <route>
18
+ <rt>2</rt>
19
+ <rtnm>Hyde Park Express</rtnm>
20
+ <rtclr>#993366</rtclr>
21
+ </route>
22
+
23
+ <route>
24
+ <rt>3</rt>
25
+ <rtnm>King Drive</rtnm>
26
+ <rtclr>#009900</rtclr>
27
+ </route>
28
+
29
+ <route>
30
+ <rt>4</rt>
31
+ <rtnm>Cottage Grove</rtnm>
32
+ <rtclr>#cc3300</rtclr>
33
+ </route>
34
+
35
+ <route>
36
+ <rt>5</rt>
37
+ <rtnm>South Shore Night Bus</rtnm>
38
+ <rtclr>#996633</rtclr>
39
+ </route>
40
+
41
+ <route>
42
+ <rt>6</rt>
43
+ <rtnm>Jackson Park Express</rtnm>
44
+ <rtclr>#ff0066</rtclr>
45
+ </route>
46
+
47
+ <route>
48
+ <rt>7</rt>
49
+ <rtnm>Harrison</rtnm>
50
+ <rtclr>#666600</rtclr>
51
+ </route>
52
+
53
+ <route>
54
+ <rt>8</rt>
55
+ <rtnm>Halsted</rtnm>
56
+ <rtclr>#ff00ff</rtclr>
57
+ </route>
58
+
59
+ <route>
60
+ <rt>8A</rt>
61
+ <rtnm>South Halsted</rtnm>
62
+ <rtclr>#66cc66</rtclr>
63
+ </route>
64
+
65
+ <route>
66
+ <rt>9</rt>
67
+ <rtnm>Ashland</rtnm>
68
+ <rtclr>#cc3366</rtclr>
69
+ </route>
70
+
71
+ <route>
72
+ <rt>10</rt>
73
+ <rtnm>Museum of S &amp; I</rtnm>
74
+ <rtclr>#cc66ff</rtclr>
75
+ </route>
76
+
77
+ <route>
78
+ <rt>11</rt>
79
+ <rtnm>Lincoln</rtnm>
80
+ <rtclr>#ff6600</rtclr>
81
+ </route>
82
+
83
+ <route>
84
+ <rt>12</rt>
85
+ <rtnm>Roosevelt</rtnm>
86
+ <rtclr>#33ccff</rtclr>
87
+ </route>
88
+
89
+ <route>
90
+ <rt>J14</rt>
91
+ <rtnm>Jeffery Jump</rtnm>
92
+ <rtclr>#c8c8c8</rtclr>
93
+ </route>
94
+
95
+ <route>
96
+ <rt>15</rt>
97
+ <rtnm>Jeffery Local</rtnm>
98
+ <rtclr>#ff9999</rtclr>
99
+ </route>
100
+
101
+ <route>
102
+ <rt>18</rt>
103
+ <rtnm>16th/18th</rtnm>
104
+ <rtclr>#6699ff</rtclr>
105
+ </route>
106
+
107
+ <route>
108
+ <rt>19</rt>
109
+ <rtnm>United Center Express</rtnm>
110
+ <rtclr>#78aa50</rtclr>
111
+ </route>
112
+
113
+ <route>
114
+ <rt>20</rt>
115
+ <rtnm>Madison</rtnm>
116
+ <rtclr>#336633</rtclr>
117
+ </route>
118
+
119
+ <route>
120
+ <rt>21</rt>
121
+ <rtnm>Cermak</rtnm>
122
+ <rtclr>#009900</rtclr>
123
+ </route>
124
+
125
+ <route>
126
+ <rt>22</rt>
127
+ <rtnm>Clark</rtnm>
128
+ <rtclr>#cc3300</rtclr>
129
+ </route>
130
+
131
+ <route>
132
+ <rt>24</rt>
133
+ <rtnm>Wentworth</rtnm>
134
+ <rtclr>#9900cc</rtclr>
135
+ </route>
136
+
137
+ <route>
138
+ <rt>26</rt>
139
+ <rtnm>South Shore Express</rtnm>
140
+ <rtclr>#006666</rtclr>
141
+ </route>
142
+
143
+ <route>
144
+ <rt>28</rt>
145
+ <rtnm>Stony Island</rtnm>
146
+ <rtclr>#996633</rtclr>
147
+ </route>
148
+
149
+ <route>
150
+ <rt>29</rt>
151
+ <rtnm>State</rtnm>
152
+ <rtclr>#666600</rtclr>
153
+ </route>
154
+
155
+ <route>
156
+ <rt>30</rt>
157
+ <rtnm>South Chicago</rtnm>
158
+ <rtclr>#ff00ff</rtclr>
159
+ </route>
160
+
161
+ <route>
162
+ <rt>34</rt>
163
+ <rtnm>South Michigan</rtnm>
164
+ <rtclr>#cc3366</rtclr>
165
+ </route>
166
+
167
+ <route>
168
+ <rt>35</rt>
169
+ <rtnm>31st/35th</rtnm>
170
+ <rtclr>#33ff00</rtclr>
171
+ </route>
172
+
173
+ <route>
174
+ <rt>36</rt>
175
+ <rtnm>Broadway</rtnm>
176
+ <rtclr>#cc66ff</rtclr>
177
+ </route>
178
+
179
+ <route>
180
+ <rt>37</rt>
181
+ <rtnm>Sedgwick</rtnm>
182
+ <rtclr>#c8c8c8</rtclr>
183
+ </route>
184
+
185
+ <route>
186
+ <rt>39</rt>
187
+ <rtnm>Pershing</rtnm>
188
+ <rtclr>#33ccff</rtclr>
189
+ </route>
190
+
191
+ <route>
192
+ <rt>43</rt>
193
+ <rtnm>43rd</rtnm>
194
+ <rtclr>#cc9966</rtclr>
195
+ </route>
196
+
197
+ <route>
198
+ <rt>44</rt>
199
+ <rtnm>Wallace-Racine</rtnm>
200
+ <rtclr>#ff9999</rtclr>
201
+ </route>
202
+
203
+ <route>
204
+ <rt>47</rt>
205
+ <rtnm>47th</rtnm>
206
+ <rtclr>#99cc33</rtclr>
207
+ </route>
208
+
209
+ <route>
210
+ <rt>48</rt>
211
+ <rtnm>South Damen</rtnm>
212
+ <rtclr>#6699ff</rtclr>
213
+ </route>
214
+
215
+ <route>
216
+ <rt>49</rt>
217
+ <rtnm>Western</rtnm>
218
+ <rtclr>#336633</rtclr>
219
+ </route>
220
+
221
+ <route>
222
+ <rt>49B</rt>
223
+ <rtnm>North Western</rtnm>
224
+ <rtclr>#009900</rtclr>
225
+ </route>
226
+
227
+ <route>
228
+ <rt>50</rt>
229
+ <rtnm>Damen</rtnm>
230
+ <rtclr>#cc3300</rtclr>
231
+ </route>
232
+
233
+ <route>
234
+ <rt>51</rt>
235
+ <rtnm>51st</rtnm>
236
+ <rtclr>#006666</rtclr>
237
+ </route>
238
+
239
+ <route>
240
+ <rt>52</rt>
241
+ <rtnm>Kedzie/California</rtnm>
242
+ <rtclr>#996633</rtclr>
243
+ </route>
244
+
245
+ <route>
246
+ <rt>52A</rt>
247
+ <rtnm>South Kedzie</rtnm>
248
+ <rtclr>#ff0066</rtclr>
249
+ </route>
250
+
251
+ <route>
252
+ <rt>53</rt>
253
+ <rtnm>Pulaski</rtnm>
254
+ <rtclr>#666600</rtclr>
255
+ </route>
256
+
257
+ <route>
258
+ <rt>53A</rt>
259
+ <rtnm>South Pulaski</rtnm>
260
+ <rtclr>#ff00ff</rtclr>
261
+ </route>
262
+
263
+ <route>
264
+ <rt>54</rt>
265
+ <rtnm>Cicero</rtnm>
266
+ <rtclr>#cc3366</rtclr>
267
+ </route>
268
+
269
+ <route>
270
+ <rt>54A</rt>
271
+ <rtnm>North Cicero/Skokie Blvd.</rtnm>
272
+ <rtclr>#33ff00</rtclr>
273
+ </route>
274
+
275
+ <route>
276
+ <rt>54B</rt>
277
+ <rtnm>South Cicero</rtnm>
278
+ <rtclr>#cc66ff</rtclr>
279
+ </route>
280
+
281
+ <route>
282
+ <rt>55</rt>
283
+ <rtnm>Garfield</rtnm>
284
+ <rtclr>#33ccff</rtclr>
285
+ </route>
286
+
287
+ <route>
288
+ <rt>55A</rt>
289
+ <rtnm>55th/Austin</rtnm>
290
+ <rtclr>#cc9966</rtclr>
291
+ </route>
292
+
293
+ <route>
294
+ <rt>55N</rt>
295
+ <rtnm>55th/Narragansett</rtnm>
296
+ <rtclr>#ff9999</rtclr>
297
+ </route>
298
+
299
+ <route>
300
+ <rt>56</rt>
301
+ <rtnm>Milwaukee</rtnm>
302
+ <rtclr>#6699ff</rtclr>
303
+ </route>
304
+
305
+ <route>
306
+ <rt>57</rt>
307
+ <rtnm>Laramie</rtnm>
308
+ <rtclr>#993366</rtclr>
309
+ </route>
310
+
311
+ <route>
312
+ <rt>59</rt>
313
+ <rtnm>59th/61st</rtnm>
314
+ <rtclr>#009900</rtclr>
315
+ </route>
316
+
317
+ <route>
318
+ <rt>60</rt>
319
+ <rtnm>Blue Island/26th</rtnm>
320
+ <rtclr>#9900cc</rtclr>
321
+ </route>
322
+
323
+ <route>
324
+ <rt>62</rt>
325
+ <rtnm>Archer</rtnm>
326
+ <rtclr>#cc3300</rtclr>
327
+ </route>
328
+
329
+ <route>
330
+ <rt>62H</rt>
331
+ <rtnm>Archer/Harlem</rtnm>
332
+ <rtclr>#006666</rtclr>
333
+ </route>
334
+
335
+ <route>
336
+ <rt>63</rt>
337
+ <rtnm>63rd</rtnm>
338
+ <rtclr>#996633</rtclr>
339
+ </route>
340
+
341
+ <route>
342
+ <rt>63W</rt>
343
+ <rtnm>West 63rd</rtnm>
344
+ <rtclr>#ff0066</rtclr>
345
+ </route>
346
+
347
+ <route>
348
+ <rt>65</rt>
349
+ <rtnm>Grand</rtnm>
350
+ <rtclr>#ff00ff</rtclr>
351
+ </route>
352
+
353
+ <route>
354
+ <rt>66</rt>
355
+ <rtnm>Chicago</rtnm>
356
+ <rtclr>#66cc66</rtclr>
357
+ </route>
358
+
359
+ <route>
360
+ <rt>67</rt>
361
+ <rtnm>67th-69th-71st</rtnm>
362
+ <rtclr>#cc3366</rtclr>
363
+ </route>
364
+
365
+ <route>
366
+ <rt>68</rt>
367
+ <rtnm>Northwest Highway</rtnm>
368
+ <rtclr>#33ff00</rtclr>
369
+ </route>
370
+
371
+ <route>
372
+ <rt>70</rt>
373
+ <rtnm>Division</rtnm>
374
+ <rtclr>#ff6600</rtclr>
375
+ </route>
376
+
377
+ <route>
378
+ <rt>71</rt>
379
+ <rtnm>71st/South Shore</rtnm>
380
+ <rtclr>#33ccff</rtclr>
381
+ </route>
382
+
383
+ <route>
384
+ <rt>72</rt>
385
+ <rtnm>North</rtnm>
386
+ <rtclr>#cc9966</rtclr>
387
+ </route>
388
+
389
+ <route>
390
+ <rt>73</rt>
391
+ <rtnm>Armitage</rtnm>
392
+ <rtclr>#ff9999</rtclr>
393
+ </route>
394
+
395
+ <route>
396
+ <rt>74</rt>
397
+ <rtnm>Fullerton</rtnm>
398
+ <rtclr>#99cc33</rtclr>
399
+ </route>
400
+
401
+ <route>
402
+ <rt>75</rt>
403
+ <rtnm>74th-75th</rtnm>
404
+ <rtclr>#6699ff</rtclr>
405
+ </route>
406
+
407
+ <route>
408
+ <rt>76</rt>
409
+ <rtnm>Diversey</rtnm>
410
+ <rtclr>#336633</rtclr>
411
+ </route>
412
+
413
+ <route>
414
+ <rt>77</rt>
415
+ <rtnm>Belmont</rtnm>
416
+ <rtclr>#993366</rtclr>
417
+ </route>
418
+
419
+ <route>
420
+ <rt>78</rt>
421
+ <rtnm>Montrose</rtnm>
422
+ <rtclr>#009900</rtclr>
423
+ </route>
424
+
425
+ <route>
426
+ <rt>79</rt>
427
+ <rtnm>79th</rtnm>
428
+ <rtclr>#9900cc</rtclr>
429
+ </route>
430
+
431
+ <route>
432
+ <rt>80</rt>
433
+ <rtnm>Irving Park</rtnm>
434
+ <rtclr>#cc3300</rtclr>
435
+ </route>
436
+
437
+ <route>
438
+ <rt>81</rt>
439
+ <rtnm>Lawrence</rtnm>
440
+ <rtclr>#996633</rtclr>
441
+ </route>
442
+
443
+ <route>
444
+ <rt>81W</rt>
445
+ <rtnm>West Lawrence</rtnm>
446
+ <rtclr>#ff0066</rtclr>
447
+ </route>
448
+
449
+ <route>
450
+ <rt>82</rt>
451
+ <rtnm>Kimball-Homan</rtnm>
452
+ <rtclr>#666600</rtclr>
453
+ </route>
454
+
455
+ <route>
456
+ <rt>84</rt>
457
+ <rtnm>Peterson</rtnm>
458
+ <rtclr>#ff00ff</rtclr>
459
+ </route>
460
+
461
+ <route>
462
+ <rt>85</rt>
463
+ <rtnm>Central</rtnm>
464
+ <rtclr>#66cc66</rtclr>
465
+ </route>
466
+
467
+ <route>
468
+ <rt>85A</rt>
469
+ <rtnm>North Central</rtnm>
470
+ <rtclr>#cc3366</rtclr>
471
+ </route>
472
+
473
+ <route>
474
+ <rt>86</rt>
475
+ <rtnm>Narragansett/Ridgeland</rtnm>
476
+ <rtclr>#33ff00</rtclr>
477
+ </route>
478
+
479
+ <route>
480
+ <rt>87</rt>
481
+ <rtnm>87th</rtnm>
482
+ <rtclr>#cc66ff</rtclr>
483
+ </route>
484
+
485
+ <route>
486
+ <rt>88</rt>
487
+ <rtnm>Higgins</rtnm>
488
+ <rtclr>#ff6600</rtclr>
489
+ </route>
490
+
491
+ <route>
492
+ <rt>90</rt>
493
+ <rtnm>Harlem</rtnm>
494
+ <rtclr>#33ccff</rtclr>
495
+ </route>
496
+
497
+ <route>
498
+ <rt>91</rt>
499
+ <rtnm>Austin</rtnm>
500
+ <rtclr>#ff9999</rtclr>
501
+ </route>
502
+
503
+ <route>
504
+ <rt>92</rt>
505
+ <rtnm>Foster</rtnm>
506
+ <rtclr>#99cc33</rtclr>
507
+ </route>
508
+
509
+ <route>
510
+ <rt>93</rt>
511
+ <rtnm>California/Dodge</rtnm>
512
+ <rtclr>#6699ff</rtclr>
513
+ </route>
514
+
515
+ <route>
516
+ <rt>94</rt>
517
+ <rtnm>South California</rtnm>
518
+ <rtclr>#336633</rtclr>
519
+ </route>
520
+
521
+ <route>
522
+ <rt>95E</rt>
523
+ <rtnm>93rd-95th</rtnm>
524
+ <rtclr>#993366</rtclr>
525
+ </route>
526
+
527
+ <route>
528
+ <rt>95W</rt>
529
+ <rtnm>West 95th</rtnm>
530
+ <rtclr>#009900</rtclr>
531
+ </route>
532
+
533
+ <route>
534
+ <rt>96</rt>
535
+ <rtnm>Lunt</rtnm>
536
+ <rtclr>#9900cc</rtclr>
537
+ </route>
538
+
539
+ <route>
540
+ <rt>97</rt>
541
+ <rtnm>Skokie</rtnm>
542
+ <rtclr>#cc3300</rtclr>
543
+ </route>
544
+
545
+ <route>
546
+ <rt>X98</rt>
547
+ <rtnm>Avon Express</rtnm>
548
+ <rtclr>#006666</rtclr>
549
+ </route>
550
+
551
+ <route>
552
+ <rt>100</rt>
553
+ <rtnm>Jeffery Manor Express</rtnm>
554
+ <rtclr>#996633</rtclr>
555
+ </route>
556
+
557
+ <route>
558
+ <rt>103</rt>
559
+ <rtnm>West 103rd</rtnm>
560
+ <rtclr>#ff0066</rtclr>
561
+ </route>
562
+
563
+ <route>
564
+ <rt>106</rt>
565
+ <rtnm>East 103rd</rtnm>
566
+ <rtclr>#666600</rtclr>
567
+ </route>
568
+
569
+ <route>
570
+ <rt>108</rt>
571
+ <rtnm>Halsted/95th</rtnm>
572
+ <rtclr>#ff00ff</rtclr>
573
+ </route>
574
+
575
+ <route>
576
+ <rt>111</rt>
577
+ <rtnm>111th/King Drive</rtnm>
578
+ <rtclr>#66cc66</rtclr>
579
+ </route>
580
+
581
+ <route>
582
+ <rt>111A</rt>
583
+ <rtnm>Pullman Shuttle</rtnm>
584
+ <rtclr>#c8c8c8</rtclr>
585
+ </route>
586
+
587
+ <route>
588
+ <rt>112</rt>
589
+ <rtnm>Vincennes/111th</rtnm>
590
+ <rtclr>#cc3366</rtclr>
591
+ </route>
592
+
593
+ <route>
594
+ <rt>115</rt>
595
+ <rtnm>Pullman/115th</rtnm>
596
+ <rtclr>#c8c8c8</rtclr>
597
+ </route>
598
+
599
+ <route>
600
+ <rt>119</rt>
601
+ <rtnm>Michigan/119th</rtnm>
602
+ <rtclr>#33ff00</rtclr>
603
+ </route>
604
+
605
+ <route>
606
+ <rt>120</rt>
607
+ <rtnm>Ogilvie/Streeterville Express</rtnm>
608
+ <rtclr>#cc66ff</rtclr>
609
+ </route>
610
+
611
+ <route>
612
+ <rt>121</rt>
613
+ <rtnm>Union/Streeterville Express</rtnm>
614
+ <rtclr>#ff6600</rtclr>
615
+ </route>
616
+
617
+ <route>
618
+ <rt>124</rt>
619
+ <rtnm>Navy Pier</rtnm>
620
+ <rtclr>#ff9999</rtclr>
621
+ </route>
622
+
623
+ <route>
624
+ <rt>125</rt>
625
+ <rtnm>Water Tower Express</rtnm>
626
+ <rtclr>#99cc33</rtclr>
627
+ </route>
628
+
629
+ <route>
630
+ <rt>126</rt>
631
+ <rtnm>Jackson</rtnm>
632
+ <rtclr>#6699ff</rtclr>
633
+ </route>
634
+
635
+ <route>
636
+ <rt>130</rt>
637
+ <rtnm>Museum Campus</rtnm>
638
+ <rtclr>#c8c8c8</rtclr>
639
+ </route>
640
+
641
+ <route>
642
+ <rt>132</rt>
643
+ <rtnm>Goose Island Express</rtnm>
644
+ <rtclr>#993366</rtclr>
645
+ </route>
646
+
647
+ <route>
648
+ <rt>134</rt>
649
+ <rtnm>Stockton/LaSalle Express</rtnm>
650
+ <rtclr>#009900</rtclr>
651
+ </route>
652
+
653
+ <route>
654
+ <rt>135</rt>
655
+ <rtnm>Clarendon/LaSalle Express</rtnm>
656
+ <rtclr>#9900cc</rtclr>
657
+ </route>
658
+
659
+ <route>
660
+ <rt>136</rt>
661
+ <rtnm>Sheridan/LaSalle Express</rtnm>
662
+ <rtclr>#cc3300</rtclr>
663
+ </route>
664
+
665
+ <route>
666
+ <rt>143</rt>
667
+ <rtnm>Stockton/Michigan Express</rtnm>
668
+ <rtclr>#006666</rtclr>
669
+ </route>
670
+
671
+ <route>
672
+ <rt>146</rt>
673
+ <rtnm>Inner Drive/Michigan Express</rtnm>
674
+ <rtclr>#666600</rtclr>
675
+ </route>
676
+
677
+ <route>
678
+ <rt>147</rt>
679
+ <rtnm>Outer Drive Express</rtnm>
680
+ <rtclr>#ff00ff</rtclr>
681
+ </route>
682
+
683
+ <route>
684
+ <rt>148</rt>
685
+ <rtnm>Clarendon/Michigan Express</rtnm>
686
+ <rtclr>#66cc66</rtclr>
687
+ </route>
688
+
689
+ <route>
690
+ <rt>151</rt>
691
+ <rtnm>Sheridan</rtnm>
692
+ <rtclr>#cc3366</rtclr>
693
+ </route>
694
+
695
+ <route>
696
+ <rt>152</rt>
697
+ <rtnm>Addison</rtnm>
698
+ <rtclr>#33ff00</rtclr>
699
+ </route>
700
+
701
+ <route>
702
+ <rt>155</rt>
703
+ <rtnm>Devon</rtnm>
704
+ <rtclr>#cc66ff</rtclr>
705
+ </route>
706
+
707
+ <route>
708
+ <rt>156</rt>
709
+ <rtnm>LaSalle</rtnm>
710
+ <rtclr>#ff6600</rtclr>
711
+ </route>
712
+
713
+ <route>
714
+ <rt>157</rt>
715
+ <rtnm>Streeterville/Taylor</rtnm>
716
+ <rtclr>#33ccff</rtclr>
717
+ </route>
718
+
719
+ <route>
720
+ <rt>165</rt>
721
+ <rtnm>West 65th</rtnm>
722
+ <rtclr>#cc9966</rtclr>
723
+ </route>
724
+
725
+ <route>
726
+ <rt>169</rt>
727
+ <rtnm>69th-UPS Express</rtnm>
728
+ <rtclr>#99cc33</rtclr>
729
+ </route>
730
+
731
+ <route>
732
+ <rt>170</rt>
733
+ <rtnm>U. of Chicago/Midway</rtnm>
734
+ <rtclr>#6699ff</rtclr>
735
+ </route>
736
+
737
+ <route>
738
+ <rt>171</rt>
739
+ <rtnm>U. of Chicago/Hyde Park</rtnm>
740
+ <rtclr>#336633</rtclr>
741
+ </route>
742
+
743
+ <route>
744
+ <rt>172</rt>
745
+ <rtnm>U. of Chicago/Kenwood</rtnm>
746
+ <rtclr>#993366</rtclr>
747
+ </route>
748
+
749
+ <route>
750
+ <rt>192</rt>
751
+ <rtnm>U. of Chicago Hospitals Express</rtnm>
752
+ <rtclr>#cc3300</rtclr>
753
+ </route>
754
+
755
+ <route>
756
+ <rt>201</rt>
757
+ <rtnm>Central/Ridge</rtnm>
758
+ <rtclr>#996633</rtclr>
759
+ </route>
760
+
761
+ <route>
762
+ <rt>205</rt>
763
+ <rtnm>Chicago/Golf</rtnm>
764
+ <rtclr>#ff0066</rtclr>
765
+ </route>
766
+
767
+ <route>
768
+ <rt>206</rt>
769
+ <rtnm>Evanston Circulator</rtnm>
770
+ <rtclr>#666600</rtclr>
771
+ </route>
772
+
773
+
774
+ </bustime-response>