forked from ChelseaKR/gtfs-scorecard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathca.yaml
More file actions
2616 lines (2372 loc) · 118 KB
/
Copy pathca.yaml
File metadata and controls
2616 lines (2372 loc) · 118 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
# California (US) agencies — one manifest-listed shard of the GTFS Scorecard registry.
#
# The field reference and contribution workflow live in registry/README.md.
# Every id must be unique across every shard listed by registry/index.yaml.
agencies:
- id: airport-valet-express
name: Airport Valet Express
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/airportvaletexpress-ca-us/airportvaletexpress-ca-us.zip
mdb_id: 27
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: alameda-contra-costa-transit-district-ac-transit
ntd_id: "90014"
name: Alameda-Contra Costa Transit District (AC Transit)
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://transitfeeds.com/p/ac-transit/1269/latest/download
mdb_id: 1244
license_note: "License: https://www.actransit.org/data-terms-and-conditions/"
- id: alcatraz-cruises-hornblower-angel-island-tiburon-ferry-blue-gold-fleet
name: Alcatraz Cruises - Hornblower, Angel Island Tiburon Ferry, Blue & Gold Fleet
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/bayareaferries-ca-us/bayareaferries-ca-us.zip
mdb_id: 595
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: alhambra-community-transit
name: Alhambra Community Transit
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/alhambra-ca-us/alhambra-ca-us.zip
mdb_id: 211
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: altamont-corridor-express
ntd_id: "90182"
name: Altamont Corridor Express
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://transitfeeds.com/p/altamont-corridor-express/823/latest/download
mdb_id: 1133
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: amador-transit
name: Amador Transit
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/amador-ca-us/amador-ca-us.zip
mdb_id: 92
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: amtrak-san-joaquins
name: Amtrak San Joaquins
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/sanjoaquins-ca-us/sanjoaquins-ca-us.zip
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: anaheim-resort-transportation-art
name: Anaheim Resort Transportation (ART)
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://art.tripshot.com/v1/gtfs.zip?regionId=CA558DDC-D7F2-4B48-9CAC-DEEA1134F820
mdb_id: 100
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: antelope-valley-transit-authority-avta
name: Antelope Valley Transit Authority (AVTA)
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://www.avta.com/userfiles/files/google_transit.zip
mdb_id: 214
license_note: No stated data license in the Mobility Database; verify before publishing.
rt_urls:
trip_updates: https://track-it.avta.com/InfoPoint/GTFS-Realtime.ashx?Type=TripUpdate
vehicle_positions: https://track-it.avta.com/InfoPoint/GTFS-Realtime.ashx?Type=VehiclePosition
service_alerts: https://track-it.avta.com/InfoPoint/GTFS-Realtime.ashx?Type=Alert
# Mobility Database mdb-215 is deprecated and redirects to mdb-2243.
- id: arcadia-transit
name: Arcadia Transit
alias_of: arcadia-transit-2243
feed_status: deprecated
organization_id: city-of-arcadia
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/arcadia-ca-us/arcadia-ca-us.zip
mdb_id: 215
license_note: No stated data license in the Mobility Database; verify before publishing.
rt_urls:
trip_updates: https://passio3.com/ArcadiaCity/passioTransit/gtfs/realtime/tripUpdates
vehicle_positions: https://passio3.com/ArcadiaCity/passioTransit/gtfs/realtime/vehiclePositions
service_alerts: https://passio3.com/ArcadiaCity/passioTransit/gtfs/realtime/serviceAlerts
- id: arcadia-transit-2243
name: Arcadia Transit
organization_id: city-of-arcadia
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://passio3.com/ArcadiaCity/passioTransit/gtfs/google_transit.zip
mdb_id: 2243
license_note: No stated data license in the Mobility Database; verify before publishing.
rt_urls:
trip_updates: https://passio3.com/ArcadiaCity/passioTransit/gtfs/realtime/tripUpdates
vehicle_positions: https://passio3.com/ArcadiaCity/passioTransit/gtfs/realtime/vehiclePositions
service_alerts: https://passio3.com/ArcadiaCity/passioTransit/gtfs/realtime/serviceAlerts
- id: artesia-transit
name: Artesia Transit
subdivision_code: US-CA
subdivision_name: California
is_official: true
static_gtfs_url: https://gtfs.dds.dot.ca.gov/gtfs_files/ArtesiaGTFS.zip
license_note: CC BY 4.0 through the Caltrans DDS GTFS index (gtfs.dds.dot.ca.gov).
reuse_evidence:
decision: approved
source_kind: official_portal
provider_source_url: https://gtfs.dds.dot.ca.gov/
terms_url: https://gtfs.dds.dot.ca.gov/
scope: [gtfs_schedule]
attribution: Artesia Transit, via the Caltrans California GTFS (DDS) index.
reviewed_by: ChelseaKR
reviewed_on: "2026-07-18"
identity_reviewed: true
- id: arvin-transit
name: Arvin Transit
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/arvin-ca-us/arvin-ca-us.zip
mdb_id: 216
license_note: No stated data license in the Mobility Database; verify before publishing.
# Mobility Database mdb-217 is deprecated and redirects to mdb-2275.
- id: auburn-transit
name: Auburn Transit
alias_of: auburn-transit-2275
feed_status: deprecated
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/auburntransit-ca-us/auburntransit-ca-us.zip
mdb_id: 217
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: auburn-transit-2275
name: Auburn Transit
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://www.auburn.ca.gov/DocumentCenter/View/3431
mdb_id: 2275
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: avalon-transit
name: Avalon Transit
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/avalon-ca-us/avalon-ca-us.zip
mdb_id: 12
rt_note: This agency publishes realtime, but the feed needs an access key we don't have yet. Nothing here counts against the grade.
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: baldwin-park-transit
name: Baldwin Park Transit
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/baldwinpark-ca-us/baldwinpark-ca-us.zip
mdb_id: 219
license_note: No stated data license in the Mobility Database; verify before publishing.
rt_urls:
trip_updates: https://passio3.com/baldwinpark/passioTransit/gtfs/realtime/tripUpdates
vehicle_positions: https://passio3.com/baldwinpark/passioTransit/gtfs/realtime/vehiclePositions
service_alerts: https://passio3.com/baldwinpark/passioTransit/gtfs/realtime/serviceAlerts
- id: bay-area-rapid-transit-bart
ntd_id: "90003"
name: Bay Area Rapid Transit (BART)
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: http://www.bart.gov/dev/schedules/google_transit.zip
mdb_id: 53
rt_urls:
trip_updates: http://api.bart.gov/gtfsrt/tripupdate.aspx
service_alerts: http://api.bart.gov/gtfsrt/alerts.aspx
license_note: "License: http://www.bart.gov/schedules/developers/developer-license-agreement"
- id: beach-cities-transit
name: Beach Cities Transit
organization_id: city-of-redondo-beach
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://www.redondo.org/civicax/filebank/blobdload.aspx?BlobID=33555
mdb_id: 803
rt_urls:
trip_updates: https://redondobeachbct.com/gtfs-rt/tripupdates
vehicle_positions: https://redondobeachbct.com/gtfs-rt/vehiclepositions
service_alerts: https://redondobeachbct.com/gtfs-rt/alerts
license_note: "License: https://www.redondo.org/depts/recreation/transit/trip_planner/gtfs_data.asp"
- id: beach-cities-transit-1999
name: Beach Cities Transit
organization_id: city-of-redondo-beach
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://redondobeachbct.com/gtfs
license_note: No stated data license in the Mobility Database; verify before publishing.
rt_urls:
trip_updates: https://redondobeachbct.com/gtfs-rt/tripupdates
vehicle_positions: https://redondobeachbct.com/gtfs-rt/vehiclepositions
service_alerts: https://redondobeachbct.com/gtfs-rt/alerts
- id: beaumont-transit
name: Beaumont Transit
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/beaumont-ca-us/beaumont-ca-us.zip
mdb_id: 106
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: bell-gardens-trolley
name: Bell Gardens Trolley
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://raw.githubusercontent.com/LACMTA/los-angeles-regional-gtfs/main/bellgardens-ca-us/bellgardens-ca-us.zip
mdb_id: 228
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: bellflower-bus
name: Bellflower Bus
organization_id: city-of-bellflower
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://raw.githubusercontent.com/LACMTA/los-angeles-regional-gtfs/main/bellflower-ca-us/bellflower-ca-us.zip
mdb_id: 227
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: bellflower-bus-3095
name: Bellflower Bus
organization_id: city-of-bellflower
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://gtfs.remix.com/CalITP.zip
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: big-blue-bus
ntd_id: "90008"
name: Big Blue Bus
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: http://gtfs.bigbluebus.com/current.zip
mdb_id: 37
rt_urls:
trip_updates: http://gtfs.bigbluebus.com/tripupdates.bin
vehicle_positions: http://gtfs.bigbluebus.com/vehiclepositions.bin
service_alerts: http://gtfs.bigbluebus.com/alerts.bin
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: blossom-express
name: Blossom Express
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/blossomexpress-ca-us/blossomexpress-ca-us.zip
mdb_id: 236
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: blue-gold-fleet
name: Blue & Gold Fleet
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://transitfeeds.com/p/blue-gold-fleet/824/latest/download
mdb_id: 1178
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: burbankbus
name: BurbankBus
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://rideburbankbus.com/gtfs
license_note: No stated data license in the Mobility Database; verify before publishing.
rt_urls:
trip_updates: https://rideburbankbus.com/gtfs-rt/tripupdates
vehicle_positions: https://rideburbankbus.com/gtfs-rt/vehiclepositions
service_alerts: https://rideburbankbus.com/gtfs-rt/alerts
- id: calabasas-transit-system
name: Calabasas Transit System
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/calabasas-ca-us/calabasas-ca-us.zip
mdb_id: 296
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: calaveras-transit
name: Calaveras Transit
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/calaveras-ca-us/calaveras-ca-us.zip
mdb_id: 93
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: caltrain
name: Caltrain
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/caltrain-ca-us/caltrain-ca-us.zip
mdb_id: 54
rt_note: This agency publishes realtime, but the feed needs an access key we don't have yet. Nothing here counts against the grade.
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: camarillo-area-transit
ntd_id: "90163"
name: Camarillo Area Transit
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/camarillo-ca-us/camarillo-ca-us.zip
mdb_id: 297
license_note: No stated data license in the Mobility Database; verify before publishing.
rt_urls:
trip_updates: https://govcbus.com/gtfs-rt/tripupdates
vehicle_positions: https://govcbus.com/gtfs-rt/vehiclepositions
service_alerts: https://govcbus.com/gtfs-rt/alerts
- id: capitol-corridor-joint-powers-authority-capitol-corridor
name: Capitol Corridor Joint Powers Authority (Capitol Corridor)
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://www.capitolcorridor.org/googletransit/GTFS.zip
license_note: "License: https://www.capitolcorridor.org/developer_resources/#terms"
- id: carson-circuit
name: Carson Circuit
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/carson-ca-us/carson-ca-us.zip
mdb_id: 298
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: catalina-express
name: Catalina Express
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://gitlab.com/LACMTA/gtfs_lax/-/archive/master/gtfs_lax-master.zip?path=catalina_express
mdb_id: 299
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: catalina-flyer
name: Catalina Flyer
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/catalinaflyer-ca-us/catalinaflyer-ca-us.zip
mdb_id: 300
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: city-coach
name: City Coach
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/vacavillecitycoach-ca-us/vacavillecitycoach-ca-us.zip
mdb_id: 599
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: city-of-banning-transit
name: City of Banning Transit
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/banning-ca-us/banning-ca-us.zip
mdb_id: 220
rt_note: This agency publishes realtime, but the feed needs an access key we don't have yet. Nothing here counts against the grade.
license_note: No stated data license in the Mobility Database; verify before publishing.
# Mobility Database mdb-562 is deprecated and redirects to mdb-2249.
- id: city-of-bell-la-campana
name: City of Bell (La Campana)
alias_of: city-of-bell-la-campana-2249
feed_status: deprecated
organization_id: city-of-bell
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/lacampana-ca-us/lacampana-ca-us.zip
mdb_id: 562
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: city-of-bell-la-campana-2249
name: City of Bell (La Campana)
organization_id: city-of-bell
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://raw.githubusercontent.com/LACMTA/los-angeles-regional-gtfs/main/lacampana-ca-us/lacampana-ca-us.zip
mdb_id: 2249
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: city-of-glendale
name: City of Glendale
organization_id: city-of-glendale
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://transitfeeds.com/p/city-of-glendale/628/latest/download
mdb_id: 1245
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: city-of-lompoc-transit-colt
name: City of Lompoc Transit (COLT)
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://www.cityoflompoc.com/home/showdocument?id=29896
mdb_id: 919
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: city-of-madera
name: City of Madera
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/cityofmadera-ca-us/cityofmadera-ca-us.zip
mdb_id: 91
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: city-of-san-luis-obispo-transit
name: City of San Luis Obispo Transit
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://app.mecatran.com/urb/ws/feed/c2l0ZT1zbG90cmFuc2l0O2NsaWVudD1zZWxmO2V4cGlyZT07dHlwZT1ndGZzO2tleT0zZTMwMzM1OTRiMTE2NzA0N2IxNjQwNjA0ZjQwMGMzMzdiM2E1MTQ0
license_note: No stated data license in the Mobility Database; verify before publishing.
rt_urls:
trip_updates: https://slocity.connexionz.net/rtt/public/utility/gtfsrealtime.aspx/tripupdate
vehicle_positions: https://slocity.connexionz.net/rtt/public/utility/gtfsrealtime.aspx/vehicleposition
service_alerts: https://slocity.connexionz.net/rtt/public/utility/gtfsrealtime.aspx/alert
- id: city-of-tracy
name: City of Tracy
organization_id: city-of-tracy
subdivision_code: US-CA
subdivision_name: California
feed_variant: GTFS-Flex
static_gtfs_url: https://data.trilliumtransit.com/gtfs/tracy-ca-us/tracy-ca-us--flex-v2.zip
license_note: No stated data license in the Mobility Database; verify before publishing.
rt_urls:
trip_updates: https://s3.amazonaws.com/etatransit.gtfs/tracer.etaspot.net/trip_updates.pb
vehicle_positions: https://s3.amazonaws.com/etatransit.gtfs/tracer.etaspot.net/position_updates.pb
service_alerts: https://s3.amazonaws.com/etatransit.gtfs/tracer.etaspot.net/alerts.pb
- id: city-of-tracy-tracer
name: City of Tracy (TRACER)
organization_id: city-of-tracy
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/tracy-ca-us/tracy-ca-us.zip
mdb_id: 877
license_note: No stated data license in the Mobility Database; verify before publishing.
rt_urls:
trip_updates: https://s3.amazonaws.com/etatransit.gtfs/tracer.etaspot.net/trip_updates.pb
vehicle_positions: https://s3.amazonaws.com/etatransit.gtfs/tracer.etaspot.net/position_updates.pb
service_alerts: https://s3.amazonaws.com/etatransit.gtfs/tracer.etaspot.net/alerts.pb
- id: city-of-tracy-tracer-3099
name: City of Tracy (TRACER)
organization_id: city-of-tracy
alias_of: city-of-tracy-tracer
feed_status: deprecated
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://s3.amazonaws.com/etatransit.gtfs/tracer.etaspot.net/gtfs.zip
mdb_id: 3099
license_note: No stated data license in the Mobility Database; verify before publishing.
rt_urls:
trip_updates: https://s3.amazonaws.com/etatransit.gtfs/tracer.etaspot.net/trip_updates.pb
vehicle_positions: https://s3.amazonaws.com/etatransit.gtfs/tracer.etaspot.net/position_updates.pb
service_alerts: https://s3.amazonaws.com/etatransit.gtfs/tracer.etaspot.net/alerts.pb
- id: city-of-wasco
name: City of Wasco
service_type: demand_response
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://gtfs.dds.dot.ca.gov/gtfs_files/WascoDialaRideFlex.zip
mdb_id: 1788
license_note: >-
CC BY 4.0 through the Caltrans DDS GTFS index:
https://gtfs.dds.dot.ca.gov/
operating_note: >-
The official DDS ZIP is stale and noncanonical as packaged. The validator
sees the raw subfolder and filename findings; Scorecard's reader view adds
context for the remaining tables and does not repair the producer feed.
- id: clean-air-express
name: Clean Air Express
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://cleanairexpress.com/wp-content/uploads/GTFS.zip
mdb_id: 1872
license_note: No stated data license in the Mobility Database; verify before publishing.
# Mobility Database mdb-89 is deprecated and redirects to mdb-2894.
- id: clovis-transit
name: Clovis Transit
alias_of: clovis-transit-2894
feed_status: deprecated
organization_id: city-of-clovis
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/clovistransit-ca-us/clovistransit-ca-us.zip
mdb_id: 89
license_note: No stated data license in the Mobility Database; verify before publishing.
rt_urls:
trip_updates: https://passio3.com/clovis/passioTransit/gtfs/realtime/tripUpdates
vehicle_positions: https://passio3.com/clovis/passioTransit/gtfs/realtime/vehiclePositions
service_alerts: https://passio3.com/clovis/passioTransit/gtfs/realtime/serviceAlerts
- id: clovis-transit-2894
name: Clovis Transit
organization_id: city-of-clovis
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://passio3.com/clovis/passioTransit/gtfs/google_transit.zip
mdb_id: 2894
rt_urls:
trip_updates: https://passio3.com/clovis/passioTransit/gtfs/realtime/tripUpdates
vehicle_positions: https://passio3.com/clovis/passioTransit/gtfs/realtime/vehiclePositions
service_alerts: https://passio3.com/clovis/passioTransit/gtfs/realtime/serviceAlerts
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: commerce-municipal-bus-lines
name: Commerce Municipal Bus Lines
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://citycommbus.com/gtfs
rt_urls:
trip_updates: https://citycommbus.com/gtfs-rt/tripupdates
vehicle_positions: https://citycommbus.com/gtfs-rt/vehiclepositions
service_alerts: https://citycommbus.com/gtfs-rt/alerts
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: commute-org-san-mateo-county-shuttles
name: Commute.org San Mateo County Shuttles
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/commute-ca-us/commute-ca-us.zip
mdb_id: 61
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: compton-renaissance
name: Compton Renaissance
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://raw.githubusercontent.com/LACMTA/los-angeles-regional-gtfs/main/compton-ca-us/compton-ca-us.zip
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: corona-cruiser
name: Corona Cruiser
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/corona-ca-us/corona-ca-us.zip
mdb_id: 104
license_note: No stated data license in the Mobility Database; verify before publishing.
# Mobility Database mdb-1243 is deprecated and redirects to mdb-2421.
- id: county-connection-cccta
ntd_id: "90078"
name: County Connection (CCCTA)
alias_of: county-connection-cccta-2421
feed_status: deprecated
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://transitfeeds.com/p/county-connection/222/latest/download
mdb_id: 1243
license_note: No stated data license in the Mobility Database; verify before publishing.
# Filed under Tennessee in the catalog and in registry/us/tn.yaml until now,
# but the feed is Contra Costa County's: its stops span 37.66-38.02N,
# 122.19-121.78W and its routes run to Concord, Walnut Creek and Pleasant Hill
# BART. Recorded as California, the state mdb-1243 retires out of.
- id: county-connection-cccta-2421
ntd_id: "90078"
name: County Connection (CCCTA)
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://countyconnection.com/GTFS/google_transit.zip
mdb_id: 2421
license_note: No stated data license in the Mobility Database; verify before publishing.
# Mobility Database mdb-318 is deprecated and redirects to mdb-2248.
- id: cudahy-area-rapid-transit
name: Cudahy Area Rapid Transit
alias_of: cudahy-area-rapid-transit-2248
feed_status: deprecated
organization_id: city-of-cudahy
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/cudahy-ca-us/cudahy-ca-us.zip
mdb_id: 318
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: cudahy-area-rapid-transit-2248
name: Cudahy Area Rapid Transit
organization_id: city-of-cudahy
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://www.cityofcudahy.com/DocumentCenter/View/2041
mdb_id: 2248
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: culver-city-bus
name: Culver City Bus
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://www.culvercity.org/files/assets/public/documents/information-technology/maps/gtfsexport.zip
license_note: No stated data license in the Mobility Database; verify before publishing.
rt_urls:
trip_updates: https://nextccbus.org/gtfsrt/trips
vehicle_positions: https://nextccbus.org/gtfsrt/vehicles
service_alerts: https://nextccbus.org/gtfsrt/alerts
- id: dana-point-trolley
name: Dana Point Trolley
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://dptrolley.com/Secure/Admin/Reports/GTFSDownload.aspx
mdb_id: 2361
license_note: No stated data license in the Mobility Database; verify before publishing.
rt_urls:
trip_updates: https://passio3.com/dptrolley/passioTransit/gtfs/realtime/tripUpdates
vehicle_positions: https://passio3.com/dptrolley/passioTransit/gtfs/realtime/vehiclePositions
service_alerts: https://passio3.com/dptrolley/passioTransit/gtfs/realtime/serviceAlerts
- id: delano-area-rapid-transit
name: Delano Area Rapid Transit
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/delano-ca-us/delano-ca-us.zip
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: devils-postpile-national-monument
name: Reds Meadow Shuttle
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://www.nps.gov/external-resources/gtfs/depo/reds-meadow-shuttle.zip
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: downeylink
name: DowneyLINK
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://raw.githubusercontent.com/LACMTA/los-angeles-regional-gtfs/main/downey-ca-us/downey-ca-us.zip
mdb_id: 383
license_note: No stated data license in the Mobility Database; verify before publishing.
rt_urls:
trip_updates: https://downey.rideralerts.com/InfoPoint/GTFS-Realtime.ashx?Type=TripUpdate
vehicle_positions: https://downey.rideralerts.com/InfoPoint/GTFS-Realtime.ashx?Type=VehiclePosition
service_alerts: https://downey.rideralerts.com/InfoPoint/GTFS-Realtime.ashx?Type=Alert
# Mobility Database mdb-105 is deprecated and redirects to mdb-101.
- id: duarte-transit
name: Duarte Transit
alias_of: foothill-transit
feed_status: deprecated
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/duartetransit-ca-us/duartetransit-ca-us.zip
mdb_id: 105
license_note: No stated data license in the Mobility Database; verify before publishing.
rt_urls:
trip_updates: https://gtfs-rt.myavail.cloud/GtfsProtoBuf?FeedLabel=Foothill&FeedType=TripUpdates
vehicle_positions: https://gtfs-rt.myavail.cloud/GtfsProtoBuf?FeedLabel=Foothill&FeedType=VehiclePositions
service_alerts: https://gtfs-rt.myavail.cloud/GtfsProtoBuf?FeedLabel=Foothill&FeedType=Alerts
- id: eastern-sierra-transit
name: Eastern Sierra Transit
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/easternsierra-ca-us/easternsierra-ca-us.zip
mdb_id: 25
rt_note: This agency publishes realtime, but the feed needs an access key we don't have yet. Nothing here counts against the grade.
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: el-dorado-transit-agency
name: El Dorado County Transit Authority
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/eldoradotransit-ca-us/eldoradotransit-ca-us.zip
mdb_id: 75
license_note: "License: https://eldoradotransit.com/trip-planner-information/gtfs-data/"
- id: el-monte-transit
name: El Monte Transit
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/elmonte-ca-us/elmonte-ca-us.zip
mdb_id: 103
license_note: No stated data license in the Mobility Database; verify before publishing.
# Mobility Database mdb-458 is deprecated and redirects to mdb-2210.
- id: el-segundo-transportation
name: El Segundo Transportation
alias_of: el-segundo-transportation-2210
feed_status: deprecated
organization_id: city-of-el-segundo
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/elsegundo-ca-us/elsegundo-ca-us.zip
mdb_id: 458
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: el-segundo-transportation-2210
name: El Segundo Transportation
organization_id: city-of-el-segundo
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://github.com/LACMTA/los-angeles-regional-gtfs/raw/main/elsegundo-ca-us/elsegundo-ca-us.zip
mdb_id: 2210
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: elk-grove-transit
name: Elk Grove Transit
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://elkgrovetransit.com/gtfs
mdb_id: 2136
license_note: "License: https://www.sacrt.com/gtfs/"
rt_urls:
trip_updates: https://bustime.sacrt.com/EG_gtfsrt/trips
vehicle_positions: https://bustime.sacrt.com/EG_gtfsrt/vehicles
service_alerts: https://bustime.sacrt.com/EG_gtfsrt/alerts
# Mobility Database mdb-63 is deprecated and redirects to mdb-2224.
- id: emery-go-round
name: Emery Go-Round
alias_of: emery-go-round-2224
feed_status: deprecated
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/emerygoround-ca-us/emerygoround-ca-us.zip
mdb_id: 63
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: emery-go-round-2224
name: Emery Go-Round
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://emerygoround.com/data/emerygoround-ca-us.zip
mdb_id: 2224
rt_urls:
trip_updates: https://emerygoround.tripshot.com/v1/gtfs/realtime/feed/egr?types=TripUpdate
vehicle_positions: https://emerygoround.tripshot.com/v1/gtfs/realtime/feed/egr?types=VehiclePosition
service_alerts: https://emerygoround.tripshot.com/v1/gtfs/realtime/feed/egr?types=Alert
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: etrans
name: eTrans
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/escalon-ca-us/escalon-ca-us.zip
mdb_id: 65
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: fast-transit
ntd_id: "90092"
name: Fairfield and Suisun Transit (FAST)
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/fairfield-ca-us/fairfield-ca-us.zip
mdb_id: 76
license_note: No stated data license in the Mobility Database; verify before relying on.
- id: fcrta
name: Fresno County Rural Transit Agency (FCRTA)
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://rapid.nationalrtap.org/GTFSFileManagement/UserUploadFiles/7869/google_transit.zip
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: foothill-transit
name: Foothill Transit
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://foothilltransit.rideralerts.com/myStop/GTFS-Zip.ashx
mdb_id: 101
rt_urls:
trip_updates: https://foothill_3rdparty.rideralerts.com/myStop/GTFS-Realtime.ashx?&Type=TripUpdate
vehicle_positions: https://foothill_3rdparty.rideralerts.com/myStop/GTFS-Realtime.ashx?&Type=VehiclePosition&serverid=0
service_alerts: https://foothill_3rdparty.rideralerts.com/myStop/GTFS-Realtime.ashx?&Type=Alert
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: fresno-area-express-fax
name: Fresno Area Express (FAX)
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: http://gis4u.fresno.gov/downloads/fax_gtfs.zip
mdb_id: 90
license_note: No stated data license in the Mobility Database; verify before publishing.
rt_urls:
trip_updates: https://gis4u.fresno.gov/TMGTFSRealTimeWebService/TripUpdate/TripUpdates.pb
vehicle_positions: https://gis4u.fresno.gov/TMGTFSRealTimeWebService/Vehicle/VehiclePositions.pb
- id: get-around-town-express
name: Get Around Town Express
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://raw.githubusercontent.com/LACMTA/los-angeles-regional-gtfs/main/getaroundtownexpress-ca-us/getaroundtownexpress-ca-us.zip
mdb_id: 606
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: giant-forest-shuttle
name: Giant Forest Shuttle (Sequoia National Park)
subdivision_code: US-CA
subdivision_name: California
is_official: true
service_type: seasonal
static_gtfs_url: https://www.nps.gov/external-resources/gtfs/seki/giant-forest-shuttle.zip
license_note: Public domain as a United States Government work; published by the National Park Service GTFS program.
reuse_evidence:
decision: approved
source_kind: official_portal
provider_source_url: https://www.nps.gov/subjects/developer/gtfs.htm
terms_url: https://www.nps.gov/aboutus/disclaimer.htm
scope: [gtfs_schedule]
attribution: National Park Service.
reviewed_by: ChelseaKR
reviewed_on: "2026-07-18"
identity_reviewed: true
- id: glendale-beeline
name: Glendale Beeline
organization_id: city-of-glendale
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://transitfeeds.com/p/glendale-beeline/917/latest/download
mdb_id: 1280
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: glendora-transportation-division
name: Glendora Transportation Division
organization_id: city-of-glendora
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://raw.githubusercontent.com/LACMTA/los-angeles-regional-gtfs/main/glendora-ca-us/glendora-ca-us.zip
mdb_id: 609
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: glendora-transportation-division-3097
name: Glendora Transportation Division
organization_id: city-of-glendora
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://www.cityofglendora.gov/files/assets/city/v/3/recreation-amp-human-services/transportation/documents/gtfs-6-2025.zip
license_note: No stated data license in the Mobility Database; verify before publishing.
# Mobility Database mdb-835 is deprecated and redirects to mdb-3094.
- id: glenn-transit-service
name: Glenn Transit Service
alias_of: glenn-transit-service-3094
feed_status: deprecated
organization_id: glenn-county
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/glenn-ca-us/glenn-ca-us.zip
mdb_id: 835
license_note: No stated data license in the Mobility Database; verify before publishing.
# Mobility Database mdb-2207 is deprecated and redirects to mdb-3094.
- id: glenn-transit-service-2207
name: Glenn Transit Service
alias_of: glenn-transit-service-3094
feed_status: deprecated
organization_id: glenn-county
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://cdn.hibuwebsites.com/af26dd3d53e046cf8ce6ac6dc92e7b14/files/uploaded/glenn-transit-service-google-transit-2024-01-19.zip
mdb_id: 2207
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: glenn-transit-service-3094
name: Glenn Transit Service
organization_id: glenn-county
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://cdn.hibuwebsites.com/af26dd3d53e046cf8ce6ac6dc92e7b14/files/uploaded/glenn-county-transit-service-google-transit-2026-01.zip
mdb_id: 3094
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: go-west-shuttle
name: Go West Shuttle
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/westcovina-ca-us/westcovina-ca-us.zip
mdb_id: 623
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: gold-coast-transit-south-coast-area-transit
ntd_id: "90035"
name: Gold Coast Transit, South Coast Area Transit
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: http://www.goldcoasttransit.org/images/GTFS/GTFS.zip
mdb_id: 32
license_note: "License: http://www.goldcoasttransit.org/2-uncategorised/250-gtfs-data-download"
rt_urls:
trip_updates: https://govcbus.com/gtfs-rt/tripupdates
vehicle_positions: https://govcbus.com/gtfs-rt/vehiclepositions
service_alerts: https://govcbus.com/gtfs-rt/alerts
- id: golden-empire-transit-district-get
name: Golden Empire Transit District (GET)
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: http://eta.getbus.org/rtt/public/utility/gtfs.aspx
license_note: No stated data license in the Mobility Database; verify before publishing.
rt_urls:
trip_updates: https://get.connexionz.net/rtt/public/utility/gtfsrealtime.aspx/tripupdate
vehicle_positions: https://get.connexionz.net/rtt/public/utility/gtfsrealtime.aspx/vehicleposition
service_alerts: https://cdn.simplifytransit.com/goldenempiretransit/alerts/service-alerts.pb
- id: golden-gate-national-recreation-area-alcatraz-island
name: Alcatraz Cruises Ferry
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://www.nps.gov/external-resources/gtfs/alca/alcatraz-cruises-ferry.zip
mdb_id: 3208
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: golden-gate-transit
ntd_id: "90016"
name: Golden Gate Transit
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://realtime.goldengate.org/gtfsstatic/GTFSTransitData.zip
mdb_id: 67
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: grapeline
name: GrapeLine
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://www.lodi.gov/DocumentCenter/View/2453/lodi_gtfs-ZIP
license_note: No stated data license in the Mobility Database; verify before publishing.
# Mobility Database mdb-616 is deprecated and redirects to mdb-2270.
- id: gtrans
name: GTrans
alias_of: gtrans-2270
feed_status: deprecated
organization_id: city-of-gardena
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/gtrans-ca-us/gtrans-ca-us.zip
mdb_id: 616
license_note: No stated data license in the Mobility Database; verify before publishing.
rt_urls:
trip_updates: https://mygtbus.ridegtrans.com/gtfsrt/trips
vehicle_positions: https://mygtbus.ridegtrans.com/gtfsrt/vehicles
service_alerts: https://mygtbus.ridegtrans.com/gtfsrt/alerts
- id: gtrans-2270
name: GTrans
organization_id: city-of-gardena
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://ridegtrans.com/gtfs.zip
mdb_id: 2270
license_note: No stated data license in the Mobility Database; verify before publishing.
rt_urls:
trip_updates: https://mygtbus.ridegtrans.com/gtfsrt/trips
vehicle_positions: https://mygtbus.ridegtrans.com/gtfsrt/vehicles
service_alerts: https://mygtbus.ridegtrans.com/gtfsrt/alerts
- id: guadalupe-flyer
name: Guadalupe Flyer
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/guadalupeflyer-ca-us/guadalupeflyer-ca-us.zip
mdb_id: 617
license_note: No stated data license in the Mobility Database; verify before publishing.
# Mobility Database mdb-19 is deprecated and redirects to mdb-3032.
- id: humboldt-transit-authority
name: Humboldt Transit Authority
alias_of: humboldt-transit-authority-3032
feed_status: deprecated
organization_id: humboldt-transit-authority
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://data.trilliumtransit.com/gtfs/humboldtcounty-ca-us/humboldtcounty-ca-us.zip
mdb_id: 19
rt_urls:
service_alerts: http://gtfs-realtime.trilliumtransit.com/gtfs-realtime/feed/humboldtcounty-ca-us/service_alerts.proto
license_note: No stated data license in the Mobility Database; verify before publishing.
- id: humboldt-transit-authority-3032
name: Humboldt Transit Authority
organization_id: humboldt-transit-authority
subdivision_code: US-CA
subdivision_name: California
static_gtfs_url: https://hta.optibus.co/public_api/v1/feeds/gtfs
mdb_id: 3032
license_note: No stated data license in the Mobility Database; verify before publishing.
rt_urls:
service_alerts: https://gtfs-realtime.trilliumtransit.com/gtfs-realtime/feed/humboldtcounty-ca-us/service_alerts.proto
- id: huntington-park-express