Awesome
Bikeshare Data Sources
This repository keeps track of the datasets that bike-sharing programs have released. Right now, it's an incomplete list focusing on programs that release trip-history data.
Boston — Hubway
- Data homepage: http://hubwaydatachallenge.org/
Trip History Data
- Where to find it: http://hubwaydatachallenge.org/trip-history-data/
- Coverage: 2012-10-01 to 2013-11-30
- Extra fields: gender (subscribers only), birth year (subscribers only)
Station Data
Included in the trip-history download.
Chicago — Divvy
- Data homepage: https://www.divvybikes.com/datachallenge
Trip History Data
- Where to find it: http://hubwaydatachallenge.org/trip-history-data/
- Coverage: 2013-06-27 to 2013-12-31
- Extra fields: gender (subscribers only), birth year (subscribers only)
Station Data
Included in the trip-history download.
New York City — Citi Bike
- Data homepage: http://www.citibikenyc.com/system-data
Trip History Data
- Where to find it: http://www.citibikenyc.com/system-data
- Coverage: 2013-07-01 to 2014-02-28
- Extra fields: gender (subscribers only), birth year (subscribers only)
Citi Bike provides month-by-month downloads of its trip history data. To download all available months and merge them into a single CSV file, use the Bash script included in this repository:
./scripts/nyc-citibike/fetch-all.sh > PATH/TO/FILE.csv
Station Data
- Where to find it: live JSON
A JSON file listing all active Citi Bike stations can be downloaded link above. Basic station attributes can also be extracted from the trip history data (see above).
Washington, D.C. — Capital Bikeshare
- Data homepage: https://www.capitalbikeshare.com/system-data
Trip History Data
- Where to find it: https://www.capitalbikeshare.com/trip-history-data
- Coverage: 2010-09-15 to 2014-03-31
- Extra fields: None
Capital Bikeshare provides quarterly downloads of its trip history data. Data through the third quarter of 2013 are provided as direct CSV downloads. Data for later quarters are provided as ZIP files of CSV files. To download all available quarters and merge them into a single CSV file, use the Bash script included in this repository:
./scripts/dc-capital-bikeshare/fetch-all.sh > PATH/TO/FILE.csv
Station Data
- Where to find it: live XML
A XML file listing all active Capital Bikeshare stations can be downloaded from link above. Basic station attributes can also be extracted from the trip history data (see above).