MyWay timeliness study data collection
[busui.git] / include / db / route-dao.inc.php
blob:a/include/db/route-dao.inc.php -> blob:b/include/db/route-dao.inc.php
<?php <?php
function getRoute($routeID)  
{ /*
global $conn; * Copyright 2010,2011 Alexander Sadleir
$query = "Select * from routes where route_id = :routeID LIMIT 1";  
debug($query, "database"); Licensed under the Apache License, Version 2.0 (the 'License');
$query = $conn->prepare($query); you may not use this file except in compliance with the License.
$query->bindParam(":routeID", $routeID); You may obtain a copy of the License at
$query->execute();  
if (!$query) { http://www.apache.org/licenses/LICENSE-2.0
databaseError($conn->errorInfo());  
return Array(); Unless required by applicable law or agreed to in writing, software
} distributed under the License is distributed on an 'AS IS' BASIS,
return $query->fetch(PDO::FETCH_ASSOC); WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
} See the License for the specific language governing permissions and
  limitations under the License.
function getRouteByFullName($routeFullName) */
{  
global $conn; function getRoute($routeID) {
$query = "Select * from routes where route_short_name||route_long_name = :routeFullName LIMIT 1"; global $conn;
debug($query, "database"); $query = 'Select * from routes where route_id = :routeID LIMIT 1';
$query = $conn->prepare($query); debug($query, 'database');
$query->bindParam(":routeFullName", $routeFullName); $query = $conn->prepare($query);
$query->execute(); $query->bindParam(':routeID', $routeID);
if (!$query) { $query->execute();
databaseError($conn->errorInfo()); if (!$query) {
return Array(); databaseError($conn->errorInfo());
} return Array();
return $query->fetch(PDO::FETCH_ASSOC); }
} return $query->fetch(PDO :: FETCH_ASSOC);
  }
function getRoutes()  
{ function getRoutesByShortName($routeShortName) {
global $conn; global $conn;
$query = "Select * from routes order by route_short_name;"; $query = 'Select distinct route_id, route_short_name from routes where route_short_name = :routeShortName';
debug($query, "database"); debug($query, 'database');
$query = $conn->prepare($query); $query = $conn->prepare($query);
$query->execute(); $query->bindParam(':routeShortName', $routeShortName);
if (!$query) { $query->execute();
databaseError($conn->errorInfo()); if (!$query) {
return Array(); databaseError($conn->errorInfo());
} return Array();
return $query->fetchAll(); }
} return $query->fetchAll();
function getRoutesByNumber($routeNumber = "") }
{  
global $conn; function getRouteHeadsigns($routeID) {
if ($routeNumber != "") { global $conn;
$query = "Select distinct routes.route_id,routes.route_short_name,routes.route_long_name,service_id from routes join trips on trips.route_id = $query = 'select stops.stop_name, trip_headsign, direction_id,max(service_id) as service_id, count(*)
routes.route_id join stop_times on stop_times.trip_id = trips.trip_id from routes join trips on trips.route_id = routes.route_id
where route_short_name = :routeNumber OR route_short_name LIKE :routeNumber2 order by route_short_name;"; join stop_times on stop_times.trip_id = trips.trip_id join stops on
} stop_times.stop_id = stops.stop_id where trips.route_id = :routeID
else { and stop_times.stop_sequence = 1 group by stops.stop_name, trip_headsign, direction_id having count(*) > 2';
$query = "SELECT DISTINCT route_short_name from routes order by route_short_name"; debug($query, 'database');
} $query = $conn->prepare($query);
debug($query, "database"); $query->bindParam(':routeID', $routeID);
$query = $conn->prepare($query); $query->execute();
if ($routeNumber != "") { if (!$query) {
$query->bindParam(":routeNumber", $routeNumber); databaseError($conn->errorInfo());
$routeNumber2 = "% ".$routeNumber; return Array();
$query->bindParam(":routeNumber2", $routeNumber2); }
} $results = $query->fetchAll();
$query->execute(); if (is_array($results)) {
if (!$query) { return $results;
databaseError($conn->errorInfo()); } else {
return Array(); return Array($results);
} }
return $query->fetchAll(); }
}  
function getRoutesByNumberSeries($routeNumberSeries = "") function getRouteDescription($routeID, $directionID) {
{ $trip = getRouteNextTrip($routeID, $directionID);
global $conn; $start = getTripStartingPoint($trip['trip_id']);
if (strlen($routeNumberSeries) == 1) { $end = getTripDestination($trip['trip_id']);
return getRoutesByNumber($routeNumberSeries); return 'From ' . $start['stop_name'] . ' to ' . $end['stop_name'];
} }
$seriesMin = substr($routeNumberSeries, 0, -1) . "0";  
$seriesMax = substr($routeNumberSeries, 0, -1) . "9"; function getRouteByFullName($routeFullName) {
$query = "Select distinct routes.route_id,routes.route_short_name,routes.route_long_name,service_id from routes join trips on trips.route_id = global $conn;
routes.route_id join stop_times on stop_times.trip_id = trips.trip_id where to_number(route_short_name, 'FM999') between :seriesMin and :seriesMax OR route_short_name LIKE :routeNumberSeries order by route_short_name;"; $query = 'Select * from routes where route_short_name||route_long_name = :routeFullName LIMIT 1';
debug($query, "database"); debug($query, 'database');
$query = $conn->prepare($query); $query = $conn->prepare($query);
$query->bindParam(":seriesMin", $seriesMin); $query->bindParam(':routeFullName', $routeFullName);
$query->bindParam(":seriesMax", $seriesMax); $query->execute();
$routeNumberSeries = "% ".substr($routeNumberSeries, 0, -1)."%"; if (!$query) {
$query->bindParam(":routeNumberSeries", $routeNumberSeries); databaseError($conn->errorInfo());
$query->execute(); return Array();
if (!$query) { }
databaseError($conn->errorInfo()); return $query->fetch(PDO :: FETCH_ASSOC);
return Array(); }
}  
return $query->fetchAll(); function getRoutes() {
} global $conn;
function getRouteNextTrip($routeID) $query = 'Select * from routes order by route_short_name;';
{ debug($query, 'database');
global $conn; $query = $conn->prepare($query);
$query = "select * from routes join trips on trips.route_id = routes.route_id $query->execute();
join stop_times on stop_times.trip_id = trips.trip_id where if (!$query) {
arrival_time > :currentTime and routes.route_id = :routeID order by databaseError($conn->errorInfo());
arrival_time limit 1"; return Array();
debug($query, "database"); }
$query = $conn->prepare($query); return $query->fetchAll();
$query->bindParam(":currentTime", current_time()); }
$query->bindParam(":routeID", $routeID);  
$query->execute(); function getRoutesByNumberSeries($routeNumberSeries = '') {
if (!$query) { global $conn;
databaseError($conn->errorInfo()); if (strlen($routeNumberSeries) == 1) {
return Array(); return getRoute($routeNumberSeries);
} }
$r = $query->fetch(PDO::FETCH_ASSOC); $seriesMin = substr($routeNumberSeries, 0, -1) . '0';
  $seriesMax = substr($routeNumberSeries, 0, -1) . '9';
// past last trip of the day special case $query = 'Select distinct routes.route_id,routes.route_short_name,routes.route_long_name,service_id from routes join trips on trips.route_id =
if (sizeof($r) < 16) { routes.route_id join stop_times on stop_times.trip_id = trips.trip_id where to_number(route_short_name, \'FM999\') between :seriesMin and :seriesMax OR route_short_name LIKE :routeNumberSeries order by route_short_name;';
$query = "select * from routes join trips on trips.route_id = routes.route_id debug($query, 'database');
join stop_times on stop_times.trip_id = trips.trip_id where routes.route_id = :routeID order by $query = $conn->prepare($query);
arrival_time DESC limit 1"; $query->bindParam(':seriesMin', $seriesMin);
debug($query, "database"); $query->bindParam(':seriesMax', $seriesMax);
$query = $conn->prepare($query); $routeNumberSeries = '% ' . substr($routeNumberSeries, 0, -1) . '%';
$query->bindParam(":routeID", $routeID); $query->bindParam(':routeNumberSeries', $routeNumberSeries);
$query->execute(); $query->execute();
if (!$query) { if (!$query) {
databaseError($conn->errorInfo()); databaseError($conn->errorInfo());
return Array(); return Array();
} }
  return $query->fetchAll();
$r = $query->fetch(PDO::FETCH_ASSOC); }
}  
return $r; function getRouteNextTrip($routeID, $directionID) {
} global $conn;
function getTimeInterpolatedRouteAtStop($routeID, $stop_id)  
{ $query = 'select routes.route_id,routes.route_url,direction_id,trips.trip_id,trip_headsign,departure_time,service_id from routes join trips on trips.route_id = routes.route_id
$nextTrip = getRouteNextTrip($routeID); join stop_times on stop_times.trip_id = trips.trip_id where arrival_time between :currentTime and :futureTime
if ($nextTrip['trip_id']) { and routes.route_id = :routeID and trips.direction_id = :directionID order by
foreach (getTimeInterpolatedTrip($nextTrip['trip_id']) as $tripStop) { arrival_time limit 1';
if ($tripStop['stop_id'] == $stop_id) return $tripStop; debug($query, 'database');
} $query = $conn->prepare($query);
} $query->bindParam(':currentTime', current_time());
return Array(); $futureTime = current_time(strtotime(current_time() . ' +2h'));
} if (date('h', strtotime(current_time()) > 22))
function getRouteTrips($routeID) $futureTime = '23:59:59';
{ $query->bindParam(':futureTime', $futureTime);
global $conn; $query->bindParam(':routeID', $routeID);
$query = "select routes.route_id,trips.trip_id,service_id,arrival_time, stop_id, stop_sequence from routes join trips on trips.route_id = routes.route_id $query->bindParam(':directionID', $directionID);
join stop_times on stop_times.trip_id = trips.trip_id where routes.route_id = :routeID and stop_sequence = '1' order by $query->execute();
arrival_time "; databaseError($conn->errorInfo());
debug($query, "database"); if (!$query) {
$query = $conn->prepare($query); databaseError($conn->errorInfo());
$query->bindParam(":routeID", $routeID); return Array();
$query->execute(); }
if (!$query) { $r = $query->fetch(PDO :: FETCH_ASSOC);
databaseError($conn->errorInfo()); return $r;
return Array(); }
}  
return $query->fetchAll(); function getRouteFirstTrip($routeID, $directionID) {
} global $conn;
function getRoutesByDestination($destination = "", $service_period = "")  
{ $query = 'select * from routes join trips on trips.route_id = routes.route_id
global $conn; join stop_times on stop_times.trip_id = trips.trip_id where routes.route_id = :routeID
if ($service_period == "") $service_period = service_period(); and trips.direction_id = :directionID order by
if ($destination != "") { arrival_time DESC limit 1';
$query = "SELECT DISTINCT trips.route_id,route_short_name,route_long_name, service_id debug($query, 'database');
FROM stop_times join trips on trips.trip_id = $query = $conn->prepare($query);
stop_times.trip_id join routes on trips.route_id = routes.route_id $query->bindParam(':routeID', $routeID);
WHERE route_long_name = :destination AND service_id=:service_period order by route_short_name";  
} $query->bindParam(':directionID', $directionID);
else { $query->execute();
$query = "SELECT DISTINCT route_long_name if (!$query) {
FROM stop_times join trips on trips.trip_id = databaseError($conn->errorInfo());
stop_times.trip_id join routes on trips.route_id = routes.route_id return Array();
WHERE service_id= :service_period order by route_long_name"; }
}  
debug($query, "database"); $r = $query->fetch(PDO :: FETCH_ASSOC);
$query = $conn->prepare($query); return $r;
$query->bindParam(":service_period", $service_period); }
if ($destination != "") $query->bindParam(":destination", $destination);  
$query->execute(); function getRouteAtStop($routeID, $directionID, $stop_id) {
if (!$query) { $nextTrip = getRouteNextTrip($routeID, $directionID);
databaseError($conn->errorInfo()); if ($nextTrip['trip_id']) {
return Array(); foreach (getTripStopTimes($nextTrip['trip_id']) as $tripStop) {
} if ($tripStop['stop_id'] == $stop_id)
return $query->fetchAll(); return $tripStop;
} }
function getRoutesBySuburb($suburb, $service_period = "") }
{ return Array();
if ($service_period == "") $service_period = service_period(); }
global $conn;  
$query = "SELECT DISTINCT service_id,trips.route_id,route_short_name,route_long_name function getRouteTrips($routeID, $directionID = '', $service_period = '') {
  global $conn;
  if ($service_period == '')
  $service_period = service_period();
  $service_ids = service_ids($service_period);
  $sidA = $service_ids[0];
  $sidB = $service_ids[1];
  $directionSQL = '';
  if ($directionID != '')
  $directionSQL = ' and direction_id = :directionID ';
  $query = 'select routes.route_id,trips.trip_id,service_id,arrival_time, stop_id, stop_sequence from routes join trips on trips.route_id = routes.route_id
  join stop_times on stop_times.trip_id = trips.trip_id where (service_id=:service_periodA OR service_id=:service_periodB)
  AND (routes.route_id = :routeID) ' . $directionSQL . ' and stop_sequence = \'1\' order by
  arrival_time ';
  debug($query, 'database');
  $query = $conn->prepare($query);
  $query->bindParam(':routeID', $routeID);
  $query->bindParam(':service_periodA', $sidA);
  $query->bindParam(':service_periodB', $sidB);
  if ($directionSQL != '')
  $query->bindParam(':directionID', $directionID);
  $query->execute();
  if (!$query) {
  databaseError($conn->errorInfo());
  return Array();
  }
  return $query->fetchAll();
  }
   
  function getRoutesByDestination($destination = '', $service_period = '') {
  global $conn;
  if ($service_period == '')
  $service_period = service_period();
  $service_ids = service_ids($service_period);
  $sidA = $service_ids[0];
  $sidB = $service_ids[1];
  if ($destination != '') {
  /* $query = 'SELECT DISTINCT trips.route_id,route_short_name,route_long_name, service_id
  FROM stop_times join trips on trips.trip_id =
  stop_times.trip_id join routes on trips.route_id = routes.route_id
  WHERE route_long_name = :destination AND (service_id=:service_periodA OR service_id=:service_periodB)
  order by route_short_name'; */
  $query = 'select route_id, direction_id, stop_name, b.trip_id, b.stop_sequence from (select route_id, direction_id, max(stop_sequence) as stop_sequence, max(a.trip_id) as trip_id from stop_times inner join (SELECT route_id, direction_id, max(trip_id) as trip_id
  from trips group by route_id,direction_id) as a on stop_times.trip_id = a.trip_id group by route_id, direction_id) as b inner join stop_times on b.trip_id = stop_times.trip_id inner join stops on stop_times.stop_id = stops.stop_id where stop_times.stop_sequence = b.stop_sequence and stop_name = :destination order by route_id;';
  } else {
  $query = 'select stop_name from (select route_id, direction_id, max(stop_sequence) as stop_sequence, max(a.trip_id) as trip_id from stop_times inner join (SELECT route_id, direction_id, max(trip_id) as trip_id
  from trips group by route_id,direction_id) as a on stop_times.trip_id = a.trip_id group by route_id, direction_id) as b inner join stop_times on b.trip_id = stop_times.trip_id inner join stops on stop_times.stop_id = stops.stop_id where stop_times.stop_sequence = b.stop_sequence group by stop_name order by stop_name;';
  }
  debug($query, 'database');
  $query = $conn->prepare($query);
   
  //$query->bindParam(':service_periodA', $sidA);
  //$query->bindParam(':service_periodB', $sidB);
  if ($destination != '')
  $query->bindParam(':destination', $destination);
  $query->execute();
  if (!$query) {
  databaseError($conn->errorInfo());
  return Array();
  }
  return $query->fetchAll();
  }
   
  function getRoutesBySuburb($suburb, $service_period = '') {
  if ($service_period == '')
  $service_period = service_period();
  $service_ids = service_ids($service_period);
  $sidA = $service_ids[0];
  $sidB = $service_ids[1];
   
  global $conn;
  $query = 'SELECT DISTINCT service_id,trips.route_id,route_short_name,route_long_name
FROM stop_times join trips on trips.trip_id = stop_times.trip_id FROM stop_times join trips on trips.trip_id = stop_times.trip_id
join routes on trips.route_id = routes.route_id join routes on trips.route_id = routes.route_id
join stops on stops.stop_id = stop_times.stop_id join stops on stops.stop_id = stop_times.stop_id
WHERE zone_id LIKE ':suburb AND service_id=:service_period ORDER BY route_short_name"; WHERE stop_desc LIKE :suburb AND (service_id=:service_periodA OR service_id=:service_periodB)
debug($query, "database"); ORDER BY route_short_name';
$query = $conn->prepare($query); debug($query, 'database');
$query->bindParam(":service_period", $service_period); $query = $conn->prepare($query);
$suburb = "%" . $suburb . ";%"; $query->bindParam(':service_periodA', $sidA);
$query->bindParam(":suburb", $suburb); $query->bindParam(':service_periodB', $sidB);
$query->execute(); $suburb = '%Suburb: %' . $suburb . '%';
if (!$query) { $query->bindParam(':suburb', $suburb);
databaseError($conn->errorInfo()); $query->execute();
return Array();  
} databaseError($conn->errorInfo());
return $query->fetchAll();  
} return $query->fetchAll();
function getRoutesNearby($lat, $lng, $limit = "", $distance = 500) }
{  
if ($service_period == "") $service_period = service_period(); function getRoutesNearby($lat, $lng, $limit = '', $distance = 500) {
if ($limit != "") $limitSQL = " LIMIT :limit "; // if ($service_period == '')
global $conn; $service_period = service_period();
$query = "SELECT service_id,trips.route_id,route_short_name,route_long_name,min(stops.stop_id) as stop_id, $service_ids = service_ids($service_period);
min(ST_Distance(position, ST_GeographyFromText('SRID=4326;POINT($lng $lat)'), FALSE)) as distance $sidA = $service_ids[0];
  $sidB = $service_ids[1];
  $limitSQL = '';
  if ($limit != '')
  $limitSQL = ' LIMIT :limit ';
  global $conn;
  $query = 'SELECT service_id,trips.route_id,trips.direction_id,route_short_name,route_long_name,min(stops.stop_id) as stop_id,
  min(ST_Distance(position, ST_GeographyFromText(\'SRID=4326;POINT($lng $lat)\'), FALSE)) as distance
FROM stop_times FROM stop_times
join trips on trips.trip_id = stop_times.trip_id join trips on trips.trip_id = stop_times.trip_id
join routes on trips.route_id = routes.route_id join routes on trips.route_id = routes.route_id
join stops on stops.stop_id = stop_times.stop_id join stops on stops.stop_id = stop_times.stop_id
WHERE service_id=:service_period WHERE (service_id=:service_periodA OR service_id=:service_periodB)
AND ST_DWithin(position, ST_GeographyFromText('SRID=4326;POINT($lng $lat)'), :distance, FALSE) AND ST_DWithin(position, ST_GeographyFromText(\'SRID=4326;POINT($lng $lat)\'), :distance, FALSE)
group by service_id,trips.route_id,route_short_name,route_long_name group by service_id,trips.route_id,trips.direction_id,route_short_name,route_long_name
order by distance $limitSQL"; order by distance '.$limitSQL;
debug($query, "database"); debug($query, 'database');
$query = $conn->prepare($query); $query = $conn->prepare($query);
$query->bindParam(":service_period", $service_period); $query->bindParam(':service_periodA', $sidA);
$query->bindParam(":distance", $distance); $query->bindParam(':service_periodB', $sidB);
if ($limit != "") $query->bindParam(":limit", $limit); $query->bindParam(':distance', $distance);
$query->execute(); if ($limit != '')
if (!$query) { $query->bindParam(':limit', $limit);
databaseError($conn->errorInfo()); $query->execute();
return Array(); if (!$query) {
} databaseError($conn->errorInfo());
return $query->fetchAll(); return Array();
} }
?> return $query->fetchAll();
  }