Improved www.ttss.krakow.pl
Jacek Kowalski
2017-04-13 71ca71f861d036f3f3b9c3265ee963ce9cc77ad6
1
2
3
4
5
6
7
8
9
10
11
<?php
if(php_sapi_name() !== 'cli') die();
 
$json = file_get_contents('http://www.ttss.krakow.pl/internetservice/geoserviceDispatcher/services/stopinfo/stops?left=-648000000&bottom=-324000000&right=648000000&top=324000000');
$elements = json_decode($json, 1);
foreach($elements['stops'] as $element) {
    $stops[$element['shortName']] = $element['name'];
}
 
asort($stops);
var_export($stops);