Skip to content
Snippets Groups Projects
Commit 3fbb3ce6 authored by Anton Sarukhanov's avatar Anton Sarukhanov
Browse files

fixes

parent d443fd0b
No related branches found
No related tags found
No related merge requests found
## Rutgers Bus Map
### Installation
* Copy working MySQL DB
* Move daemon to /etc/init.d/busmap and customize
* # pear install system_daemon
......@@ -16,7 +16,7 @@ if ($_GET['command'] == "vehicleLocations") {
$db = dbc();
// MAX age of a bus location to return
$maxAge = 60;
$maxAge = 120;
$time = 0;
if (isset($_GET['t'])) $time = $db->real_escape_string((int)$_GET['t']);
......@@ -131,4 +131,4 @@ function cleanRouteName($name) {
return $name;
}
?>
\ No newline at end of file
?>
......@@ -27,7 +27,7 @@ $fetchData = array(
"vehicleLocations" => array(
"url" => "http://webservices.nextbus.com/service/publicXMLFeed?command=vehicleLocations&a=rutgers&t=0",
"refetch" => 3, // only fetch if our data is this stale
"dropStale" => 60, // data older than this will be wiped
"dropStale" => 120, // data older than this will be wiped
"dbQueries" => function($dbConn, $xml) { // do things and return an array of database queries, or false.
$queries = array("TRUNCATE TABLE `vehicleLocations`");
......@@ -94,4 +94,4 @@ function sanitize($string) {
return preg_replace($pattern,"",$string);
}
?>
\ No newline at end of file
?>
......@@ -19,10 +19,10 @@
PATH=/sbin:/usr/sbin:/bin:/usr/bin
DESC="RU Bus Map"
NAME=busmapDaemon.php
DAEMON=/home/anton/www/rutge.rs/cron/busmapDaemon.php
DAEMON=/var/www/rutge.rs/cron/busmapDaemon.php
DAEMON_ARGS=""
PIDFILE=/var/run/busmap/busmap.pid
SCRIPTNAME=/etc/init.d/busmapDaemon.php
SCRIPTNAME=/etc/init.d/busmap
# Exit if the package is not installed
[ -x "$DAEMON" ] || exit 0
......
......@@ -330,7 +330,7 @@ function updateMapVehicles(routes,vehicles) {
window.busMarkers[vehicles[i]['routeTag']][i] = L.marker([vehicles[i]['lat'], vehicles[i]['lon']], {
icon: L.icon({
iconUrl: 'https://busmap.antsar-static.com/img/bus.png',
iconUrl: 'https://rutgers.antsar-static.com/img/bus.png',
iconSize: [21,25],
iconAnchor: [10,12],
}),
......@@ -387,4 +387,4 @@ function ol( object ) {
}
}
return length;
};
\ No newline at end of file
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment