From 15881f5702780b5cd0cc4053f0f2c26e4ae124f3 Mon Sep 17 00:00:00 2001 From: Jacek Kowalski <Jacek@jacekk.info> Date: Fri, 01 Feb 2019 00:35:27 +0000 Subject: [PATCH] Ignore due to incorrect depot markings in the data --- parse.php | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/parse.php b/parse.php index afa57b0..db165c7 100644 --- a/parse.php +++ b/parse.php @@ -118,7 +118,8 @@ $data = numToTypeB($gtfsTrip['id']); $num = $gtfsTrip['num']; if($data['num'] != $num) { - fwrite(STDERR, 'Got '.$num.', database has '.$data['num']."\n"); + // Ignore due to incorrect depot markings in the data + //fwrite(STDERR, 'Got '.$num.', database has '.$data['num']."\n"); } $result[$jsonTripId] = $data; } -- Gitblit v1.9.1