Skip to content

A simple Ruby wrapper for the Chicago Transit Authority API

License

Notifications You must be signed in to change notification settings

fbonetti/cta-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Install

Via rubygems.org:

$ gem install cta-api

Usage

This gem allows you to access the Chicago Transit Authority API via Ruby. You can track the real-time locations of all public transportation vehicles, including buses and trains. You can obtain API keys from the CTA website:

Bus Tracker

Setup

require 'cta-api'

key = "XXXXXXXXXXXXXXXXXXXXXXXXX"
CTA::BusTracker.key = key

Find Routes and Stops

# list all available routes
CTA::BusTracker.routes

# gets the available directions for the specified route (north, south, etc.)
CTA::BusTracker.directions :rt => 50

# list all stops that belong to a particular route
CTA::BusTracker.stops :rt => 50, :dir => :north

Find Vehicles

# returns an array of vehicles that travel the given routes
CTA::BusTracker.vehicles :rt => 50

# returns an array of vehicles with the given vehicle ids
CTA::BusTracker.vehicles :vid => ["1782", "1419", "1773"]

Get Predicted Arrival Times

# get arrival times for a list of stop ids
# note that the rt parameter is optional
CTA::BusTracker.predictions :stpid => 8923, :rt => 50

# get arrival times for a list of vehicle ids
CTA::BusTracker.predictions :vid => ["1782", "1419", "1773"]

Get System Time

CTA::BusTracker.time

Train Tracker

Setup

require 'cta-api'

key = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
CTA::TrainTracker.key = key

Get a List of Stops and Stations

# stops
CTA::TrainTracker.stops

# stations
CTA::TrainTracker.stations

Get Predicted Arrival Times

CTA::TrainTracker.arrivals :stpid => "30106"

About

A simple Ruby wrapper for the Chicago Transit Authority API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages