| | |
| | | |
| | | $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', |
| | |
| | | $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!'); |
| | |
| | | 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...'); |