Reindex features by their first coordinates so they coalesce better

This commit is contained in:
Eric Fischer 2014-10-21 16:16:09 -07:00
parent 9dab4b9fb6
commit 1cae0e85b3

View File

@ -992,7 +992,11 @@ long long write_tile(struct index *start, struct index *end, char *metabase, uns
struct coalesce c;
c.type = t;
c.index = i->index;
if (geom.size() > 0) {
c.index = encode(geom[0].x, geom[0].y);
} else {
c.index = i->index;
}
c.geom = geom;
c.metasrc = meta;
c.coalesced = false;