Skip to content

Commit

Permalink
remove future key
Browse files Browse the repository at this point in the history
  • Loading branch information
repeat committed Nov 24, 2015
1 parent 2bfdc8f commit e37e16d
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions hsr.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,7 @@
];

foreach ($stations as $station) {
list($id, $name, $zipcode, $address, $lat, $lon, $future) = $station;

if (1 == $future) {
continue;
}
list($id, $name, $zipcode, $address, $lat, $lon) = $station;

$geometry['coordinates'] = [(float) $lon, (float) $lat];
$properties = [
Expand Down

0 comments on commit e37e16d

Please sign in to comment.