From 8b3aced077678297db953da7a9478b58c659060d Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Sun, 28 Jul 2019 21:31:08 +0000
Subject: [PATCH] Add new bus DN005 (Solaris Urbino 18 III Electric)

---
 config.php |   24 +++++++++++-------------
 1 files changed, 11 insertions(+), 13 deletions(-)

diff --git a/config.php b/config.php
index 2982b7e..8cad859 100644
--- a/config.php
+++ b/config.php
@@ -1,4 +1,5 @@
 <?php
+$tramTypes = new TramTypes();
 $sources = [
 	'bus' => [
 		'gtfsrt' => 'ftp://ztp.krakow.pl/VehiclePositions_A.pb',
@@ -7,7 +8,9 @@
 		'ttss_file' => 'vehicles_A.json',
 		'database' => 'mapping_A.sqlite3',
 		'result' => 'mapping_A.json',
-		'mapper' => 'numToTypeB',
+		'result_vehicles' => 'vehicles_A.html',
+		'mapper' => new BusTypes(),
+		'prefix' => 'b',
 	],
 	'tram' => [
 		'gtfsrt' => 'ftp://ztp.krakow.pl/VehiclePositions_T.pb',
@@ -16,23 +19,18 @@
 		'ttss_file' => 'vehicles_T.json',
 		'database' => 'mapping_T.sqlite3',
 		'result' => 'mapping_T.json',
-		'mapper' => 'numToTypeT',
+		'result_vehicles' => 'vehicles_T.html',
+		'mapper' => $tramTypes,
+		'prefix' => 't',
 	],
-	'tram2' => [
-		'gtfsrt' => 'ftp://ztp.krakow.pl/VehiclePositions.pb',
-		'gtfsrt_file' => 'VehiclePositions_T.pb',
-		'ttss' => 'http://www.ttss.krakow.pl/internetservice/geoserviceDispatcher/services/vehicleinfo/vehicles',
-		'ttss_file' => 'vehicles_T.json',
-		'database' => 'mapping_T.sqlite3',
-		'result' => 'mapping_T.json',
-		'mapper' => 'numToTypeT',
-	],
-]; 
+];
 
 foreach($sources as $name => &$source) {
-	foreach(['gtfsrt_file', 'ttss_file', 'database', 'result'] as $field) {
+	foreach(['gtfsrt_file', 'ttss_file', 'database', 'result', 'result_vehicles'] as $field) {
 		$source[$field] = __DIR__.'/data/'.$source[$field];
 	}
+	
 	$source['result_temp'] = $source['result'].'.tmp';
+	$source['result_vehicles_temp'] = $source['result_vehicles'].'.tmp';
 }
 unset($source);

--
Gitblit v1.9.1