mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-04-05 10:09:08 +00:00
Reindex features by their first coordinates so they coalesce better
This commit is contained in:
parent
9dab4b9fb6
commit
1cae0e85b3
6
tile.cc
6
tile.cc
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user