From 7c5254b1e395c363ae07259cca5050609ce097be Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Thu, 18 Sep 2014 17:02:09 -0700 Subject: [PATCH] Add progress indicator for tile iteration too --- geojson.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/geojson.c b/geojson.c index ccfa43b..9e03477 100644 --- a/geojson.c +++ b/geojson.c @@ -374,11 +374,23 @@ void check(struct index *ix, long long n, char *metabase, unsigned *file_bbox) { y2 = file_bbox[3] >> (32 - z); } + long long total = (y2 - y1 + 1) * (x2 - x1 + 1); + long long seq = 0; + long long percent = -1; + + fprintf(stderr, "\n"); + unsigned x, y; for (y = y1; y <= y2; y++) { for (x = x1; x <= x2; x++) { int zz; + seq++; + if (100 * seq / total > percent) { + percent = 100 * seq / total; + fprintf(stderr, "%lld%% (%lld / %lld)\r", percent, seq, total); + } + for (zz = 0; zz <= MAX_ZOOM; zz++) { unsigned long long start, end;