mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-04-05 10:09:08 +00:00
Much faster at low zooms to check for duplicates before simplifying
This commit is contained in:
parent
be94bd0dd5
commit
e0826a12c6
13
tile.cc
13
tile.cc
@ -366,8 +366,13 @@ long long write_tile(struct index *start, struct index *end, char *metabase, uns
|
||||
|
||||
struct index *i;
|
||||
for (i = start; i < end; i++) {
|
||||
int t;
|
||||
struct pool_val *pv = pool_long_long(&dup, &i->fpos, 0);
|
||||
if (pv->n == 0) {
|
||||
continue;
|
||||
}
|
||||
pv->n = 0;
|
||||
|
||||
int t;
|
||||
char *meta = metabase + i->fpos;
|
||||
deserialize_int(&meta, &t);
|
||||
|
||||
@ -415,12 +420,6 @@ long long write_tile(struct index *start, struct index *end, char *metabase, uns
|
||||
to_tile_scale(geom, z, line_detail);
|
||||
|
||||
if (t == VT_POINT || to_feature(geom, NULL)) {
|
||||
struct pool_val *pv = pool_long_long(&dup, &i->fpos, 0);
|
||||
if (pv->n == 0) {
|
||||
continue;
|
||||
}
|
||||
pv->n = 0;
|
||||
|
||||
struct coalesce c;
|
||||
|
||||
c.type = t;
|
||||
|
Loading…
x
Reference in New Issue
Block a user