From acdfe9e7d9486a613d4a1633b189f3f501ae6d09 Mon Sep 17 00:00:00 2001 From: Jacek Kowalski <Jacek@jacekk.info> Date: Sat, 14 Sep 2019 21:40:51 +0000 Subject: [PATCH] Change type of RF317 from GT8S to GT8N --- config.php | 20 +++++--------------- 1 files changed, 5 insertions(+), 15 deletions(-) diff --git a/config.php b/config.php index d419565..2746b59 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', @@ -8,32 +9,21 @@ 'database' => 'mapping_A.sqlite3', 'result' => 'mapping_A.json', 'result_vehicles' => 'vehicles_A.html', - 'mapper' => 'numToTypeB', + 'mapper' => new BusTypes(), 'prefix' => 'b', ], 'tram' => [ 'gtfsrt' => 'ftp://ztp.krakow.pl/VehiclePositions_T.pb', 'gtfsrt_file' => 'VehiclePositions_T.pb', - 'ttss' => 'http://www.ttss.krakow.pl/internetservice/geoserviceDispatcher/services/vehicleinfo/vehicles', + 'ttss' => 'http://www.ttss.krakow.pl/internetservice/geoserviceDispatcher/services/vehicleinfo/vehicles?positionType=CORRECTED', 'ttss_file' => 'vehicles_T.json', 'database' => 'mapping_T.sqlite3', 'result' => 'mapping_T.json', 'result_vehicles' => 'vehicles_T.html', - 'mapper' => 'numToTypeT', + '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', - 'result_vehicles' => 'vehicles_T.html', - 'mapper' => 'numToTypeT', - 'prefix' => 't', - ], -]; +]; foreach($sources as $name => &$source) { foreach(['gtfsrt_file', 'ttss_file', 'database', 'result', 'result_vehicles'] as $field) { -- Gitblit v1.9.1