From 4136546b927f78a475cb36b442c051ecaadb605e Mon Sep 17 00:00:00 2001 From: Jacek Kowalski <Jacek@jacekk.info> Date: Mon, 27 Jan 2020 23:39:17 +0000 Subject: [PATCH] Show when the vehicles were last seen in TTSS --- config.php | 7 +++---- 1 files changed, 3 insertions(+), 4 deletions(-) diff --git a/config.php b/config.php index 3bb0f3a..3b1ce68 100644 --- a/config.php +++ b/config.php @@ -1,5 +1,4 @@ <?php -$tramTypes = new TramTypes(); $sources = [ 'bus' => [ 'gtfsrt' => 'ftp://zdmk.krakow.pl/VehiclePositions_A.pb', @@ -9,18 +8,18 @@ 'database' => 'mapping_A.sqlite3', 'result' => 'mapping_A.json', 'result_vehicles' => 'vehicles_A.html', - 'mapper' => new BusTypes(), + 'vehicle_types' => new BusTypes(), 'prefix' => 'b', ], 'tram' => [ - 'gtfsrt' => 'ftp://zdmk.krakow.pl/VehiclePositions_T.pb', + 'gtfsrt' => 'http://gtfs.ztp.krakow.pl/VehiclePositions_T.pb', 'gtfsrt_file' => 'VehiclePositions_T.pb', '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' => $tramTypes, + 'vehicle_types' => new TramTypes(), 'prefix' => 't', ], ]; -- Gitblit v1.9.1