Difference between revisions of "Charlottetown Transit Map"
Line 31: | Line 31: | ||
==Install the Source== | ==Install the Source== | ||
− | Install the <code>CharlottetownTransitMap. | + | Install the <code>CharlottetownTransitMap.inc</code> file you check out into a web-accesible directory, and then modify the source to set the following: |
* <code>$mysql_host</code> - host name of your MySQL server | * <code>$mysql_host</code> - host name of your MySQL server |
Revision as of 19:49, 8 October 2005
The Charlottetown Transit Map is a PHP and JavaScript application that uses Google Maps to display up-to-the-minute information about the buses in Charlottetown. This is an unofficial project, not affiliated with the City of Charlottetown or the transit operator.
Contents
The Making Of
If you're interested in how I gathered the "raw data" for this application, read Making of the Charlottetown Transit Map.
Demonstration Page
There's a live working demo of the Charlottetown Transit Map at ruk.ca/bus. This demo will always be running the latest version of the code.
System Requirements
- PHP-equipped webserver
- MySQL database server
- A Google Maps API Key
Download the Source
The source code for the Charlottetown Transit Map is kept in a Subversion repository. You can check it out at:
svn://svn.reinvented.net/CharlottetownTransitMap/scripts
or
http://svn.reinvented.net/CharlottetownTransitMap/scripts
Grab the Marker Images
The map uses marker images from the Google Ride Finder map. You can grab these and make local copies from here: red, yellow, green. Put the images in a web-accessible place; you'll set the directory name later as $imagedir
.
Install the Source
Install the CharlottetownTransitMap.inc
file you check out into a web-accesible directory, and then modify the source to set the following:
-
$mysql_host
- host name of your MySQL server -
$mysql_user
- a MySQL user -
$mysql_passwd
- password for that MySQL user -
$mysql_database
- name of a MySQL database -
$GoogleAPIKey
- your Google Maps API Key -
$imagedir
- the base directory, web-accessible, where marker images are stored
Download the Route and Schedule Data
The route and schedule data -- information about intersections, routes, stops and schedule -- is kept four MySQL tables that you can grab a MySQL dump file for from the Subversion repository. You can check it out at:
svn://svn.reinvented.net/CharlottetownTransitMap/routedata
or
http://svn.reinvented.net/CharlottetownTransitMap/routedata
Import the MySQL Data
Once you have the chtown-transit-mysql.sql
file, you can simply:
mysql -u[user] -p[password] -h[hostname] [databasename] < chtown-transit-mysql.sql
Substitute your own user name, password, host name and database name. The result should be four MySQL tables: routes, stops, schedule and intersections.
Testing
Assuming all of the above went well, you should now be able to point your browser at the CharlottetownTransitMap.php
page and see something that resembles this demo page.