From f6f79198b6467435fd7caccd2067eb0a29c97787 Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Fri, 21 Jun 2019 22:58:16 +0000
Subject: [PATCH] Move mapping creation to a function in lib/output.php
---
lib/mapper.php | 11 +++++++++--
1 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/lib/mapper.php b/lib/mapper.php
index 42abecf..a36b4ef 100644
--- a/lib/mapper.php
+++ b/lib/mapper.php
@@ -34,13 +34,16 @@
if(!isset($vehicle->name) || !$vehicle->name) continue;
if(!isset($vehicle->latitude) || !$vehicle->latitude) continue;
if(!isset($vehicle->longitude) || !$vehicle->longitude) continue;
- foreach($this->specialNames as $name) {
- if(substr($vehicle->name, -strlen($name)) == $name) {
+ list($line, $direction) = explode(' ', $vehicle->name, 2);
+ foreach($this->specialNames as $specialName) {
+ if(substr($vehicle->name, -strlen($specialName)) == $specialName) {
continue;
}
}
$this->ttssTrips[(string)$vehicle->tripId] = [
'id' => (string)$vehicle->id,
+ 'line' => $line,
+ 'direction' => $direction,
'latitude' => (float)$vehicle->latitude / 3600000.0,
'longitude' => (float)$vehicle->longitude / 3600000.0,
];
@@ -52,6 +55,10 @@
return $this->ttssDate / 1000.0;
}
+ public function getTTSSTrips() {
+ return $this->ttssTrips;
+ }
+
public function loadGTFSRT($file) {
$data = file_get_contents($file);
$feed = new FeedMessage();
--
Gitblit v1.9.1