mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-04-04 17:49:06 +00:00
Bump version number
This commit is contained in:
parent
4638c6f273
commit
fa7a52d032
@ -1,3 +1,8 @@
|
||||
## 1.11.7
|
||||
|
||||
* Keep metadata together with geometry for features that don't span many tiles,
|
||||
to avoid extra memory load from indexing into a separate metadata file
|
||||
|
||||
## 1.11.6
|
||||
|
||||
* Reduce the size of critical data structures to reduce dynamic memory use
|
||||
|
@ -297,7 +297,7 @@ int serialize_geometry(json_object *geometry, json_object *properties, const cha
|
||||
bool inline_meta = true;
|
||||
// Don't inline metadata for features that will span several tiles at maxzoom
|
||||
if (g > 0 && (bbox[2] < bbox[0] || bbox[3] < bbox[1])) {
|
||||
fprintf(stderr, "Malformed bbox %llx,%llx,%llx,%llx\n", bbox[0], bbox[1], bbox[2], bbox[3]);
|
||||
fprintf(stderr, "Internal error: impossible feature bounding box %llx,%llx,%llx,%llx\n", bbox[0], bbox[1], bbox[2], bbox[3]);
|
||||
}
|
||||
if (bbox[2] - bbox[0] > (2LL << (32 - maxzoom)) || bbox[3] - bbox[1] > (2LL << (32 - maxzoom))) {
|
||||
inline_meta = false;
|
||||
|
2
main.cpp
2
main.cpp
@ -1393,7 +1393,7 @@ int read_input(std::vector<source> &sources, char *fname, const char *layername,
|
||||
progress_seq = indexpos / sizeof(struct index);
|
||||
|
||||
if (!quiet) {
|
||||
fprintf(stderr, "%lld features, %lld bytes of geometry, %lld bytes of metadata, %lld bytes of string pool\n", progress_seq, geompos, metapos, poolpos);
|
||||
fprintf(stderr, "%lld features, %lld bytes of geometry, %lld bytes of separate metadata, %lld bytes of string pool\n", progress_seq, geompos, metapos, poolpos);
|
||||
}
|
||||
|
||||
if (indexpos == 0) {
|
||||
|
@ -1 +1 @@
|
||||
#define VERSION "tippecanoe v1.11.6\n"
|
||||
#define VERSION "tippecanoe v1.11.7\n"
|
||||
|
Loading…
x
Reference in New Issue
Block a user