forked from ChelseaKR/gtfs-scorecard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlatest.json
More file actions
1172 lines (1172 loc) · 35.5 KB
/
Copy pathlatest.json
File metadata and controls
1172 lines (1172 loc) · 35.5 KB
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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"agency": {
"id": "amtrak",
"name": "Amtrak"
},
"categories": {
"completeness": {
"details": {
"accessibility": {
"measures": "presence_not_usability",
"score": 0.0,
"stops_marked_accessible_pct": 0.0,
"stops_marked_not_accessible_pct": 0.0,
"stops_stated_pct": 0.0,
"trips_stated_pct": 0.0
},
"accessibility_measures": "presence_not_usability",
"cemv": {
"declared": false,
"supported": false
},
"components": {
"contact": 15.0,
"fares": 0.0,
"headsigns": 15.0,
"stop_names": 15.0,
"wheelchair_stops": 0.0,
"wheelchair_trips": 0.0
},
"fare_free": false,
"fares": {
"applied": false,
"has_leg_rules": false,
"has_products": false,
"has_transfer_rules": false,
"model": "none",
"product_count": 0
},
"flex": {
"booking_reachable": false,
"booking_rule_count": 0,
"has_booking_rules": false,
"has_flex": false
},
"has_fares": false,
"headsign_applicable_trips": 2992,
"headsign_loop_exempt_trips": 0,
"headsign_pct": 100.0,
"headsign_scored_pct": 100.0,
"mixed_case_stop_name_pct": 100.0,
"pathways": {
"has_entrances": false,
"has_levels": false,
"has_pathways": false,
"has_stations": false,
"has_step_free": false,
"pathway_count": 0
},
"stops": 646,
"translations": {
"feed_lang": "en",
"has_translations": false,
"languages": [],
"translated_tables": [],
"translation_count": 0
},
"trips": 2992,
"wheelchair_accessible_pct": 0.0,
"wheelchair_boarding_pct": 0.0,
"wheelchair_marked_accessible_pct": 0.0,
"wheelchair_marked_not_accessible_pct": 0.0
},
"findings": [
{
"code": "scorecard_wheelchair_boarding_unknown",
"count": 646,
"effort": "A column in stops.txt; your scheduling software likely has it.",
"fix": "Set wheelchair_boarding to 1 (accessible) or 2 (not accessible) for every stop. A field survey can start with the busiest stops.",
"owner": "Likely your team",
"points": 25.0,
"severity": "WARNING",
"what": "646 of 646 stops don't say whether a wheelchair user can board there.",
"why": "Riders who use wheelchairs can't plan a trip when accessibility is marked 'unknown'; apps show no information at all."
},
{
"code": "scorecard_wheelchair_accessible_unknown",
"count": 2992,
"effort": "A default or per-trip field in your export.",
"fix": "Set wheelchair_accessible on every trip. If every vehicle is accessible, this may be one default; otherwise use the value for each trip.",
"owner": "Likely your export tool",
"points": 15.0,
"severity": "WARNING",
"what": "2992 of 2992 trips don't say whether the vehicle is wheelchair accessible.",
"why": "Even with accessible stops, riders need to know the transit vehicle itself can take them."
},
{
"code": "scorecard_no_fare_data",
"count": 1,
"effort": "A small file for most flat-fare systems.",
"fix": "Add fare_attributes.txt (or Fares v2 files) with your fare structure. If your service is fare-free, ask to have it marked fare-free instead.",
"owner": "",
"points": 15.0,
"severity": "WARNING",
"what": "The feed contains no fare information.",
"why": "Riders see 'fare unknown' in trip planners and can't budget their trip; visitors are most affected."
}
],
"name": "completeness",
"score": 45.0,
"status": "measured",
"summary": "0% of stops state wheelchair accessibility (0% marked accessible, 0% marked not accessible). This measures what the feed publishes, not whether a stop is physically usable. Fare data is not published.",
"weight": 0.25
},
"correctness": {
"details": {
"distinct_codes": 9,
"instances_by_severity": {
"ERROR": 0,
"INFO": 764,
"WARNING": 407
},
"validator_version": "8.0.1"
},
"findings": [
{
"code": "same_route_and_agency_url",
"count": 242,
"effort": "Varies.",
"fix": "Review the rule documentation for 'same_route_and_agency_url' at https://gtfs-validator.mobilitydata.org/rules.html and check the flagged rows in your feed.",
"owner": "",
"points": 8.0,
"severity": "WARNING",
"what": "Same route and agency url (flagged by the MobilityData validator).",
"why": "See the linked rule for what this affects."
},
{
"code": "stop_too_far_from_shape",
"count": 136,
"effort": "A few minutes per flagged stop.",
"fix": "Check the flagged stops' coordinates and the route shape in your scheduling software; re-snap whichever is misplaced.",
"owner": "Likely your export tool",
"points": 8.0,
"severity": "WARNING",
"what": "Some stops sit far from the route line they belong to.",
"why": "Trip planners may draw the transit vehicle route through the wrong path or point riders to the wrong boarding location."
},
{
"code": "stops_match_shape_out_of_order",
"count": 9,
"effort": "A few minutes per flagged trip.",
"fix": "Check the stop order and the shape direction in your scheduling software; the shape is often drawn backwards.",
"owner": "Likely your export tool",
"points": 6.0,
"severity": "WARNING",
"what": "On some trips the stops fall along the route line in a different order than the schedule lists.",
"why": "Trip planners can draw the transit vehicle doubling back or skipping ahead, which confuses riders reading the map."
},
{
"code": "fast_travel_between_consecutive_stops",
"count": 8,
"effort": "A few minutes per flagged trip.",
"fix": "Check the flagged stop times for transposed minutes.",
"owner": "",
"points": 6.0,
"severity": "WARNING",
"what": "Some scheduled trips move faster between stops than a transit vehicle can.",
"why": "Usually a typo'd stop time; riders get arrival times no transit vehicle can meet."
},
{
"code": "fast_travel_between_far_stops",
"count": 8,
"effort": "Varies.",
"fix": "Review the rule documentation for 'fast_travel_between_far_stops' at https://gtfs-validator.mobilitydata.org/rules.html and check the flagged rows in your feed.",
"owner": "",
"points": 6.0,
"severity": "WARNING",
"what": "Fast travel between far stops (flagged by the MobilityData validator).",
"why": "See the linked rule for what this affects."
},
{
"code": "expired_calendar",
"count": 3,
"effort": "One setting in most export tools.",
"fix": "Remove past service periods the next time you export the feed.",
"owner": "Likely your export tool",
"points": 4.0,
"severity": "WARNING",
"what": "Some service calendars in the feed have already ended.",
"why": "Expired calendars are dead weight and can hide real schedule problems from your staff and vendors."
},
{
"code": "feed_expiration_date7_days",
"count": 1,
"effort": "Usually a re-export from your scheduling software.",
"fix": "Export and publish an updated GTFS feed that covers at least the next 30 days of service.",
"owner": "Likely your export tool",
"points": 4.0,
"severity": "WARNING",
"what": "This feed's service calendar runs out within the next 7 days.",
"why": "When the calendar ends, Google Maps and other trip planners drop your agency entirely. Riders see no service at all."
},
{
"code": "service_window_outside_feed_period",
"count": 397,
"effort": "Two fields in feed_info.txt, or one export setting.",
"fix": "Widen feed_start_date and feed_end_date to cover all service dates, or fix the dates that fall outside.",
"owner": "Likely your export tool",
"points": 1.0,
"severity": "INFO",
"what": "Some service dates fall outside the date window set in feed_info.txt.",
"why": "feed_info.txt should span every day your service runs, so apps know when the data applies."
},
{
"code": "trip_headsign_matches_intermediate_stop",
"count": 367,
"effort": "Usually a bulk edit in your scheduling software.",
"fix": "Set trip_headsign to the trip's last stop or its overall destination.",
"owner": "Likely your export tool",
"points": 1.0,
"severity": "INFO",
"what": "Some trip headsigns name a stop along the way, not the final destination.",
"why": "The sign should tell riders where the transit vehicle ends up, so a midpoint name can send them the wrong way."
}
],
"name": "correctness",
"score": 56.0,
"status": "measured",
"summary": "The MobilityData validator flagged 9 kinds of issue across 1171 instances (0 error, 407 warning, 764 informational).",
"weight": 0.35
},
"freshness": {
"details": {
"days_until_expiry": 6,
"effective_expiry_date": "2026-08-13",
"feed_end_date": "2026-08-13",
"feed_start_date": "2026-08-07",
"feed_version": "20260806",
"has_feed_info": true,
"last_service_date": "2027-08-02",
"seasonal_boundary": false,
"service_horizon_review_years": 10,
"service_horizon_status": "within_review_threshold",
"service_type": "fixed"
},
"findings": [
{
"code": "scorecard_feed_expiring_soon",
"count": 1,
"effort": "One export setting.",
"fix": "Re-export with a validity window that reaches at least 60 days out.",
"owner": "Likely your export tool",
"points": 74.0,
"severity": "WARNING",
"what": "Service data runs out in 6 day(s).",
"why": "When the calendar runs out, trip planners stop showing this agency. Fixing it now is calmer than after riders notice."
}
],
"name": "freshness",
"score": 10.0,
"status": "measured",
"summary": "Service data runs out in 6 day(s). Publish an updated feed soon or riders will lose trip planning.",
"weight": 0.2
},
"realtime": {
"name": "realtime",
"status": "not_yet_measured",
"summary": "Not scored yet. Nothing here counts against the grade.",
"weight": 0.2
}
},
"confidence": {
"feed_age_days": 0,
"fetch_source": "origin",
"level": "medium",
"measured_categories": 3,
"notes": [
"Realtime quality was not measured this run. It does not count against the grade.",
"The feed was downloaded from the agency's own URL."
],
"rt_windows": 0,
"total_categories": 4
},
"conformance": {
"awarded": false,
"criteria": [
{
"detail": "Passes validation with no errors.",
"key": "valid",
"met": true
},
{
"detail": "Service data runs out in 6 days; renew to qualify.",
"key": "current",
"met": false
},
{
"detail": "States wheelchair access on 0% of stops and 0% of trips; the mark needs 90% of each.",
"key": "accessible",
"met": false
}
],
"status": "not_yet",
"summary": "This feed is close to the conformance mark. Service data runs out in 6 days; renew to qualify. States wheelchair access on 0% of stops and 0% of trips; the mark needs 90% of each."
},
"feed": {
"license_note": "No stated data license in the Mobility Database; verify before publishing.",
"reachable": true,
"sha256": "0967bcbf0fdf862548ccdfef136f5e38056491442b77dccc2041ef05e90d3da4",
"size_bytes": 18777573,
"static_url": "https://content.amtrak.com/content/gtfs/GTFS.zip"
},
"fetch": {
"final_url": "https://content.amtrak.com/content/gtfs/GTFS.zip",
"max_attempts": 4,
"reader_archive_profile": "raw-v1",
"source": "origin",
"user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36"
},
"generated_at": "2026-08-07T00:00:00+00:00",
"geo": {
"bbox": [
-124.16933,
25.84955,
-69.96554,
54.77396
],
"lat": 38.85175,
"lon": -89.34853,
"stop_count": 646
},
"mode_profile": {
"ferry_only": false,
"graded": false,
"has_ferry": false,
"is_multimodal": true,
"measured": true,
"modes": [
{
"key": "rail",
"label": "Rail",
"route_count": 49,
"trip_count": 2570,
"trip_share_pct": 85.9
},
{
"key": "bus",
"label": "Bus",
"route_count": 12,
"trip_count": 422,
"trip_share_pct": 14.1
}
],
"primary_mode": "rail",
"primary_mode_label": "Rail",
"route_count": 61,
"trip_count": 2992
},
"ntd_id_alignment": {
"detail": "This feed provides agency_id. For RY2026, keep one stable value for each NTD reporter represented in the feed and crosswalk it on the P-50 form. The value does not need to equal the five-digit NTD ID; we do not have that ID on file, so the optional equality comparison is not checked yet.",
"feed_agency_ids": [
"1228",
"147",
"157",
"1202",
"1207",
"28",
"43",
"1213",
"117",
"162",
"174",
"178",
"1220",
"1227",
"1230",
"51",
"1232",
"1233",
"1238",
"1239"
],
"status": "unknown"
},
"ntd_readiness": {
"pillars": [
{
"detail": "Published at a public URL.",
"key": "published",
"status": "ready"
},
{
"detail": "Passes validation with no errors.",
"key": "valid",
"status": "ready"
},
{
"detail": "Service data runs out in 6 days; renew before you certify.",
"key": "current",
"status": "at_risk"
},
{
"detail": "agency.txt provides agency_id. For RY2026, keep one stable value for each NTD reporter represented in the feed and crosswalk each value on the P-50 form.",
"key": "agency_id",
"status": "ready"
}
],
"status": "at_risk",
"summary": "This feed is close to NTD-ready. Service data runs out in 6 days; renew before you certify."
},
"overall": {
"grade": "F",
"margin_to_lower_band": 41.1,
"margin_to_next_band": 18.9,
"score": 41.1
},
"recommendations": [
{
"category": "accessibility",
"code": "scorecard_stop_name_needs_tts",
"count": 10,
"effort": "A short text field per affected stop; start with the busiest.",
"fix": "Add tts_stop_name with the spoken form, e.g. 'Main Street and Second Avenue', for the affected stops.",
"owner": "",
"points": 0.0,
"severity": "INFO",
"what": "10 stop name(s) use abbreviations or symbols a screen reader may mispronounce, with no spoken form set (\"St. Paul-Minneapolis\", \"Oakland Coliseum/Airport Amtrak\", \"St. Albans Amtrak Station\", and more).",
"why": "Riders who use a screen reader hear the raw name, so 'Main St & 2nd Ave' can come out as 'Main saint' or drop the ampersand."
}
],
"routability": {
"boardable_stops": 646,
"findings": [],
"orphan_stops": 0,
"single_stop_trips": 0,
"trips_total": 2992
},
"route_map": {
"drawn_route_count": 44,
"has_shapes": true,
"path": "data/artifacts/amtrak/geometry.geojson",
"route_count": 61,
"routes": [
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": false,
"id": "18650",
"label": "Amtrak Thruway Connecting Service",
"long": "Amtrak Thruway Connecting Service",
"short": "",
"text_color": "000000",
"type_label": "Bus"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": false,
"id": "23565",
"label": "Amtrak Thruway Connecting Service",
"long": "Amtrak Thruway Connecting Service",
"short": "",
"text_color": "000000",
"type_label": "Bus"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": false,
"id": "31849",
"label": "Maple Leaf",
"long": "Maple Leaf",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": false,
"id": "33820",
"label": "Amtrak Thruway Connecting Service",
"long": "Amtrak Thruway Connecting Service",
"short": "",
"text_color": "000000",
"type_label": "Bus"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "36921",
"label": "Empire Service",
"long": "Empire Service",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "36923",
"label": "Crescent",
"long": "Crescent",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "36924",
"label": "Coast Starlight",
"long": "Coast Starlight",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "36926",
"label": "Lincoln Service Missouri River Runner",
"long": "Lincoln Service Missouri River Runner",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "36930",
"label": "Sunset Limited",
"long": "Sunset Limited",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "36948",
"label": "Missouri River Runner",
"long": "Missouri River Runner",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "36949",
"label": "Ethan Allen Express",
"long": "Ethan Allen Express",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "40751",
"label": "Acela",
"long": "Acela",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "41042",
"label": "Amtrak Hartford Line",
"long": "Amtrak Hartford Line",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "41044",
"label": "Valley Flyer",
"long": "Valley Flyer",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": false,
"id": "41080",
"label": "Amtrak Thruway Connecting Service",
"long": "Amtrak Thruway Connecting Service",
"short": "",
"text_color": "000000",
"type_label": "Bus"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": false,
"id": "42891",
"label": "Amtrak Thruway Connecting Service",
"long": "Amtrak Thruway Connecting Service",
"short": "",
"text_color": "000000",
"type_label": "Bus"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": false,
"id": "42896",
"label": "Amtrak Thruway Connecting Service",
"long": "Amtrak Thruway Connecting Service",
"short": "",
"text_color": "000000",
"type_label": "Bus"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": false,
"id": "42912",
"label": "Amtrak Thruway Connecting Service",
"long": "Amtrak Thruway Connecting Service",
"short": "",
"text_color": "000000",
"type_label": "Bus"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": false,
"id": "42920",
"label": "Amtrak Thruway Connecting Service",
"long": "Amtrak Thruway Connecting Service",
"short": "",
"text_color": "000000",
"type_label": "Bus"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": false,
"id": "42933",
"label": "Amtrak Thruway Connecting Service",
"long": "Amtrak Thruway Connecting Service",
"short": "",
"text_color": "000000",
"type_label": "Bus"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "42946",
"label": "City of New Orleans",
"long": "City of New Orleans",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "42947",
"label": "Silver Meteor",
"long": "Silver Meteor",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": false,
"id": "42948",
"label": "Commuter Rail",
"long": "Commuter Rail",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "42951",
"label": "Lincoln Service",
"long": "Lincoln Service",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": false,
"id": "42954",
"label": "Amtrak Thruway Connecting Service",
"long": "Amtrak Thruway Connecting Service",
"short": "",
"text_color": "000000",
"type_label": "Bus"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "42956",
"label": "Blue Water",
"long": "Blue Water",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": false,
"id": "42957",
"label": "Illinois Zephyr",
"long": "Illinois Zephyr",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": false,
"id": "42958",
"label": "Amtrak Thruway Connecting Service",
"long": "Amtrak Thruway Connecting Service",
"short": "",
"text_color": "000000",
"type_label": "Bus"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": false,
"id": "42985",
"label": "Commuter Rail",
"long": "Commuter Rail",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "42991",
"label": "Borealis",
"long": "Borealis",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": false,
"id": "42992",
"label": "Berkshire Flyer",
"long": "Berkshire Flyer",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "42994",
"label": "Floridian",
"long": "Floridian",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "42996",
"label": "Amtrak Mardi Gras Service",
"long": "Amtrak Mardi Gras Service",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": false,
"id": "43",
"label": "Amtrak Thruway Connecting Service",
"long": "Amtrak Thruway Connecting Service",
"short": "",
"text_color": "000000",
"type_label": "Bus"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "51",
"label": "Southwest Chief",
"long": "Southwest Chief",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "54",
"label": "Hiawatha Service",
"long": "Hiawatha Service",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "55",
"label": "Pere Marquette",
"long": "Pere Marquette",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "56",
"label": "Illini",
"long": "Illini",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "58",
"label": "Cardinal",
"long": "Cardinal",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "60",
"label": "Amtrak Cascades",
"long": "Amtrak Cascades",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "61",
"label": "Downeaster",
"long": "Downeaster",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "63",
"label": "Saluki",
"long": "Saluki",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "64",
"label": "Pennsylvanian",
"long": "Pennsylvanian",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "68",
"label": "Maple Leaf",
"long": "Maple Leaf",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "69",
"label": "Palmetto",
"long": "Palmetto",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "72",
"label": "Carl Sandburg",
"long": "Carl Sandburg",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "75",
"label": "Empire Builder",
"long": "Empire Builder",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "77",
"label": "Auto Train",
"long": "Auto Train",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "78",
"label": "Pacific Surfliner",
"long": "Pacific Surfliner",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "79",
"label": "Piedmont",
"long": "Piedmont",
"short": "",
"text_color": "000000",
"type_label": "Rail"
},
{
"color": "CAE4F1",
"color_name": "white",
"has_shape": true,
"id": "80",
"label": "Wolverine",
"long": "Wolverine",
"short": "",