From 38b94713f26968630fd53b2ffda70f28d8c46c06 Mon Sep 17 00:00:00 2001 From: Jacek Kowalski <Jacek@jacekk.info> Date: Tue, 05 Nov 2019 08:27:14 +0000 Subject: [PATCH] Update GTFS FTP location (ztp -> zdmk) --- config.php | 24 +++++++----------------- 1 files changed, 7 insertions(+), 17 deletions(-) diff --git a/config.php b/config.php index d419565..3bb0f3a 100644 --- a/config.php +++ b/config.php @@ -1,39 +1,29 @@ <?php +$tramTypes = new TramTypes(); $sources = [ 'bus' => [ - 'gtfsrt' => 'ftp://ztp.krakow.pl/VehiclePositions_A.pb', + 'gtfsrt' => 'ftp://zdmk.krakow.pl/VehiclePositions_A.pb', 'gtfsrt_file' => 'VehiclePositions_A.pb', 'ttss' => 'http://ttss.mpk.krakow.pl/internetservice/geoserviceDispatcher/services/vehicleinfo/vehicles', 'ttss_file' => 'vehicles_A.json', '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' => 'ftp://zdmk.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