This repository has been archived on 2025-07-13. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
open-heraklion-bus/modules/data.php
2016-02-20 19:52:05 +02:00

5 lines
226 B
PHP

<?php
$routes = json_decode(file_get_contents("data/routes.json"), true);
$stops = json_decode(file_get_contents("data/stops.json"), true);
$buspositions = json_decode(file_get_contents("data/buspositions.json"), true);
?>