Round distances to 2 decimal place kilometers
[busui.git] / stopList.php
blob:a/stopList.php -> blob:b/stopList.php
<?php <?php
include ('common.inc.php');  
function filterByFirstLetter($var) { /*
return $var[1][0] == $_REQUEST['firstLetter']; * Copyright 2010,2011 Alexander Sadleir
}  
function navbar() Licensed under the Apache License, Version 2.0 (the "License");
{ you may not use this file except in compliance with the License.
echo ' 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');
  $stops = Array();
   
  function navbar() {
  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">Timing Points</a></li>
<li><a href="stopList.php?suburbs=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> <li><a href="stopList.php?allstops=yes">All Stops</a></li>
</ul> </ul>
</div> </div>
'; ';
} }
   
// By suburb // By suburb
if (isset($_REQUEST['suburbs'])) { 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" >';
foreach ($suburbs as $suburb) { if (!isset($firstLetter)) {
if (!isset($_REQUEST['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&suburbs=yes\">$letter...</a></li>\n"; }
} } else {
} foreach ($suburbs as $suburb) {
else if (startsWith($suburb, $_REQUEST['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 { } else {
// Timing Points / All stops // Timing Points / All stops
if ($_REQUEST['allstops']) { if (isset($allstops)) {
$listType = 'allstops=yes'; $listType = 'allstops=yes';
$url = $APIurl . "/json/stops"; $stops = getStops();
include_header("All Stops", "stopList"); include_header("All Stops", "stopList");
navbar(); navbar();
timePlaceSettings(); } else if (isset($nearby)) {
} $listType = 'nearby=yes';
else if ($_REQUEST['nearby']) { include_header("Nearby Stops", "stopList", true, true);
$listType = 'nearby=yes'; trackEvent("Stop Lists", "Stops Nearby", $_SESSION['lat'] . "," . $_SESSION['lon']);
$url = $APIurl . "/json/neareststops?lat={$_SESSION['lat']}&lon={$_SESSION['lon']}&limit=15"; navbar();
include_header("Nearby Stops", "stopList"); if (!isset($_SESSION['lat']) || !isset($_SESSION['lat']) || $_SESSION['lat'] == "" || $_SESSION['lon'] == "") {
navbar(); placeSettings();
timePlaceSettings(true); include_footer();
} die();
else if ($_REQUEST['suburb']) { }
$suburb = filter_var($_REQUEST['suburb'], FILTER_SANITIZE_STRING); $stops = getNearbyStops($_SESSION['lat'], $_SESSION['lon'], 15);
$listType = "suburb=$suburb"; echo '<span class="content-secondary">';
$url = $APIurl . "/json/stopzonesearch?q=" . $suburb; $stopPositions[] = Array(
include_header("Stops in " . ucwords($suburb) , "stopList"); $_SESSION['lat'],
navbar(); $_SESSION['lon']
} );
else { foreach ($stops as $sub_stop) {
$url = $APIurl . "/json/timingpoints"; $stopPositions[] = Array(
include_header("Timing Points / Major Stops", "stopList"); $sub_stop["stop_lat"],
navbar(); $sub_stop["stop_lon"]
timePlaceSettings(); );
} }
echo ' <ul data-role="listview" data-filter="true" data-inset="true" >'; echo staticmap($stopPositions, 0, "iconb", true, true);
if (!isset($_REQUEST['firstLetter']) && !$_REQUEST['suburb'] && !$_REQUEST['nearby']) { placeSettings();
foreach (range('A', 'Z') as $letter) { echo '</span><span class="content-primary">';
echo "<li><a href=\"stopList.php?firstLetter=$letter&$listType\">$letter...</a></li>\n"; } else if (isset($suburb)) {
} $stops = getStopsBySuburb($suburb);
} include_header("Stops in " . ucwords($suburb), "stopList");
else { navbar();
$stops = json_decode(getPage($url)); trackEvent("Stop Lists", "Stops By Suburb", $suburb);
foreach ($stops as $key => $row) { } else {
$stopName[$key] = $row[1]; $stops = getStops(true, $firstLetter);
} include_header("Timing Points / Major Stops", "stopList");
// Sort the stops by name navbar();
array_multisort($stopName, SORT_ASC, $stops); }
if (!isset($_REQUEST['suburb']) && !isset($_REQUEST['nearby'])){ echo ' <ul data-role="listview" data-filter="true" data-inset="true" >';
$stops = array_filter($stops, "filterByFirstLetter"); if (!isset($firstLetter) && !isset($suburb) && !isset($nearby)) {
} foreach (range('A', 'Z') as $letter) {
$stopsGrouped = Array(); echo "<li><a href=\"stopList.php?firstLetter=$letter&amp;$listType\">$letter...</a></li>\n";
foreach ($stops as $key => $row) { }
if ((trim(preg_replace("/\(Platform.*/","",$stops[$key][1])) != trim(preg_replace("/\(Platform.*/","",$stops[$key + 1][1]))) || $key + 1 >= sizeof($stops)) { } else {
if (sizeof($stopsGrouped) > 0) { //var_dump($stops);
// print and empty grouped stops $stopsGrouped = Array();
// subsequent duplicates foreach ($stops as $key => $stop) {
$stopsGrouped["stop_ids"][] = $row[0]; if ((trim(preg_replace("/\(Platform.*/", "", $stops[$key]["stop_name"])) != trim(preg_replace("/\(Platform.*/", "", $stops[$key + 1]["stop_name"]))) || $key + 1 >= sizeof($stops)) {
echo '<li>'; if (sizeof($stopsGrouped) > 0) {
  // print and empty grouped stops
if (!startsWith($stopsGrouped['stop_codes'][0], "Wj")) echo '<img src="css/images/time.png" alt="Timing Point" class="ui-li-icon">'; // subsequent duplicates
echo '<a href="stop.php?stopids=' . implode(",", $stopsGrouped['stop_ids']) . '">'; $stopsGrouped["stop_ids"][] = $stop['stop_id'];
if (isset($_SESSION['lat']) && isset($_SESSION['lon'])) { echo '<li>';
echo '<span class="ui-li-count">' . distance($row[2], $row[3], $_SESSION['lat'], $_SESSION['lon'], true) . 'm away</span>'; if (!startsWith($stopsGrouped['stop_codes'][0], "Wj"))
} echo '<img src="css/images/time.png" alt="Timing Point: " class="ui-li-icon">';
echo bracketsMeanNewLine(trim(preg_replace("/\(Platform.*/","",$row[1])) . '(' . sizeof($stopsGrouped["stop_ids"]) . ' stops)'); echo '<a href="stop.php?stopids=' . implode(",", $stopsGrouped['stop_ids']) . '">';
echo "</a></li>\n"; 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>';
} }
else { echo bracketsMeanNewLine(trim(preg_replace("/\(Platform.*/", "", $stop['stop_name'])) . '(' . sizeof($stopsGrouped["stop_ids"]) . ' stops)');
// just a normal stop echo "</a></li>\n";
echo '<li>'; flush();
if (!startsWith($row[5], "Wj")) echo '<img src="css/images/time.png" alt="Timing Point" class="ui-li-icon">'; @ob_flush();
echo '<a href="stop.php?stopid=' . $row[0] . (startsWith($row[5], "Wj") ? '&stopcode=' . $row[5] : "") . '">'; $stopsGrouped = Array();
if (isset($_SESSION['lat']) && isset($_SESSION['lon'])) { } else {
echo '<span class="ui-li-count">' . distance($row[2], $row[3], $_SESSION['lat'], $_SESSION['lon'], true) . 'm away</span>'; // just a normal stop
} echo '<li>';
echo bracketsMeanNewLine($row[1]); if (!startsWith($stop['stop_code'], "Wj"))
echo "</a></li>\n"; echo '<img src="css/images/time.png" alt="Timing Point" class="ui-li-icon">';
} echo '<a href="stop.php?stopid=' . $stop['stop_id'] . (startsWith($stop['stop_code'], "Wj") ? '&amp;stopcode=' . $stop['stop_code'] : "") . '">';
  if (isset($_SESSION['lat']) && isset($_SESSION['lon'])) {
} else { echo '<span class="ui-li-count">' . distance($stop['stop_lat'], $stop['stop_lon'], $_SESSION['lat'], $_SESSION['lon'], true) . 'm away</span>';
// this is a duplicated line item }
if ($key - 1 <= 0 || (trim(preg_replace("/\(Platform.*/","",$stops[$key][1])) != trim(preg_replace("/\(Platform.*/","",$stops[$key - 1][1])))) { echo bracketsMeanNewLine($stop['stop_name']);
// first duplicate echo "</a></li>\n";
$stopsGrouped = Array( flush();
"name" => trim(preg_replace("/\(Platform.*/","",$row[1])), @ob_flush();
"stop_ids" => Array( }
$row[0] } else {
), // this is a duplicated line item
"stop_codes" => Array( if ($key - 1 <= 0 || (trim(preg_replace("/\(Platform.*/", "", $stops[$key]['stop_name'])) != trim(preg_replace("/\(Platform.*/", "", $stops[$key - 1]['stop_name'])))) {
$row[5] // first duplicate
) $stopsGrouped = Array(
); "name" => trim(preg_replace("/\(Platform.*/", "", $stop['stop_name'])),
} "stop_ids" => Array(
else { $stop['stop_id']
// subsequent duplicates ),
$stopsGrouped["stop_ids"][] = $row[0]; "stop_codes" => Array(
} $stop['stop_code']
} )
  );
} } else {
} // subsequent duplicates
echo '</ul>'; $stopsGrouped["stop_ids"][] = $stop['stop_id'];
  ;
  }
  }
  }
  }
  echo '</ul>';
  if (isset($nearby))
  echo '</span>';
} }
include_footer(); include_footer();
?> ?>