From 18fdd5a66dae9b5c87750d2eefc52432a18da704 Mon Sep 17 00:00:00 2001 From: Jacek Kowalski <Jacek@jacekk.info> Date: Tue, 18 Jun 2019 14:43:09 +0000 Subject: [PATCH] GTFS RT file for trams was renamed to VehiclePositions_T.pb --- parse.php | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/parse.php b/parse.php index 51e3132..52c1177 100644 --- a/parse.php +++ b/parse.php @@ -16,7 +16,7 @@ 'mapper' => 'numToTypeB', ], 'tram' => [ - 'gtfsrt' => 'ftp://ztp.krakow.pl/VehiclePositions.pb', + '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_file' => 'vehicles_T.json', @@ -49,13 +49,13 @@ $mapper->loadTTSS($source['ttss_file']); $timeDifference = time() - $mapper->getTTSSDate(); - if(abs($timeDifference) > 60) { + if(abs($timeDifference) > 120) { throw new Exception('TTSS timestamp difference ('.$timeDifference.'s) is too high, aborting!'); } $mapper->loadGTFSRT($source['gtfsrt_file']); $timeDifference = time() - $mapper->getGTFSRTDate(); - if(abs($timeDifference) > 60) { + if(abs($timeDifference) > 120) { throw new Exception('GTFSRT timestamp difference ('.$timeDifference.'s) is too high, aborting!'); } -- Gitblit v1.9.1