--- a/trip.php +++ b/trip.php @@ -1,96 +1,98 @@ midnight_seconds()) { - $tripid = $trip[1]; - break; - } - } - if ($tripid == 0) $tripid = $routetrips[0][1]; +if (isset($routeid) && !isset($tripid)) { + $trip = getRouteNextTrip($routeid); + $tripid = $trip['trip_id']; } -$url = $APIurl . "/json/triprows?trip=" . $tripid; -$trips = array_flatten(json_decode(getPage($url))); -if (sizeof($routetrips) == 0) { - $routeid = $trips[1]->route_id; - $url = $APIurl . "/json/routetrips?route_id=" . $trips[1]->route_id; - $routetrips = json_decode(getPage($url)); +else { + $trip = getTrip($tripid); + $routeid = $trip["route_id"]; } -include_header("Stops on " . $trips[1]->route_short_name . ' ' . $trips[1]->route_long_name, "trip"); -$url = $APIurl . "/json/tripstoptimes?trip=" . $tripid; -$json = json_decode(getPage($url)); -$stops = $json[0]; -$times = $json[1]; -$viaPoints = Array(); -foreach ($stops as $stop) { - if (!startsWith($stop[5], "Wj")) { - $viaPoints[] = $stop[1]; +$routetrips = getRouteTrips($routeid); +include_header("Stops on " . $trip['route_short_name'] . ' ' . $trip['route_long_name'], "trip"); +trackEvent("Route/Trip View", "View Route", $trip['route_short_name'] . ' ' . $trip['route_long_name'], $routeid); +echo ''; +echo 'View Original Timetable/Map'; +echo '

Via:

' . viaPointNames($tripid) . ''; +echo '

Other Trips:

'; +foreach (getRouteTrips($routeid) as $othertrip) { + echo '' . str_replace(" ", ":00", str_replace(":00", " ", $othertrip['arrival_time'])) . ' '; +} +flush(); +@ob_flush(); +echo '

Other directions/timing periods:

'; +$otherDir = 0; +foreach (getRoutesByNumber($trip['route_short_name']) as $row) { + if ($row['route_id'] != $routeid) { + echo '' . $row['route_long_name'] . ' (' . ucwords($row['service_id']) . ') '; + $otherDir++; } } -echo '

Via:

' . implode(", ", $viaPoints) . '

'; -echo '

Other Trips:

'; -foreach ($routetrips as $othertrip) { - echo '' . midnight_seconds_to_time($othertrip[0]) . ' '; -} -echo '

Other directions/timing periods:

'; -$url = $APIurl . "/json/routesearch?routeshortname=" . $trips[1]->route_short_name; -$json = json_decode(getPage($url)); -foreach ($json as $row) { - if ($row[0] != $routeid) echo '' . $row[2] . ' (' . ucwords($row[3]) . ') '; -} +if ($otherDir == 0) echo "None"; +echo '
'; +flush(); +@ob_flush(); echo ' '; +echo ''; include_footer(); ?>