Bump version number

This commit is contained in:
Eric Fischer 2016-05-23 17:44:41 -07:00
parent 4638c6f273
commit fa7a52d032
4 changed files with 8 additions and 3 deletions

View File

@ -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

View File

@ -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;

View File

@ -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) {

View File

@ -1 +1 @@
#define VERSION "tippecanoe v1.11.6\n"
#define VERSION "tippecanoe v1.11.7\n"