Map on nearby stops
[busui.git] / stopList.php
blob:a/stopList.php -> blob:b/stopList.php
<?php <?php
   
  /*
  * Copyright 2010,2011 Alexander Sadleir
   
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at
   
  http://www.apache.org/licenses/LICENSE-2.0
   
  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  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.
  */
include ('include/common.inc.php'); include ('include/common.inc.php');
$stops = Array(); $stops = Array();
function navbar()  
{ function navbar() {
echo ' echo '
<div data-role="navbar"> <div data-role="navbar">
<ul> <ul>
<li><a href="stopList.php">Timing Points</a></li> <li><a href="stopList.php">Stops by Name</a></li>
<li><a href="stopList.php?bysuburbs=yes">By Suburb</a></li> <li><a href="stopList.php?bysuburbs=yes">By Suburb</a></li>
<li><a href="stopList.php?nearby=yes">Nearby Stops</a></li> <li><a href="stopList.php?nearby=yes">Nearby Stops</a></li>
<li><a href="stopList.php?allstops=yes">All Stops</a></li>  
</ul> </ul>
</div> </div>
'; ';
} }
   
// By suburb // By suburb
if (isset($bysuburbs)) { if (isset($bysuburbs)) {
include_header("Stops by Suburb", "stopList"); include_header("Stops by Suburb", "stopList");
navbar(); navbar();
echo ' <ul data-role="listview" data-filter="true" data-inset="true" >'; echo ' <ul data-role="listview" data-filter="true" data-inset="true" >';
if (!isset($firstLetter)) { if (!isset($firstLetter)) {
foreach (range('A', 'Z') as $letter) { foreach (range('A', 'Z') as $letter) {
echo "<li><a href=\"stopList.php?firstLetter=$letter&amp;bysuburbs=yes\">$letter...</a></li>\n"; echo "<li><a href=\"stopList.php?firstLetter=$letter&amp;bysuburbs=yes\">$letter...</a></li>\n";
} }
} } else {
else { foreach ($suburbs as $suburb) {
foreach ($suburbs as $suburb) { if (startsWith($suburb, $firstLetter)) {
if (startsWith($suburb, $firstLetter)) { echo '<li><a href="stopList.php?suburb=' . urlencode($suburb) . '">' . $suburb . '</a></li>';
echo '<li><a href="stopList.php?suburb=' . urlencode($suburb) . '">' . $suburb . '</a></li>'; }
} }
} }
} echo '</ul>';
echo '</ul>'; } else {
} // Timing Points / All stops
else { if (isset($nearby)) {
// Timing Points / All stops $listType = 'nearby=yes';
if (isset($allstops)) { include_header("Nearby Stops", "stopList", true, true);
$listType = 'allstops=yes'; trackEvent("Stop Lists", "Stops Nearby", $_SESSION['lat'] . "," . $_SESSION['lon']);
$stops = getStops(); navbar();
include_header("All Stops", "stopList"); if (!isset($_SESSION['lat']) || !isset($_SESSION['lat']) || $_SESSION['lat'] == "" || $_SESSION['lon'] == "") {
navbar(); placeSettings();
timePlaceSettings(); include_footer();
} die();
else if (isset($nearby)) { }
$listType = 'nearby=yes'; $stops = getNearbyStops($_SESSION['lat'], $_SESSION['lon'], 15);
include_header("Nearby Stops", "stopList", true, true); echo '<span class="content-secondary">';
trackEvent("Stop Lists", "Stops Nearby", $_SESSION['lat'] . "," . $_SESSION['lon']); $stopPositions[] = Array(
navbar(); $_SESSION['lat'],
if (!isset($_SESSION['lat']) || !isset($_SESSION['lat']) || $_SESSION['lat'] == "" || $_SESSION['lon'] == "") { $_SESSION['lon']
timePlaceSettings(true); );
include_footer(); foreach ($stops as $sub_stop) {
die(); $stopPositions[] = Array(
} $sub_stop["stop_lat"],
$stops = getNearbyStops($_SESSION['lat'], $_SESSION['lon'], 15); $sub_stop["stop_lon"]
echo '<span class="content-secondary">'; );
$stopPositions[] = Array( }
$_SESSION['lat'], echo staticmap($stopPositions, true, true);
$_SESSION['lon'] placeSettings();
); echo '</span><span class="content-primary">';
foreach ($stops as $sub_stop) { } else if (isset($suburb)) {
$stopPositions[] = Array( $stops = getStopsBySuburb($suburb);
$sub_stop["stop_lat"], include_header("Stops in " . ucwords($suburb), "stopList");
$sub_stop["stop_lon"] navbar();
); trackEvent("Stop Lists", "Stops By Suburb", $suburb);
} } else {
echo staticmap($stopPositions, 0, "iconb", true, true); $listType = 'allstops=yes';
timePlaceSettings(true); $stops = getStops($firstLetter);
echo '</span><span class="content-primary">'; include_header("Stops by Name", "stopList");
} navbar();
else if (isset($suburb)) { }
$stops = getStopsBySuburb($suburb); echo ' <ul data-role="listview" data-filter="true" data-inset="true" >';
include_header("Stops in " . ucwords($suburb) , "stopList"); if (!isset($firstLetter) && !isset($suburb) && !isset($nearby)) {
navbar(); foreach (range('A', 'Z') as $letter) {
trackEvent("Stop Lists", "Stops By Suburb", $suburb); echo "<li><a href=\"stopList.php?firstLetter=$letter&amp;$listType\">$letter...</a></li>\n";
} }
else { } else {
$stops = getStops(true, $firstLetter); //var_dump($stops);
include_header("Timing Points / Major Stops", "stopList"); $stopsGrouped = Array();
navbar(); foreach ($stops as $key => $stop) {
timePlaceSettings(); if (stopCompare($stops[$key]["stop_name"])
} != stopCompare($stops[$key + 1]["stop_name"])
echo ' <ul data-role="listview" data-filter="true" data-inset="true" >'; || $key + 1 >= sizeof($stops)) {
if (!isset($firstLetter) && !isset($suburb) && !isset($nearby)) { if (sizeof($stopsGrouped) > 0) {
foreach (range('A', 'Z') as $letter) { // print and empty grouped stops
echo "<li><a href=\"stopList.php?firstLetter=$letter&amp;$listType\">$letter...</a></li>\n"; // subsequent duplicates
} $stopsGrouped["stop_ids"][] = $stop['stop_id'];
} echo '<li>';
else { echo '<a href="stop.php?stopids=' . implode(",", $stopsGrouped['stop_ids']) . '">';
//var_dump($stops); if (isset($_SESSION['lat']) && isset($_SESSION['lon'])) {
$stopsGrouped = Array(); echo '<span class="ui-li-count">' . distance($stop['stop_lat'], $stop['stop_lon'], $_SESSION['lat'], $_SESSION['lon'], true) . 'm away</span>';
foreach ($stops as $key => $stop) { }
if ((trim(preg_replace("/\(Platform.*/", "", $stops[$key]["stop_name"])) != trim(preg_replace("/\(Platform.*/", "", $stops[$key + 1]["stop_name"]))) || $key + 1 >= sizeof($stops)) { echo stopGroupTitle($stop['stop_name'],$stop['stop_desc']) . '<br><small>' . sizeof($stopsGrouped["stop_ids"]) . ' stops</small>';
if (sizeof($stopsGrouped) > 0) { echo "</a></li>\n";
// print and empty grouped stops flush();
// subsequent duplicates @ob_flush();
$stopsGrouped["stop_ids"][] = $stop['stop_id']; $stopsGrouped = Array();
echo '<li>'; } else {
if (!startsWith($stopsGrouped['stop_codes'][0], "Wj")) echo '<img src="css/images/time.png" alt="Timing Point: " class="ui-li-icon">'; // just a normal stop
echo '<a href="stop.php?stopids=' . implode(",", $stopsGrouped['stop_ids']) . '">'; echo '<li>';
if (isset($_SESSION['lat']) && isset($_SESSION['lon'])) { echo '<a href="stop.php?stopid=' . $stop['stop_id'] . '&amp;stopcode=' . $stop['stop_code'] . '">';
echo '<span class="ui-li-count">' . distance($stop['stop_lat'], $stop['stop_lon'], $_SESSION['lat'], $_SESSION['lon'], true) . 'm away</span>'; if (isset($_SESSION['lat']) && isset($_SESSION['lon'])) {
} echo '<span class="ui-li-count">' . distance($stop['stop_lat'], $stop['stop_lon'], $_SESSION['lat'], $_SESSION['lon'], true) . 'm away</span>';
echo bracketsMeanNewLine(trim(preg_replace("/\(Platform.*/", "", $stop['stop_name'])) . '(' . sizeof($stopsGrouped["stop_ids"]) . ' stops)'); }
echo "</a></li>\n"; echo $stop['stop_name'];
flush(); echo "</a></li>\n";
@ob_flush(); flush();
$stopsGrouped = Array(); @ob_flush();
} }
else { } else {
// just a normal stop // this is a duplicated line item
echo '<li>'; if ($key - 1 <= 0 || stopCompare($stops[$key]['stop_name']) != stopCompare($stops[$key - 1]['stop_name'])) {
if (!startsWith($stop['stop_code'], "Wj")) echo '<img src="css/images/time.png" alt="Timing Point" class="ui-li-icon">'; // first duplicate
echo '<a href="stop.php?stopid=' . $stop['stop_id'] . (startsWith($stop['stop_code'], "Wj") ? '&amp;stopcode=' . $stop['stop_code'] : "") . '">'; $stopsGrouped = Array(
if (isset($_SESSION['lat']) && isset($_SESSION['lon'])) { "name" => trim(preg_replace("/\(Platform.*/", "", $stop['stop_name'])),
echo '<span class="ui-li-count">' . distance($stop['stop_lat'], $stop['stop_lon'], $_SESSION['lat'], $_SESSION['lon'], true) . 'm away</span>'; "stop_ids" => Array(
} $stop['stop_id']
echo bracketsMeanNewLine($stop['stop_name']); ),
echo "</a></li>\n"; "stop_codes" => Array(
flush(); $stop['stop_code']
@ob_flush(); )
} );
} } else {
else { // subsequent duplicates
// this is a duplicated line item $stopsGrouped["stop_ids"][] = $stop['stop_id'];
if ($key - 1 <= 0 || (trim(preg_replace("/\(Platform.*/", "", $stops[$key]['stop_name'])) != trim(preg_replace("/\(Platform.*/", "", $stops[$key - 1]['stop_name'])))) {  
// first duplicate }
$stopsGrouped = Array( }
"name" => trim(preg_replace("/\(Platform.*/", "", $stop['stop_name'])) , }
"stop_ids" => Array( }
$stop['stop_id'] echo '</ul>';
) , if (isset($nearby))
"stop_codes" => Array( echo '</span>';
$stop['stop_code']  
)  
);  
}  
else {  
// subsequent duplicates  
$stopsGrouped["stop_ids"][] = $stop['stop_id'];;  
}  
}  
}  
}  
echo '</ul>';  
if (isset($nearby)) echo '</span>';  
} }
include_footer(); include_footer();
?> ?>