| | |
| | | <?php |
| | | $tramTypes = new TramTypes(); |
| | | $sources = [ |
| | | 'bus' => [ |
| | | 'gtfsrt' => 'ftp://ztp.krakow.pl/VehiclePositions_A.pb', |
| | |
| | | 'database' => 'mapping_A.sqlite3', |
| | | 'result' => 'mapping_A.json', |
| | | 'result_vehicles' => 'vehicles_A.html', |
| | | 'mapper' => 'numToTypeB', |
| | | 'mapper' => new BusTypes(), |
| | | 'prefix' => 'b', |
| | | ], |
| | | 'tram' => [ |
| | |
| | | 'database' => 'mapping_T.sqlite3', |
| | | 'result' => 'mapping_T.json', |
| | | 'result_vehicles' => 'vehicles_T.html', |
| | | 'mapper' => 'numToTypeT', |
| | | 'mapper' => $tramTypes, |
| | | 'prefix' => 't', |
| | | ], |
| | | 'tram2' => [ |
| | |
| | | 'database' => 'mapping_T.sqlite3', |
| | | 'result' => 'mapping_T.json', |
| | | 'result_vehicles' => 'vehicles_T.html', |
| | | 'mapper' => 'numToTypeT', |
| | | 'mapper' => $tramTypes, |
| | | 'prefix' => 't', |
| | | ], |
| | | ]; |