From 65ec829de661b772fbda3ec1966d28f477b50603 Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Thu, 9 Oct 2014 12:23:43 -0700 Subject: [PATCH] Report every 10000 features on input, since parsing GeoJSON is slow. --- geojson.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/geojson.c b/geojson.c index ed1a234..edba8de 100644 --- a/geojson.c +++ b/geojson.c @@ -441,8 +441,8 @@ void read_json(FILE *f, char *fname, char *layername, int maxzoom, int minzoom, } } - if (seq % 100000 == 0) { - fprintf(stderr, "Read %.1f million features\r", seq / 1000000.0); + if (seq % 10000 == 0) { + fprintf(stderr, "Read %.2f million features\r", seq / 1000000.0); } seq++; }