Skip to content

A simple BART arrival estimate mobile app, built using Sinatra, and implementing the jQuery Mobile library and a Ruby wrapper built around the BART data API

Notifications You must be signed in to change notification settings

nbfowler/barttimes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A simple mobile web app using jish's ruby wrapper http://github.com/jish/bart around the BART API. http://api.bart.gov/

##Mobile app URL

http://barttimes.com

Ruby Wrapper Usage

Create a new station object

require 'bart/station'

station = Bart::Station.new('ssan')
station.name
# => "South San Francisco"

And see when then next trains are supposed to arrive

station.load_departures
station.departures.map do |d|
  [d.destination.name, d.estimates.map { |e| e.minutes }]
end
# => [["Pittsburg/Bay Point", [5, 25, 50]], ["Millbrae", [5, 25, 46]]]

NOTE: This is still beta software. All public APIs are subject to change

About

A simple BART arrival estimate mobile app, built using Sinatra, and implementing the jQuery Mobile library and a Ruby wrapper built around the BART data API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published