mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-04-04 09:39:05 +00:00
Fix a bug that could cause the wrong features to be coalesced
This commit is contained in:
parent
9964784e77
commit
8230987405
@ -1,3 +1,9 @@
|
||||
## 1.27.1
|
||||
|
||||
* Fix a potential null pointer when parsing GeoJSON with bare geometries
|
||||
* Fix a bug that could cause the wrong features to be coalesced when
|
||||
input was parsed in parallel
|
||||
|
||||
## 1.27.0
|
||||
|
||||
* Add tippecanoe-json-tool for sorting and joining GeoJSON files
|
||||
|
File diff suppressed because one or more lines are too long
367
tests/coalesce-tract/tl_2010_06001_tract10.json
Normal file
367
tests/coalesce-tract/tl_2010_06001_tract10.json
Normal file
File diff suppressed because one or more lines are too long
203
tests/coalesce-tract/tl_2010_06075_tract10.json
Normal file
203
tests/coalesce-tract/tl_2010_06075_tract10.json
Normal file
File diff suppressed because one or more lines are too long
2
tile.cpp
2
tile.cpp
@ -186,7 +186,7 @@ int metacmp(int m1, const std::vector<long long> &keys1, const std::vector<long
|
||||
return type1 - type2;
|
||||
}
|
||||
int cmp = strcmp(s1, s2);
|
||||
if (s1 != s2) {
|
||||
if (cmp != 0) {
|
||||
return cmp;
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
#ifndef VERSION_HPP
|
||||
#define VERSION_HPP
|
||||
|
||||
#define VERSION "tippecanoe v1.27.0\n"
|
||||
#define VERSION "tippecanoe v1.27.1\n"
|
||||
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user