From 326ad34b82e744b98d3341f3b70d64406f73ebc9 Mon Sep 17 00:00:00 2001 From: Jacek Kowalski <Jacek@jacekk.info> Date: Thu, 31 Jan 2019 13:35:54 +0000 Subject: [PATCH] Verify longitude and latitude are present before adding feature --- stops/download_stops.php | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/stops/download_stops.php b/stops/download_stops.php index 3a8227c..f0aef8a 100644 --- a/stops/download_stops.php +++ b/stops/download_stops.php @@ -9,4 +9,10 @@ } asort($stops); -var_export($stops); + +echo '<?php'."\n"; +echo '$stops = array ('."\n"; +foreach($stops as $id => $stop) { + echo ' '.str_pad($id, 4, ' ', STR_PAD_RIGHT).' => '.var_export($stop, TRUE).','."\n"; +} +echo ');'."\n"; -- Gitblit v1.9.1