CU Transit is an iOS application to get important information about bus service in Champaign-Urbana area.
Main features:
- Find nearby bus stops
- Check bus departure times
- Track bus location
- Find directions
- Offline maps and schedules
- Bookmarks
Website: http://jitouch.com/cutransit
To run CU Transit on an iOS simulator:
- Install Xcode 4.5 or newer.
- Get an API Key from http://developer.cumtd.com/
- (Optional, but recommended) Go to https://code.google.com/apis/console and request a key for Places API.
- Rename
config.sample.h
toconfig.h
. Then configure the file. - Run the application.
The application consists of four tabs: Stops, Trip Planner, Bookmarks, and Routes. The following are their class names and what they typically contain in their navigation stacks.
StopsController
>StopController
>DepartureController
PlannerController
>ItineraryController
BookmarksController
>StopController
RoutesController
>RouteController
In the first tab, a typical workflow is that the user finds a bus stop on the map, taps the bus stop to go to the information page (StopController
), and then selects the "Departures" tab to see incoming buses. The user can then tap a bus's name to see its current location on a map (DepartureController
).
- Update the routes database. The routes information is extracted manually from CUMTD's maps & schedules book PDF. The current data in the app are out of date. It would be much better if we could automate the process.
CU Transit is available under the MIT license.