-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgtfs-sources.yaml
1139 lines (1103 loc) · 60.3 KB
/
gtfs-sources.yaml
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
%Public transport data
---
description:
"This file contains information on the location of public transportation feeds, how to load them etc."
schema:
Location:
name: "str"
files:
gtfs:
url: "www.example.com/gtfs.zip"
sites:
# These two are test GTFS on Richard's servers.
test:
name: Test data - Oulu
gtfs: http://rkd.zgib.net/~rkdarst/google_transit.zip
test2:
name: Test data - Oulu 2
gtfs: http://rkd.zgib.net/~rkdarst/gtfs-test/google_transit.zip
authentication: test
finland-matka:
name: "Finland"
authentication: default
gtfs: "http://api.matka.fi/data/gtfs.zip"
notes: "GTFS data for whole finland, experimental"
licence_notes: "The Finnish Transport Agency's open data licence, very allowing"
licence_url: "http://portal.liikennevirasto.fi/sivu/www/f/aineistopalvelut/verkkopalvelut/avoimen_datan_kayttoehdot/avoimen_datan_lisenssi_eng#.U553SXZsFgu"
helsinki:
name: "HSL"
authentication: default
gtfs: https://api.digitransit.fi/routing-data/v2/hsl/HSL.zip
files:
stop_time_observations:
url: "http://dev.hsl.fi/tmp/linfo/"
streams:
siri:
"http://dev.hsl.fi/siriaccess/vm/json?operatorRef=HSL"
notes: "See also dev.hsl.fi"
license-notes: "Use of these interfaces is free of charge. Distribution and re-use of HSL information is allowed. See: http://developer.reittiopas.fi/pages/en/home.php"
tampere:
gtfs: "http://data.itsfactory.fi/journeys/files/gtfs/latest/gtfs_tampere.zip"
files:
gtfs:
license-notes: "See http://www.tampere.fi/tampereinfo/avoindata/avoindatalisenssi.html. Permissive (allows copying and redistributing), requires mentioning the city of Tampere whenever used."
notes: "See also old files at http://data.itsfactory.fi/files/gtfs/"
licence: "Tampere City Open Data License"
streams:
siri:
url: "http://data.itsfactory.fi/siriaccess/vm/json"
oulu:
gtfs: "http://www.transitdata.fi/oulu/google_transit.zip"
license-notes: "http://creativecommons.org/licenses/by/4.0/"
licence: "CC BY 4.0"
jyvaskyla:
source: http://data.jyvaskyla.fi/data.php
gtfs: http://data.jyvaskyla.fi/tiedostot/linkkidata.zip
license: http://data.jyvaskyla.fi/data.php
sweden:
name: "Sweden"
authentication: sweden
gtfs: "https://api.resrobot.se/gtfs/sweden.zip?key={API_KEY}"
files:
gtfs:
update-url: "https://api.trafiklab.se/samtrafiken/gtfs/feed_info.txt"
licence: "Something like CC BY 4.1"
licence-notes: "https://www.trafiklab.se/api/gtfs-sverige/licens"
notes: "Also additional files augmenting the sweden.zip are available, see https://www.trafiklab.se/api/gtfs-sverige/dokumentation-0, for using the service one has to create an account and a project within trafiklab"
updated: "weekly (or at most daily)"
max_downloads: "50 queries/month, max. 1 query/min"
rome:
source: http://www.agenziamobilita.roma.it/en/dataset.html
gtfs: http://dati.muovi.roma.it/gtfs/rome_static_gtfs.zip
license: CC-BY-3.0 (Italian)
# or http://reis.ruter.no/gtfs/gtfs.zip ?
tallinn:
source: http://www.peatus.ee/gtfs/
gtfs: http://www.peatus.ee/gtfs/gtfs.zip
paris:
source:
ratp: http://data.ratp.fr/explore/dataset/offre-transport-de-la-ratp-format-gtfs/?tab=metas
sncf: https://ressources.data.sncf.com/explore/dataset/sncf-transilien-gtfs/information/
gtfs:
ratp: http://dataratp.download.opendatasoft.com/RATP_GTFS_FULL.zip
sncf: http://files.transilien.com/horaires/gtfs/export-TN-GTFS-LAST.zip
license:
ratp: ODbL
sncf: http://data.sncf.com/licence
budapest:
source: http://www.bkk.hu/apps/gtfs/
gtfs: http://www.bkk.hu/gtfs/budapest_gtfs.zip
# US Cities, in order of population.
new_york:
source:
subway: http://web.mta.info/developers/developer-data-terms.html
bronx: http://web.mta.info/developers/developer-data-terms.html
manhattan: http://web.mta.info/developers/developer-data-terms.html
queens: http://web.mta.info/developers/developer-data-terms.html
brooklyn: http://web.mta.info/developers/developer-data-terms.html
staten_island: http://web.mta.info/developers/developer-data-terms.html
metro_north: http://web.mta.info/developers/developer-data-terms.html
lirr: http://web.mta.info/developers/developer-data-terms.html
bus: http://web.mta.info/developers/developer-data-terms.html
nassau: http://www.nicebus.com/Passenger-Information/App-Developers.aspx
westchester: https://511ny.org/developers/resources
license:
subway: http://web.mta.info/developers/developer-data-terms.html
bronx: http://web.mta.info/developers/developer-data-terms.html
manhattan: http://web.mta.info/developers/developer-data-terms.html
queens: http://web.mta.info/developers/developer-data-terms.html
brooklyn: http://web.mta.info/developers/developer-data-terms.html
staten_island: http://web.mta.info/developers/developer-data-terms.html
metro_north: http://web.mta.info/developers/developer-data-terms.html
lirr: http://web.mta.info/developers/developer-data-terms.html
bus: http://web.mta.info/developers/developer-data-terms.html
nassau: http://www.nicebus.com/NiceBus/media/NiceBus-Images/131030_Legal-Agreements.pdf
westchester:
gtfs:
subway: http://web.mta.info/developers/data/nyct/subway/google_transit.zip
bronx: http://web.mta.info/developers/data/nyct/bus/google_transit_bronx.zip
manhattan: http://web.mta.info/developers/data/nyct/bus/google_transit_manhattan.zip
queens: http://web.mta.info/developers/data/nyct/bus/google_transit_queens.zip
brooklyn: http://web.mta.info/developers/data/nyct/bus/google_transit_brooklyn.zip
staten_island: http://web.mta.info/developers/data/nyct/bus/google_transit_staten_island.zip
metro_north: http://web.mta.info/developers/data/mnr/google_transit.zip
lirr: http://web.mta.info/developers/data/lirr/google_transit.zip
bus: http://web.mta.info/developers/data/busco/google_transit.zip
nassau: http://www.nicebus.com/NiceBus/media/Nicebus-FrontPageNewsImages/To_Google_Merged.zip
westchester: https://s3.amazonaws.com/datatools-nysdot/public/Westchester_County_Bee-Line_System.zip
los_angeles:
source:
los_angeles_county: http://developer.metro.net/introduction/gtfs-data/download-metros-gtfs-data/
ladot: http://www.ladottransit.com/dla.html
santa_monica: http://gtfs.bigbluebus.com/
long_beach:
torrance: http://transit.torranceca.gov/24436.htm
culver_city: http://www.culvercity.org/city-hall/city-maps-gis-program/download-gis-data
foothills_transit: http://foothilltransit.org/about/developer-resources/
pasadena_transit:
glendale:
san_bernadino:
riverside_transit:
corona_cruiser:
gtfs:
los_angeles_county_bus: https://gitlab.com/LACMTA/gtfs_bus/raw/master/gtfs_bus.zip
los_angeles_county_rail: https://gitlab.com/LACMTA/gtfs_rail/raw/master/gtfs_rail.zip
ladot: http://lacitydot.com/gtfs/administrator/gtfszip/ladotgtfs.zip
santa_monica: http://gtfs.bigbluebus.com/current.zip
long_beach: http://www.gtfs-data-exchange.com/agency/long-beach-transit/latest.zip
torrance: http://www.torranceca.gov/TransitFeed/google_transit.zip
culver_city: http://www.culvercity.org/home/showdocument?id=1912
foothills_transit: http://foothilltransit.org/gtfs/foothilltransit-ca-us.zip
pasadena_transit: http://rt.pasadenatransit.net/rtt/public/utility/gtfs.aspx
glendale: http://www.gtfs-data-exchange.com/agency/glendale-beeline/latest.zip
san_bernadino: http://www.omnitrans.org/google/google_transit.zip
riverside_transit: http://www.gtfs-data-exchange.com/agency/riverside-transit-agency/latest.zip
corona_cruiser: http://data.trilliumtransit.com/gtfs/corona-ca-us/corona-ca-us.zip
monteray_park: http://data.trilliumtransit.com/gtfs/montereypark-ca-us/montereypark-ca-us.zip
duarte: http://data.trilliumtransit.com/gtfs/duartetransit-ca-us/duartetransit-ca-us.zip
license:
los_angeles_county: http://developer.metro.net/terms-and-conditions/
ladot: http://www.ladottransit.com/dla.html
chicago:
source:
cta: http://www.transitchicago.com/developers/gtfs.aspx
metra: https://metrarail.com/metra/en/home/about_metra/obtaining_records_from_metra.html
pace: http://www.pacebus.com/sub/about/data_services.asp
gtfs:
cta: http://www.transitchicago.com/downloads/sch_data/google_transit.zip
metra: http://gtfs.metrarr.com/gtfsMETRA.zip
pace: http://www.pacebus.com/gtfs/gtfs.zip
license:
cta: http://www.transitchicago.com/developers/terms.aspx
metra: https://metrarail.com/content/dam/metra/documents/GTFS_Feed/GTFS%20License%20Agreement.pdf
pace: http://www.pacebus.com/sub/about/data_services.asp#Limited_License
houston:
source: http://www.ridemetro.org/Pages/NewsDownloads.aspx
gtfs:
normal: http://www.ridemetro.org/Downloads/google_transit_merge.zip
merged: http://www.ridemetro.org/Downloads/google_transit.zip
notes: (rkd) I'm not sure what the difference between these is, one should check and
only keep the correct one.
philadelphia:
source:
septa: http://www2.septa.org/developer/index.php
patco: http://www.ridepatco.org/developers/
gtfs:
#septa: http://www2.septa.org/developer/download.php?fc=septa_gtfs.zip&download=download
septa: https://github.com/septadev/GTFS/releases/download/v20160425.2/gtfs_public.zip
patco: https://addtransit.com/gtfs/Patco/PortAuthorityTransitCorporation.zip
license:
septa: http://www2.septa.org/developer/index.php
patco:
phoenix:
source:
1: http://www.valleymetro.org/developers
2: https://www.phoenix.gov/publictransit/developers-portal
gtfs: https://www.phoenix.gov/publictransitsite/Documents/google_transit.zip
notes: Source #1 needs registration, which I haven't done yet. Source #2 seems free.
san_antonio:
source: http://www.viainfo.net/Opportunities/Developers.aspx
gtfs: http://www.viainfo.net/BusService/google_transit.zip
license: http://www.viainfo.net/Opportunities/DevLicense.aspx
san_diego:
source:
san_diego_mts: http://www.sdmts.com/Planning/Developers.asp
north_county_td:
gtfs:
san_diego_mts: http://www.sdmts.com/google_transit_files/google_transit.zip
north_county_td: http://www.gonctd.com/google_transit.zip
license:
san_diego_mts: http://www.sdmts.com/Planning/Developers_TermsAndConditions.asp
north_county_td:
dallas:
source:
dart:
fort_worth: http://www.fwta.org/TransitDataGTFS.aspx
gtfs:
dart: http://www.dart.org/transitdata/latest/google_transit.zip
# fort_worth: http://sched.fwta.com/gtfs/fwtatransitdata.zip
fort_worth: https://transitfeeds.com/p/fort-worth-transportation-authority/56/latest/download
license:
dart: http://www.dart.org/transitdata/legalnotices.asp ???
fort_worth: http://www.fwta.org/TransitDataGTFS.aspx
#merged with sf_bay_area
#san_jose:
# source: http://www.vta.org/getting-around/gtfs-info/data-file
# gtfs: http://www.vta.org/sfc/servlet.shepherd/document/download/069A0000001NUea
# license: http://www.vta.org/getting-around/gtfs-info/dev-terms-of-use
# notes: Make sure that the URL is updating!
austin:
source:
1: http://www.capmetro.org/metrolabs/
2: https://data.texas.gov/Capital-Metro/Capital-Metro-Google-Transit/r4v4-vz24
gtfs: https://data.texas.gov/download/r4v4-vz24/application/zip
#merged with sf_bay_area
#san_francisco:
# source: https://www.sfmta.com/about-sfmta/reports/gtfs-transit-data
#gtfs: http://archives.sfmta.com/transitdata/google_transit.zip
#license: https://www.sfmta.com/about-sfmta/reports/gtfs-transit-data
sf_bay_area:
notes: include BART, MUNI, AC transit, Caltrain, sanjose transit(above), etc.
gtfs:
tri_delta_transit: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=3D
sf-muni: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=SF
bart: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=BA
caltrain: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=CT
san_mateo: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=SM
golden_gate_transit: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=GG
sf_bay_ferries: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=SB
oakland: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=AC
westcat: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=WC
concord_county: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=CC
marin_county: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=MA
capitol_corridor: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=AM
commuteorg_shuttles: http://www.commute.org/files/gtfs/Masterzip.zip
angel_island: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=AT
american_canyon: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=AY
blue_and_gold_fleet: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=BG
altamount_corridor_express: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=CE
dumbarton_express: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=DE
emery_go-round: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=EM
fairfield_and_suisun: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=FS
golden_gate_ferry: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=GF
alcatraz_hornblower_ferry: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=HF
stanford_marguerite_shuttle: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=MS
petaluma_transit: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=PE
rio_vista_delta_breeze: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=RV
vta: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=SC
sonoma_county: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=SO
santa_rosa_citybus: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=SR
soltrans: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=ST
union_city_transit: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=UC
vacaville_city_coach: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=VC
vine: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=VN
wheels: http://api.511.org/transit/datafeeds?api_key={API_KEY}&operator_id=WH
license: http://assets.511.org/pdf/nextgen/developers/511_Data_Agreement_Final.pdf
source: http://511.org/developers/list/resources/
boston:
source: http://www.mbta.com/rider_tools/developers/default.asp?id=21895
gtfs: http://www.mbta.com/uploadedfiles/MBTA_GTFS.zip
license: ???
seattle:
portland:
source: http://oregon-gtfs.com/gtfs_data/rideconnection-or-us/
gtfs: http://oregon-gtfs.com/gtfs_data/rideconnection-or-us/rideconnection-or-us.zip
portland2:
source:
portland_trimet: http://developer.trimet.org/GTFS.shtml
vancouver_wa: http://www.c-tran.com/about-c-tran/business/c-tran-gtfs-data
south_metro_area_smart: http://www.oregon-gtfs.com/
gtfs:
portland_trimet: http://developer.trimet.org/schedule/gtfs.zip
vancouver_wa: http://www.c-tran.com/images/Google/GoogleTransitUpload.zip
south_metro_area_smart: http://data.trilliumtransit.com/gtfs/wilsonville-or-us/wilsonville-or-us.zip
ride_connection: http://oregon-gtfs.com/gtfs_data/rideconnection-or-us/rideconnection-or-us.zip
washington_dc:
source:
dc: http://www.wmata.com/rider_tools/developer_resources.cfm
montgomery: http://www.montgomerycountymd.gov/DOT-Transit/GTFS/GTFSfiles.html
arlington: http://www.arlingtontransit.com/pages/rider-tools/tools-for-developers/
alexandria:
potomac: http://www.prtctransit.org/about-us/developers-tools.html
fairfax: http://www.fairfaxcounty.gov/connector/data/
central_maryland: http://www.cmrtransit.org/about/developer-resources/
virginia_railway_express: http://www.vre.org/about/app-dev/
gtfs:
dc: http://lrg.wmata.com/GTFS_data/google_transit.zip
montgomery: http://www.montgomerycountymd.gov/DOT-Transit/Resources/Files/RideOnGTFS.zip
arlington: http://realtime.commuterpage.com/rtt/public/utility/gtfs.aspx
alexandria: http://www.dashbus.com/google_transit.zip
potomac: http://www.prtctransit.org/feeds/google_transit.zip
fairfax: http://www.fairfaxcounty.gov/connector/data/connector_gtfs.zip
central_maryland: http://mdtrip.org/googletransit/RTA/google_transit.zip
virginia_railway_express: http://www.vre.org/gtfs/google_transit.zip
license:
dc: http://www.wmata.com/rider_tools/license_agreement.cfm
montgomery: http://www.montgomerycountymd.gov/user_rights
arlington:
alexandria:
potomac: http://www.prtctransit.org/about-us/developers-tools.html
fairfax: http://www.fairfaxcounty.gov/connector/data/
central_maryland: http://www.cmrtransit.org/about/developer-resources/
virginia_railway_express: http://www.vre.org/vre/assets/File/pdfs/MobileDevelopersGuideweb.pdf
atlanta:
source:
marta: http://www.itsmarta.com/developers/data-sources/general-transit-feed-specification-gtfs.aspx
cobb_county: http://www.atlantaregional.com/transportation/transit/existing-regional-transit-system
gwinnet_county: http://www.atlantaregional.com/transportation/transit/existing-regional-transit-system
georgia_regional: http://www.atlantaregional.com/transportation/transit/existing-regional-transit-system
cherokee_area: http://www.atlantaregional.com/transportation/transit/existing-regional-transit-system
georgia_tech_trolley: http://www.atlantaregional.com/transportation/transit/existing-regional-transit-system
buc_shuttle: http://www.atlantaregional.com/transportation/transit/existing-regional-transit-system
emory_cliff_shuttle: http://www.atlantaregional.com/transportation/transit/existing-regional-transit-system
atlantic_station: http://www.atlantaregional.com/transportation/transit/existing-regional-transit-system
atlanta_streetcar: http://www.atlantaregional.com/transportation/transit/existing-regional-transit-system
gtfs:
marta: http://www.itsmarta.com/google_transit_feed/google_transit.zip
cobb_county: http://documents.atlantaregional.com/transitdata/gtfs_CCT.zip
gwinnet_county: http://documents.atlantaregional.com/transitdata/gtfs_GCT.zip
georgia_regional: http://www.grta.org/GTFS/Google_Transit.zip
cherokee_area: http://documents.atlantaregional.com/transitdata/gtfs_CATS.zip
georgia_tech_trolley: http://documents.atlantaregional.com/transitdata/gtfs_GT.zip
buc_shuttle: http://documents.atlantaregional.com/transitdata/gtfs_Buc.zip
emory_cliff_shuttle: http://documents.atlantaregional.com/transitdata/gtfs_CCTMA.zip
atlantic_station: http://documents.atlantaregional.com/transitdata/gtfs_Atlantic.zip
atlanta_streetcar: http://documents.atlantaregional.com/transitdata/gtfs_ASC.zip
license:
marta:
cobb_county: http://www.atlantaregional.com/File%20Library/Transportation/Transit/Developers-Agreement-for-Web.pdf
gwinnet_county: http://www.atlantaregional.com/File%20Library/Transportation/Transit/Developers-Agreement-for-Web.pdf
georgia_regional: http://www.atlantaregional.com/File%20Library/Transportation/Transit/Developers-Agreement-for-Web.pdf
cherokee_area: http://www.atlantaregional.com/File%20Library/Transportation/Transit/Developers-Agreement-for-Web.pdf
georgia_tech_trolley: http://www.atlantaregional.com/File%20Library/Transportation/Transit/Developers-Agreement-for-Web.pdf
buc_shuttle: http://www.atlantaregional.com/File%20Library/Transportation/Transit/Developers-Agreement-for-Web.pdf
emory_cliff_shuttle: http://www.atlantaregional.com/File%20Library/Transportation/Transit/Developers-Agreement-for-Web.pdf
atlantic_station: http://www.atlantaregional.com/File%20Library/Transportation/Transit/Developers-Agreement-for-Web.pdf
atlanta_streetcar: http://www.atlantaregional.com/File%20Library/Transportation/Transit/Developers-Agreement-for-Web.pdf
updates: 4/year
los_angeles2: Make sure that LA includes MetroRail
maryland:
source: http://mta.maryland.gov/content/developer-resources
gtfs: http://mta.maryland.gov/_googletransit/latest/google_transit.zip
license: no-warranty
notes: includes Baltimore
san_juan:
miami:
orange_county:
source: http://www.octa.net/News-and-Resources/Open-Data/Google-Transit-Feed/
gtfs: http://www.octa.net/current/google_transit.zip
license: http://www.octa.net/disclaimer/
honolulu:
source: http://forums.thebus.org/topic.asp?TOPIC_ID=1465&SearchTerms=google
gtfs: http://webapps.thebus.org/transitdata/production/google_transit.zip
license: http://www.thebus.org/transitfeed/terms-of-use.asp ???
notes: No official link found, also it is out of date at time of
finding. Can't verify the linked license is the true one.
utah:
source: http://developer.rideuta.com/DeveloperResources/developer.aspx
notes: Unlike most sites, upstream data seems to be hosted on GTFS-data-exchange
license: http://developer.rideuta.com/TermsOfUse.aspx
gtfs: http://www.gtfs-data-exchange.com/agency/utah-transit-authority/latest.zip
minneapolis:
source:
minneapolis_metro: https://gisdata.mn.gov/dataset/us-mn-state-metc-trans-transit-schedule-google-fd
minnesota_valley: http://wiki.mvta.com/
gtfs:
minneapolis_metro: ftp://ftp.gisdata.mn.gov/pub/gdrs/data/pub/us_mn_state_metc/trans_transit_schedule_google_fd/csv_trans_transit_schedule_google_fd.zip
minnesota_valley: http://wiki.mvta.com/files/Home/google_transit.zip
notes: 'A different "official feed" source is listed here: http://www.gtfs-data-exchange.com/agency/metro-transit/'
# World cities, by size
# "Best transit systems in the world", according to various lists
# new york (above)
berlin:
# gtfs: http://www.vbb.de/de/download/gtfs-daten.zip
# gtfs: http://www.vbb.de/de/datei/gtfs-daten.zip
# http://www.vbb.de/de/datei/GTFS_VBB_EndeApr_Dez2016.zip
gtfs: http://images.vbb.de/assets/ftp/file/405413.zip
source: https://code.google.com/p/googletransitdatafeed/wiki/PublicFeeds,
license: CC BY Attribution
notes: http://www.vbb.de/de/article/webservices/schnittstellen-fuer-webentwickler/5070.html#gtfs
is the VBG site for GTFS data, however it doesn't link to the always-up-to-date
version
#zurich: (see switzerland below)
#frankfurt:
#london:
#paris:
#tokyo:
#munich:
#singapore:
#seoul:
#beijing:
#moscow:
#sao_paulo:
#http://www.sptrans.com.br/desenvolvedores/Default.aspx?login
#dubai:
# Largest metropolitan areas in the world
#tokyo:
#seoul:
#shanghai:
#guangzhou:
#delhi:
#mexico_city:
#beijing:
#lagos:
#sao_paulo:
#mumbai:
#new_york:
#osaka:
#dhaka:
#kolkata:
#tehran:
#istanbul:
#london:
#los_angeles:
#buenos_aires:
#paris:
# Other
switzerland:
source: http://gtfs.geops.ch/
gtfs: http://gtfs.geops.ch/dl/gtfs_complete.zip
license: http://www.fahrplanfelder.ch/fileadmin/fap_daten_test/141214_Nutzungsbed_Fahrpland_de.pdf
estonia:
source: http://www.peatus.ee/gtfs/
gtfs: http://www.peatus.ee/gtfs/gtfs.zip
notes: Linked from public GTFS page, but no official source.
canberra:
source: https://www.data.act.gov.au/Transport/ACTION-timetables-Google-Transit-Feed/2acm-wq55/data
gtfs: http://www.transport.act.gov.au/googletransit/google_transit.zip
license: http://creativecommons.org/licenses/by/3.0/au/deed.en
des_moines:
notes: official source requires registering
source: google transit public feed listing
gtfs: http://api.ridedart.com/gtfs/file?key={API_KEY}
# Africa
# Algeria
#algiers:
# source: https://github.com/MajdaNaf/algiers-transit-data/tree/master/GTFS%20files
# gtfs: https://github.com/MajdaNaf/algiers-transit-data/tree/master/GTFS%20files
#license: https://github.com/MajdaNaf/algiers-transit-data/blob/master/LICENSE
#notes: "unofficial, non-zip, outdated"
# Egypt
cairo:
source: https://github.com/transportforcairo/Metro-GTFS
gtfs: https://github.com/transportforcairo/Metro-GTFS/archive/master.zip
license: https://github.com/transportforcairo/Metro-GTFS/blob/master/LICENSE.md
notes: "outdated"
# Kenya
nairobi:
source: http://www.digitalmatatus.com/map.html
gtfs: http://www.digitalmatatus.com/pdf/GTFS_DATA_1.zip
notes: "unofficial source"
# South Africa
cape_town:
source: http://www.gtfs-data-exchange.com/agency/myciti/
gtfs: http://gtfs.s3.amazonaws.com/myciti_20131022_0552.zip
license:
notes: "Unofficial, Outdated, official feed has disappeared"
# Asia
# Israel
israel:
source: http://he.mot.gov.il/index.php?option=com_content&view=article&id=2244&catid=167&Itemid=304
gtfs: ftp://gtfs.mot.gov.il/israel-public-transportation.zip
# Philippines
manilla:
source: http://www.dotc.gov.ph/index.php/2014-09-02-05-02-46/transit-data
gtfs: http://www.dotc.gov.ph/images/Open_Data/gtfs_884416.zip
license: http://www.dotc.gov.ph/images/Open_Data/draft%20developer%20license%20agreement%20and%20terms%20of%20use%20gtfs.pdf
notes: not updated, therefore dropped
# Malaysia
kuala_lumpur:
source: http://www.gtfs-data-exchange.com/agency/myrapid-kuala-lumpur/
gtfs: http://gtfs.s3.amazonaws.com/myrapid-kuala-lumpur_20130923_1026.zip
notes: "Unofficial, Outdated, unable to find original data source"
# Singapore
singapore:
source: http://www.gtfs-data-exchange.com/agency/lta/
gtfs: http://gtfs.s3.amazonaws.com/lta_20150727_0653.zip
notes: "unofficial source"
# Europe
# Belgium
belgium:
source: https://hello.irail.be/
gtfs:
brussels: http://gtfs.irail.be/mivb/mivb-gtfs.zip
flanders: http://gtfs.irail.be/de-lijn/de_lijn-gtfs.zip
wallonia: http://gtfs.irail.be/tec/tec-gtfs.zip
train: http://gtfs.irail.be/nmbs/nmbs-latest.zip
notes: "unofficial source"
# Czechia
prague:
source: http://opendata.praha.eu/dataset/dpp-jizdni-rady
gtfs: http://opendata.iprpraha.cz/DPP/JR/jrdata.zip
license: http://www.opendefinition.org/licenses/cc-zero
# Denmark
denmark:
gtfs: http://labs.rejseplanen.dk/files/GTFS/GTFS.zip
source: https://help.rejseplanen.dk/hc/en-us/categories/201728005-Labs
license_info: https://help.rejseplanen.dk/hc/en-us/articles/213633029-Guidelines-for-data-usage/
license: http://creativecommons.org/licenses/by-nd/3.0/
# Finland
kuopio:
source: http://joukkoliikenne.kuopio.fi/mobile-apps
gtfs: http://bussit.kuopio.fi/gtfs/gtfs.zip
turku:
source: http://data.foli.fi/doc/gtfs/v0/index
gtfs: http://data.foli.fi/gtfs/gtfs.zip
# France
france:
source: https://ressources.data.sncf.com/explore/dataset/sncf-ter-gtfs/table/
gtfs:
ter: https://ressources.data.sncf.com/explore/dataset/sncf-ter-gtfs/files/24e02fa969496e2caa5863a365c66ec2/download/
loire_tram_trains: https://ressources.data.sncf.com/explore/dataset/sncf-tram-train-ter-pdl-gtfs/files/f517d7646d71f8ad65f496835bd569c8/download/
notes: regional trains
angers:
source: http://data.angers.fr/donnees/mobilite-horaire-de-passage-theorique/?tx_icsoddatastore_pi1[keywords]=&tx_icsoddatastore_pi1[fileformat][0]=13
gtfs: http://data.angers.fr/?eID=ics_od_datastoredownload&file=1173
license: http://opendatacommons.org/licenses/odbl/1.0/
notes: "No fixed url"
bordeaux:
source: https://data.bordeaux-metropole.fr/apicub
gtfs:
bus: http://data.lacub.fr/files.php?gid=68&format=14
tram: http://data.lacub.fr/files.php?gid=67&format=14
license: http://creativecommons.org/licenses/by-nc-sa/2.0/fr/
brest:
source: https://geo.pays-de-brest.fr/actualites/Pages/public/Offre_Theorique_Bibus.aspx
gtfs: https://applications002.brest-metropole.fr/VIPDU72/GPB/Lot_BrestMetropole_Bibus.zip
license:
grenoble:
source: http://www.metromobilite.fr/pages/opendata/OpenDataHorairesTheoriques.html
gtfs: http://www.metromobilite.fr/data/Horaires/SEM-GTFS.zip
license: http://www.metromobilite.fr/pdf/ODbL_fr_VF_1.pdf
marseille:
source: http://www.lepilote.com/fr/open-data/83
gtfs:
rtm: http://tsvc.pilote3.cityway.fr/api/Export/v1/GetExportedDataFile?ExportFormat=Gtfs&OperatorCode=RTM
sanprovence: http://tsvc.pilote3.cityway.fr/api/Export/v1/GetExportedDataFile?ExportFormat=Gtfs&OperatorCode=SANPROVENCE
rtmnav: http://tsvc.pilote3.cityway.fr/api/Export/v1/GetExportedDataFile?ExportFormat=Gtfs&OperatorCode=RTMNAV
milsab: http://tsvc.pilote3.cityway.fr/api/Export/v1/GetExportedDataFile?ExportFormat=Gtfs&OperatorCode=MILSAB
libebus: http://tsvc.pilote3.cityway.fr/api/Export/v1/GetExportedDataFile?ExportFormat=Gtfs&OperatorCode=LIBEBUS
busdescollines: http://tsvc.pilote3.cityway.fr/api/Export/v1/GetExportedDataFile?ExportFormat=Gtfs&OperatorCode=BUSDESCOLLINES
aixenbus: http://tsvc.pilote3.cityway.fr/api/Export/v1/GetExportedDataFile?ExportFormat=Gtfs&OperatorCode=AIXENBUS
cigales: http://tsvc.pilote3.cityway.fr/api/Export/v1/GetExportedDataFile?ExportFormat=Gtfs&OperatorCode=CIGALES
etang: http://tsvc.pilote3.cityway.fr/api/Export/v1/GetExportedDataFile?ExportFormat=Gtfs&OperatorCode=ETANG
marcouline: http://tsvc.pilote3.cityway.fr/api/Export/v1/GetExportedDataFile?ExportFormat=Gtfs&OperatorCode=MARCOULINE
cotebleue: http://tsvc.pilote3.cityway.fr/api/Export/v1/GetExportedDataFile?ExportFormat=Gtfs&OperatorCode=COTEBLEUE
agglobus: http://tsvc.pilote3.cityway.fr/api/Export/v1/GetExportedDataFile?ExportFormat=Gtfs&OperatorCode=AGGLOBUS
accm: http://tsvc.pilote3.cityway.fr/api/Export/v1/GetExportedDataFile?ExportFormat=Gtfs&OperatorCode=ACCM
cpa: http://tsvc.pilote3.cityway.fr/api/Export/v1/GetExportedDataFile?ExportFormat=Gtfs&OperatorCode=CPA
frioul: http://tsvc.pilote3.cityway.fr/api/Export/v1/GetExportedDataFile?ExportFormat=Gtfs&OperatorCode=FRIOUL
cg13: http://tsvc.pilote3.cityway.fr/api/Export/v1/GetExportedDataFile?ExportFormat=Gtfs&OperatorCode=CG13
ciotabus: http://tsvc.pilote3.cityway.fr/api/Export/v1/GetExportedDataFile?ExportFormat=Gtfs&OperatorCode=CIOTABUS
license: http://opendata.regionpaca.fr/fileadmin/user_upload/tx_ausyopendata/licences/Licence-Ouverte-Open-Licence-ETALAB.pdf
# TODO: Update feed for Nice
nice:
source: http://opendata.nicecotedazur.org/data/dataset/export-au-format-gtfs-du-reseau-de-transport-lignes-d-azur#
gtfs: http://opendata.nicecotedazur.org/data/storage/f/gtfs1459638001/GTFSExport.zip
license: http://opendata.nicecotedazur.org/data/pdf/licence_ouverte.pdf
nantes:
source: http://data.nantes.fr/donnees/detail/arrets-horaires-et-circuits-tan/
gtfs: http://data.nantes.fr/fileadmin/data/datastore/nm/mobilite/24440040400129_NM_TAN_00005/ARRETS_HORAIRES_CIRCUITS_TAN_gtfs.zip
license: Open Database License (ODbL), http://data.nantes.fr/licence/
rennes:
source: http://data.keolis-rennes.com/fr/les-donnees/donnees-telechargeables.html
gtfs: http://data.keolis-rennes.com/fileadmin/OpenDataFiles/GTFS/GTFS-20160209.zip
license: http://data.keolis-rennes.com/fr/pied-de-page/mentions-legales.html
notes: "filename fixed to upload date"
strassbourg:
source: http://www.cts-strasbourg.eu/fr/portail-open-data/index.html
gtfs: http://opendata.cts-strasbourg.fr/fichiers/gtfs/google_transit.zip
license: http://www.cts-strasbourg.eu/fr/cgucgv/
toulouse:
source: https://data.toulouse-metropole.fr/explore/dataset/tisseo-gtfs/information/
gtfs: https://data.toulouse-metropole.fr/explore/dataset/tisseo-gtfs/files/bd1298f158bc39ed9065e0c17ebb773b/download/
license: http://opendatacommons.org/licenses/odbl/
# Germany
mannheim:
source: https://opendata.rnv-online.de/datensaetze/gtfs-general-transit-feed-specification
gtfs: https://opendata.rnv-online.de/sites/default/files/rnv-GTFS_2.zip
license: dl-de-by-2.0
aachen:
source: http://opendata.avv.de/current_GTFS/lizenz_und_readme.txt
gtfs: http://opendata.avv.de/current_GTFS/AVV_GTFS_mit_SPNV.zip
license: CC0
cologne:
source: https://www.vrsinfo.de/fahrplan/oepnv-daten-fuer-webentwickler.html
gtfs: http://download.vrsinfo.de/gtfs/google_transit_DB.zip
license: https://creativecommons.org/licenses/by/4.0/deed.de
hamburg:
source: http://suche.transparenz.hamburg.de/dataset/hvv-fahrplandaten-gtfs-august-2017-bis-dezember-2017
gtfs: http://daten.transparenz.hamburg.de/Dataport.HmbTG.ZS.Webservice.GetRessource100/GetRessource100.svc/1f45a49b-8878-41d3-9c62-7aae982d115f/Upload__HVV_Rohdaten_GTFS_Fpl_20170810.zip
license: http://www.govdata.de/dl-de/by-2-0
ruhr:
source: http://data.ndovloket.nl/
gtfs: http://data.ndovloket.nl/vrr/DINO_VRR_20170823.zip
license: http://data.ndovloket.nl/LICENTIE-CC0.TXT
# Greece
athens:
source: http://geodata.gov.gr/el/dataset/oasa
gtfs: http://geodata.gov.gr/dataset/244cfb87-21a0-4f9f-90af-25e9a232af41/resource/d94179a0-a2bd-432f-8c5e-e05eae2886cf/download/googletransit.zip
license: https://creativecommons.org/licenses/by/3.0/
# Ireland
dublin:
notes: includes bus, luas (light rail) and all trains in ireland (Dart should be isolated)
source: http://www.transportforireland.ie/transitData/PT_Data.html
gtfs:
bus: http://www.transportforireland.ie/transitData/google_transit_dublinbus.zip
luas: http://www.transportforireland.ie/transitData/google_transit_luas.zip
irish_rail: http://www.transportforireland.ie/transitData/google_transit_irishrail.zip
license: https://data.gov.ie/licence
# Italy
milan:
source:
amat: https://www.amat-mi.it/it/mobilita/dati-strumenti-tecnologie/dati-gtfs/
trenord: https://www.dati.lombardia.it/Mobilit-e-trasporti/Orario-Ferroviario-Regionale-Gtfs/3z4k-mxz9
gtfs:
amat: http://amat-mi.it/it/downloads/data/gtfs/current/Export_OpenDataTPL_Current.zip
trenord: https://www.dati.lombardia.it/api/file_data/a9fcc223-1d49-4e95-935b-121d32873c3a?filename=trenord_gtfs.zip
license:
amat: http://creativecommons.org/licenses/by/4.0/legalcode
trenord: http://www.dati.gov.it/iodl/2.0/
naples:
source:
trenitalia: http://www.comune.napoli.it/flex/cm/pages/ServeBLOB.php/L/IT/IDPagina/29233
anm: http://www.comune.napoli.it/flex/cm/pages/ServeBLOB.php/L/IT/IDPagina/29233
gtfs:
anmt: http://www.anm.it/google/google-transit.zip
trenitalia: http://www.anm.it/google/metronapoli/google-transit.zip
license:
trenitalia: http://www.dati.gov.it/iodl/2.0/
anm: http://www.dati.gov.it/iodl/2.0/
notes: trenitalia data has been missing for some time
palermo:
source: http://www.comune.palermo.it/opendata_dld.php?id=318
gtfs: http://www.comune.palermo.it/gtfs/amat_feed_gtfs_v1.zip
license: http://creativecommons.org/licenses/by/4.0/deed.it
turin:
source: http://opendata.5t.torino.it/gtfs/
gtfs:
torino: http://opendata.5t.torino.it/gtfs/torino_it.zip
sfm_torino: http://opendata.5t.torino.it/gtfs/sfm_torino_it.zip
license:
venice:
source: http://dati.venezia.it/?q=content/actv-general-transit-feed-specification-gtfs
license: http://dati.venezia.it/?q=licenza/cc
gtfs:
bus: http://actv.avmspa.it/sites/default/files/attachments/opendata/automobilistico/actv_aut.zip
water: http://actv.avmspa.it/sites/default/files/attachments/opendata/navigazione/actv_nav.zip
# Lithuania
kaunas:
source:
gtfs: http://www.stops.lt/kaunas/kaunas/gtfs.zip
vilnius:
source: http://www.vilnius.lt/lit/Atviri_duomenys_/4206
gtfs: http://www.stops.lt/vilnius/vilnius/gtfs.zip
# Luxembourg
luxembourg:
source: http://openov.lu/data/
gtfs: http://openov.lu/data/gtfs/gtfs-openov-lu.zip
# Netherlands
netherlands:
source: http://gtfs.ovapi.nl/
gtfs: http://gtfs.ovapi.nl/new/gtfs-nl.zip
license: http://gtfs.ovapi.nl/README
# Norway
oslo:
source: https://ruter.no/labs/
gtfs: http://reis.ruter.no/gtfs/gtfs.zip
license: http://data.norge.no/nlod/en/1.0
stavanger:
source: https://data.norge.no/data/kolumbus/rutedata-fra-kolumbus
gtfs: http://www.rkt.no/gt/google_transit.zip
license: http://data.norge.no/nlod/
norway:
source: https://data.norge.no/data/norsk-reiseinformasjon/nasjonale-rutedata-norge
gtfs: http://transitdata.reiseinfo.no/googlemaps/NRI_transitdata.zip
license: http://data.norge.no/nlod/
# Poland
szczecin:
source: http://zditm.szczecin.pl/rozklady/GTFS/latest/
gtfs: http://zditm.szczecin.pl/rozklady/GTFS/latest/google_gtfs.zip
license:
wroclaw:
source: http://www.wroclaw.pl/open-data/index.php/zbiory-danych/17-transport/106-rozklad-jazdy-transportu-publicznego
gtfs: http://www.wroclaw.pl/open-data/opendata/rozklady/OtwartyWroclaw_rozklad_jazdy_GTFS.zip
license: http://www.wroclaw.pl/open-data/index.php/warunki-korzystania
warsaw:
source: http://otp-pl.tk/
gtfs:
metro: http://otp-pl.tk/feed/metro/metro-latest.zip
ztm: http://otp-pl.tk/feed/ztm/ztm-latest.zip
wkd: http://otp-pl.tk/feed/wkd/wkd-latest.zip
kml: http://otp-pl.tk/feed/kml/kml-latest.zip
license:
ztm: http://www.ztm.waw.pl/?c=628&l=1
others: http://creativecommons.org/publicdomain/zero/1.0/
notes: unofficial
# Portugal
lisbon:
source: http://dados.cm-lisboa.pt/th/organization/transporlis
gtfs:
carris: http://dadosabertos.cm-lisboa.pt/dataset/2c76cf0d-72f0-4344-9354-c83e06e89790/resource/b68bd058-384d-49f7-9ed4-0030221cfb6f/download/gtfs1.zip
transtejo: http://dadosabertos.cm-lisboa.pt/dataset/5ad57aa3-c96c-4b1d-985a-91aa36b3a9c6/resource/542054f2-8f6f-4a75-8e5e-51b371309ed9/download/gtfs4transtejo.zip
fertagus: http://dadosabertos.cm-lisboa.pt/dataset/9f1ef3ec-3eb9-4782-9b74-c4be4c5cdb59/resource/3828b311-f49d-4227-9204-0a549f8ed75d/download/gtfs13fertagus.zip
rodovaria: http://dadosabertos.cm-lisboa.pt/dataset/87d61502-650a-4ee7-9693-34c4514ac0cb/resource/a33fd804-7e3c-45b6-9194-581618d18b69/download/gtfs61.zip
soflusa: http://dadosabertos.cm-lisboa.pt/dataset/5b15ed85-2ea4-45ca-9529-c2cf4fc7823e/resource/defe6e36-b39a-44a0-b89f-ff34e8b8a5ad/download/gtfs14.zip
sul_de_tejo: http://dadosabertos.cm-lisboa.pt/dataset/65495ff0-0e7e-44c3-955f-31ba4d81ae86/resource/89176419-73b1-42a8-9db1-c7a721e6ed59/download/gtfs11.zip
metro: http://dadosabertos.cm-lisboa.pt/dataset/f7b43314-9e3d-487f-861b-c9a9a2d832de/resource/3b2ac2d1-6f0a-4f77-a639-c30b063126b8/download/gtfs2.zip
license: http://www.opendefinition.org/licenses/cc-zero
portugal:
gtfs:
trains: http://dadosabertos.cm-lisboa.pt/dataset/45252e96-2bcc-4708-b6c0-7ff0e10fa155/resource/999f0c3b-5d7e-48de-8c39-c26207b3e982/download/gtfs3.zip
# Russia
st_petersburg:
source: http://transport.orgp.spb.ru/Portal/transport/internalapi/gtfs
gtfs: http://transport.orgp.spb.ru/Portal/transport/internalapi/gtfs/feed.zip
license:
# Spain
barcelona:
source:
amb: http://www.amb.cat/ca/web/area-metropolitana/dades-obertes/cataleg/detall/-/dataset/informacio-de-companyies--linies-i-recorreguts/1033377/11692
tmb: https://www.tmb.cat/en/about-tmb/tools-for-developers/data-gtfs
gtfs:
amb: http://www.amb.cat/Mobilitat/OpenData/google_transit.zip
tmb: https://navitia.opendatasoft.com/explore/dataset/es/files/5dd5c0e92f2050c35ef4b809a92c7849/download/
licence:
amb: http://www.amb.cat/web/area-metropolitana/dades-obertes/avis-legal
tmb: https://www.tmb.cat/en/about-tmb/tools-for-developers/terms-data-reuse
bilbao:
source: http://opendata.euskadi.eus/catalogo/-/geograficos/moveuskadi-red-de-transporte-publico-de-euskadi-horarios-paradas-tiempo-coste-y-otros-datos-para-planificar-rutas/
gtfs:
artxanda: ftp://ftp.geo.euskadi.net/cartografia/Transporte/Moveuskadi/FunicularArtxanda/google_transit.zip
bilbaobus: ftp://ftp.geo.euskadi.net/cartografia/Transporte/Moveuskadi/Bilbobus/google_transit.zip
bizkaibus: ftp://ftp.geo.euskadi.net/cartografia/Transporte/Moveuskadi/Bizkaibus/google_transit.zip
euskotren: ftp://ftp.geo.euskadi.net/cartografia/Transporte/Moveuskadi/Euskotren/google_transit.zip
la_brundesa: ftp://ftp.geo.euskadi.net/cartografia/Transporte/Moveuskadi/La_Burundesa/google_transit.zip
la_union: ftp://ftp.geo.euskadi.net/cartografia/Transporte/Moveuskadi/La_Union/google_transit.zip
metro_bilbao: ftp://ftp.geo.euskadi.net/cartografia/Transporte/Moveuskadi/MetroBilbao/google_transit.zip
vizcaya: ftp://ftp.geo.euskadi.net/cartografia/Transporte/Moveuskadi/Transbordador_Vizcaya/google_transit.zip
renfe: ftp://ftp.geo.euskadi.net/cartografia/Transporte/Moveuskadi/Renfe/cercanias/google_transit.zip
license: http://creativecommons.org/licenses/by/4.0/
madrid:
source: http://crtm.maps.arcgis.com/home/item.html?id=5c7f2951962540d69ffe8f640d94c246#overview
#old_emt: http://opendata.emtmadrid.es/Datos-estaticos/Datos-generales
#all new feeds found on this site
gtfs:
#old_emt: http://servicios.emtmadrid.es:8080/GTFS/transitEMT.zip
metro: http://crtm.maps.arcgis.com/sharing/rest/content/items/5c7f2951962540d69ffe8f640d94c246/data
light_rail: http://crtm.maps.arcgis.com/sharing/rest/content/items/aaed26cc0ff64b0c947ac0bc3e033196/data
commuter_train: http://crtm.maps.arcgis.com/sharing/rest/content/items/1a25440bf66f499bae2657ec7fb40144/data
crtm_urban: http://crtm.maps.arcgis.com/sharing/rest/content/items/357e63c2904f43aeb5d8a267a64346d8/data
crtm_interurban: http://crtm.maps.arcgis.com/sharing/rest/content/items/885399f83408473c8d815e40c5e702b7/data
emt: http://crtm.maps.arcgis.com/sharing/rest/content/items/868df0e58fca47e79b942902dffd7da0/data
license: http://www.crtm.es/licencia-de-uso
notes: updated every Thursday
mallorca:
source: http://www.tib.org/portal/en/web/ctm/open-data
gtfs: https://www.tib.org/portal/documents/10286/110211/ctm-mallorca-es.zip
license: http://www.tib.org/portal/en/web/ctm/llicencies-us
valencia:
source: http://gobiernoabierto.valencia.es/en/dataset/?id=google-transit-lineas-paradas-horarios-de-autobuses
gtfs: https://opendata.vlci.valencia.es:8443/dataset/4645f8bf-28d7-4420-bab2-d5c5e7de2a5a/resource/11591648-a984-4d64-89e3-3730f3123403/download/googletransit.zip
license: http://creativecommons.org/licenses/by/4.0/deed.es
# Ukraine
lviv:
source: http://opendata.city-adm.lviv.ua/en/dataset/transport/resource/cd92723d-fd08-46d1-8ce4-6c18feec2aec
gtfs: http://77.120.126.169/dataset/ea74385c-98e9-4e08-a2b5-5c2115c164fc/resource/cd92723d-fd08-46d1-8ce4-6c18feec2aec/download/easyway-lviv-ua.zip
license: http://www.opendefinition.org/licenses/cc-by
# United Kingdom
manchester:
source: https://data.gov.uk/dataset/public-transport-schedules-gtfs
gtfs: http://odata.tfgm.com/opendata/downloads/TfGMgtfs.zip
license: http://odata.tfgm.com/opendata/downloads/Licences/FreeToUseData_SubLicence_G_v9.pdf
gb_rail:
source: http://www.gbrail.info/
gtfs: http://www.gbrail.info/gtfs.zip
license: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/
license2: http://creativecommons.org/licenses/by/2.0/uk/legalcode
belfast:
source: http://data.nicva.org/dataset/translink-bus-timetables-gtfs
gtfs: http://data.nicva.org/sites/default/files/metrogtfs.zip
license: http://opendatacommons.org/licenses/odbl/summary
# North America
# Canada
calgary:
source: https://data.calgary.ca/OpenData/Pages/DatasetDetails.aspx?DatasetID=PDC0-99999-99999-00501-P(CITYonlineDefault)
gtfs: https://transitfeeds.com/p/calgary-transit/238/latest/download
#gtfs: https://data.calgary.ca/_layouts/OpenData/DownloadDataset.ashx?Format=FILE&DatasetId=PDC0-99999-99999-00501-P(CITYonlineDefault)&VariantId=9(CITYonlineDefault)
license: https://data.calgary.ca/OpenData/Pages/TermsOfUse.aspx
edmonton:
source: https://data.edmonton.ca/Transit/ETS-Bus-Schedule-GTFS-Data-Feed-zipped-files/gzhc-5ss6
gtfs: https://data.edmonton.ca/download/gzhc-5ss6/application/zip
license: http://www.edmonton.ca/city_government/documents/Web-version2.1-OpenDataAgreement.pdf
montreal:
source:
stm: http://www.stm.info/en/about/developers
amt: https://www.amt.qc.ca/en/about/open-data
laval: http://www.stl.laval.qc.ca/fr/stl-synchro/developpeurs/#fichiers
longueuil: http://www.rtl-longueuil.qc.ca/en-CA/open-data/gtfs-files/
gtfs:
stm: http://www.stm.info/sites/default/files/gtfs/gtfs_stm.zip
amt_train: http://www.amt.qc.ca/xdata/trains/google_transit.zip
amt_express: http://www.amt.qc.ca/xdata/express/google_transit.zip
chambly: http://www.amt.qc.ca/xdata/citcrc/google_transit.zip
haut: http://www.amt.qc.ca/xdata/cithsl/google_transit.zip
laurentides: http://www.amt.qc.ca/xdata/citla/google_transit.zip
presquile: http://www.amt.qc.ca/xdata/citpi/google_transit.zip
lanaudiere: http://www.amt.qc.ca/xdata/crtl/google_transit.zip
richelain: http://www.amt.qc.ca/xdata/citlr/google_transit.zip
roussillion: http://www.amt.qc.ca/xdata/citrous/google_transit.zip
sorel: http://www.amt.qc.ca/xdata/citsv/google_transit.zip
sud_ouest: http://www.amt.qc.ca/xdata/citso/google_transit.zip
richelieu: http://www.amt.qc.ca/xdata/citvr/google_transit.zip
assomtion: http://www.amt.qc.ca/xdata/mrclasso/google_transit.zip
deux_montagnes: http://www.amt.qc.ca/xdata/mrc2m/google_transit.zip
moulins: http://www.amt.qc.ca/xdata/mrclm/google_transit.zip
st_julie: http://www.amt.qc.ca/xdata/omitsju/google_transit.zip
laval: http://www.stl.laval.qc.ca/opendata/GTF_STL.zip
longueuil: http://www.rtl-longueuil.qc.ca/transit/latestfeed/RTL.zip
license:
stm: http://www.stm.info/en/about/developers/terms-use
amt: https://www.amt.qc.ca/Media/Default/pdf/section8/amt-licence-donnees-ouvertes.pdf
laval: http://www.stl.laval.qc.ca/userfiles/files/pdf/fr/NextBusXMLFeed.pdf
longueuil: http://www.rtl-longueuil.qc.ca/cms/Media/1321_88_en-CA_0_Terms_of_use_GTFS_format_data.pdf
ottawa:
source:
ottawa: http://www.octranspo1.com/developers
gatineau: http://www.sto.ca/index.php?id=598&L=en
gtfs:
ottawa: http://www.octranspo1.com/files/google_transit.zip
gatineau: http://www.contenu.sto.ca/GTFS/GTFS.zip
license:
ottawa: http://www.octranspo1.com/developers/terms_of_service
gatineau: http://www.sto.ca/index.php?id=598&L=en
quebec_city:
source: http://www.rtcquebec.ca/Default.aspx?tabid=192
gtfs: http://www.rtcquebec.ca/Portals/0/Admin/DonneesOuvertes/googletransit.zip
toronto:
source:
ttc: http://www1.toronto.ca/wps/portal/contentonly?vgnextoid=96f236899e02b210VgnVCM1000003dd60f89RCRD
york: http://www.yrt.ca/en/aboutus/gtfsdownload.asp
brampton: http://www.brampton.ca/EN/City-Hall/OpenGov/Open-Data-Catalogue/Pages/Data-Set-Details.aspx?ItemID=1
oakville: http://www.oakville.ca/data/oakville-transit-route-information.html
gotransit: http://www.gotransit.com/publicroot/en/schedules/DeveloperResources.aspx
upexpress: http://www.gotransit.com/publicroot/en/schedules/DeveloperResources.aspx
mississauga: http://www.mississauga.ca/portal/miway/developerdownload
durham: http://www.durham.ca/print.asp?nr=/departments/corpservices/it/gis/opendata.htm&setFooter=/includes/GISfooter.inc
burlington: http://cob.burlington.opendata.arcgis.com/
hamilton: https://www.hamilton.ca/city-initiatives/strategies-actions/open-accessible-data
gtfs:
ttc: http://opendata.toronto.ca/TTC/routes/OpenData_TTC_Schedules.zip
#york: http://yrt.ca/google/google_transit.zip
york: https://www.yrt.ca/google/google_transit.zip
brampton: http://www.brampton.ca/EN/City-Hall/OpenGov/Open-Data-Catalogue/Documents/Google_Transit.zip
oakville: http://opendata.oakville.ca/Oakville_Transit_GTFS/Google_Transit.zip
gotransit: http://www.gotransit.com/publicroot/gtfs/google_transit.zip
upexpress: http://www.gotransit.com/publicroot/gtfs/google_transit_UP.zip
mississauga: https://www.miapp.ca/GTFS/google_transit.zip?#
#durham: https://maps.durham.ca/OpenData/GTFS_Durham_TXT.zip
durham: https://maps.durham.ca/OpenDataGTFS/GTFS_Durham_TXT.zip
burlington: http://www.burlington.ca/en/services-for-you/resources/Ongoing_Projects/Open_Data/Catalogue/GTFS_Data.zip
hamilton: http://googlehsrdocs.hamilton.ca/
license:
brampton: http://www.brampton.ca/EN/City-Hall/OpenGov/Open-Data-Catalogue/Pages/Terms-of-Use.aspx
oakville: http://www.oakville.ca/data/open_data_licence.html
durham: http://www.durham.ca/corpservices.asp?nr=/departments/corpservices/it/gis/opendatalicense.htm&setFooter=/includes/GISfooter.inc
burlington: http://www.burlington.ca/en/services-for-you/resources/Ongoing_Projects/Open_Data/OpenDataBurlingtonTermsOfUseSeptember192011.pdf
vancouver:
source: http://www.translink.ca/en/Schedules-and-Maps/Developer-Resources.aspx
gtfs: http://ns.translink.ca/gtfs/google_transit.zip
winnipeg:
source: http://api.winnipegtransit.com/home/api/v2
gtfs: http://gtfs.winnipegtransit.com/google_transit.zip
license: http://api.winnipegtransit.com/home/licence
# Mexico
mexico_city:
source:
cdmx: http://www.gobiernoabierto.cdmx.gob.mx/sigdata/index.php/Publicacion/detalle_dataset/619
mapaton: http://datos.labcd.mx/dataset/mapaton-cdmx-gtfs/resource/828bb5f9-981a-46de-8640-f06d2506b25c
gtfs:
cdmx: https://s3.amazonaws.com/setravi/df_gtfs.zip
mapaton: https://public-api-dot-mapaton-public.appspot.com/getGtfs
license:
cdmx: http://www.gobiernoabierto.cdmx.gob.mx/sigdata/index.php/Publicacion/terminos_uso
mapaton: http://opendatacommons.org/licenses/odbl/1.0/
# MURICA!
buffalo:
source: http://metro.nfta.com/Contact/Developers.aspx
gtfs: http://www.nfta.com/metro/__googletransit/google_transit.zip
cleveland:
source:
gtfs: http://www.riderta.com/sites/default/files/gtfs/latest/google_transit.zip
license:
cincinnati:
source: http://www.go-metro.com/about-metro/developer-data
gtfs: http://www.go-metro.com/uploads/GTFS/google_transit_info.zip
columbus:
source: http://www.cota.com/Auxiliary/Data.aspx
gtfs: http://www.cota.com/COTA/media/COTAContent/OpenGTFSData.zip
delaware:
source: http://dartfirststate.com/information/routes/index.shtml
gtfs: http://www.dartfirststate.com/information/routes/gtfs_data/dartfirststate_de_us.zip
license:
denver:
source: http://www.rtd-denver.com/Developer.shtml
gtfs: http://www.rtd-denver.com/GoogleFeeder/google_transit.zip
license: http://www.rtd-denver.com/Developer-licenseagreement.shtml
detroit:
source: https://data.detroitmi.gov/Transportation/DDOT-GTFS-Transit-File/hv2v-es9i
gtfs: http://www.detroitmi.gov/Portals/0/docs/deptoftransportation/pdfs/ddot_gtfs.zip
license: Public Domain
connecticut:
source: http://www.cttransit.com/about/developers/gtfsdata/Main.asp
gtfs:
hartford: http://www.cttransit.com/uploads_GTFS/googleha_transit.zip
new_haven: http://www.cttransit.com/uploads_GTFS/googlenh_transit.zip
stamford: http://www.cttransit.com/uploads_GTFS/googlestam_transit.zip
waterbury: http://www.cttransit.com/uploads_GTFS/googlewat_transit.zip
new_britain: http://www.cttransit.com/uploads_GTFS/googlenb_transit.zip
meriden: http://www.cttransit.com/uploads_GTFS/googleme_transit.zip
shore_line_east: http://www.shorelineeast.com/google_transit.zip
license: http://www.cttransit.com/about/developers/gtfsdata/
indianapolis:
source: http://www.indygo.net/about-indygo/indygo-developer-content-area/
gtfs: https://transitfeeds.com/p/indygo/210/latest/download
# gtfs: http://www.indygo.net/wp-content/plugins/wp-gtfs/feed/gtfs.zip
license: http://www.indygo.net/about-indygo/indygo-developer-content-area/indygo-gtfs-terms-of-use/
notes: wierd error
kansas_city:
source: http://www.kcata.org/transit_data/access_gtdf
gtfs: http://www.kc-metro.com/gtf/google_transit.zip
license:
las_vegas:
source: http://www.rtcsnv.com/transit/rtc-transit-services/rtc-transit-developer-information/
gtfs: http://rtcws.rtcsnv.com/g/google_transit.zip
license:
miami:
source:
miami_dade: http://www.miamidade.gov/transit/open-data-feeds.asp
broward_county:
palm_beach:
gtfs:
miami_dade: http://www.miamidade.gov/transit/googletransit/current/google_transit.zip
broward_county: http://www.broward.org/bct/google/latest/google_transit.zip
palm_beach: http://www.palmtran.org/feed/google_transit.zip
tri-rail: http://www.tri-rail.com/GTDF/Current/google_transit.zip
milwaukee:
source: http://kamino.mcts.org/gtfs/