Report every 10000 features on input, since parsing GeoJSON is slow.

This commit is contained in:
Eric Fischer 2014-10-09 12:23:43 -07:00
parent 389c89bdf9
commit 65ec829de6

View File

@ -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++;
}