From 6b6842c72b28c1346ef501bc656ec3016d00e1c7 Mon Sep 17 00:00:00 2001 From: Jacek Kowalski <Jacek@jacekk.info> Date: Mon, 10 Jun 2019 20:49:08 +0000 Subject: [PATCH] Add procedure to match TTSS to GTFS via bus positions --- parse.php | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/parse.php b/parse.php index b3014b8..4651082 100644 --- a/parse.php +++ b/parse.php @@ -7,6 +7,8 @@ $sources = [ 'bus' => [ + 'gtfs' => 'ftp://ztp.krakow.pl/GTFS_KRK_A.zip', + 'gtfs_file' => 'GTFS_KRK_A.zip', 'gtfsrt' => 'ftp://ztp.krakow.pl/VehiclePositions_A.pb', 'gtfsrt_file' => 'VehiclePositions_A.pb', 'ttss' => 'http://91.223.13.70/internetservice/geoserviceDispatcher/services/vehicleinfo/vehicles', @@ -38,6 +40,7 @@ $mapper = new Mapper(); $mapper->loadTTSS($source['ttss_file']); + $timeDifference = time() - $mapper->getTTSSDate(); if(abs($timeDifference) > 60) { throw new Exception('TTSS timestamp difference ('.$timeDifference.'s) is too high, aborting!'); @@ -49,6 +52,8 @@ throw new Exception('GTFSRT timestamp difference ('.$timeDifference.'s) is too high, aborting!'); } + $mapper->loadGTFS($source['gtfs_file']); + $db = new Database($source['database']); $logger->info('Finding correct offset...'); -- Gitblit v1.9.1