Factor out the JSON token reading loop

Conflicts:
	geojson.c
This commit is contained in:
Eric Fischer 2015-10-23 11:59:57 -07:00
parent 08a6607b0b
commit dfcdd03b19

View File

@ -864,14 +864,7 @@ int read_json(int argc, char **argv, char *fname, const char *layername, int max
jp = json_begin_file(fp);
int layer;
if (nlayers == 1) {
layer = 0;
} else {
layer = source;
}
parse_json(jp, reading, &seq, &metapos, &geompos, &indexpos, exclude, include, exclude_all, metafile, geomfile, indexfile, poolfile, treefile, fname, maxzoom, basezoom, layer, droprate, file_bbox);
parse_json(jp, reading, &seq, &metapos, &geompos, &indexpos, exclude, include, exclude_all, metafile, geomfile, indexfile, poolfile, treefile, fname, maxzoom, basezoom, source, droprate, file_bbox);
json_end(jp);
fclose(fp);