Skip to content

Commit

Permalink
Remove buggy optimization to avoid reclipping in overzoom
Browse files Browse the repository at this point in the history
  • Loading branch information
e-n-f committed Oct 1, 2024
1 parent 66e5d66 commit 591dd5d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# 2.65.5
# 2.62.6

* Remove buggy optimization to avoid reclipping in tippecanoe-overzoom

# 2.62.5

* More aggressive binning when points fail the point-in-polygon test

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ overzoom-test: tippecanoe-overzoom
cmp tests/pbf/13-1310-3166.pbf.json.check tests/pbf/13-1310-3166.pbf.json
rm tests/pbf/13-1310-3166.pbf tests/pbf/13-1310-3166.pbf.json.check
# Make sure feature order is stable
./tippecanoe-overzoom --preserve-input-order -o tests/pbf/11-327-791-out.pbf tests/pbf/11-327-791.pbf 11/327/791 11/327/791
./tippecanoe-overzoom -b20 --preserve-input-order -o tests/pbf/11-327-791-out.pbf tests/pbf/11-327-791.pbf 11/327/791 11/327/791
./tippecanoe-decode tests/pbf/11-327-791.pbf 11 327 791 > tests/pbf/11-327-791.json
./tippecanoe-decode tests/pbf/11-327-791-out.pbf 11 327 791 > tests/pbf/11-327-791-out.json
cmp tests/pbf/11-327-791.json tests/pbf/11-327-791-out.json
Expand Down
2 changes: 1 addition & 1 deletion clip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1725,7 +1725,7 @@ std::string overzoom(std::vector<source_tile> const &tiles, int nz, int nx, int
}

// Don't clip here if we are binning, because we need to bin points in the buffer
if (!sametile && bins.size() == 0) {
if (bins.size() == 0) {
// Clip to output tile

long long xmin = LLONG_MAX;
Expand Down
2 changes: 1 addition & 1 deletion version.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#ifndef VERSION_HPP
#define VERSION_HPP

#define VERSION "v2.62.5"
#define VERSION "v2.62.6"

#endif

0 comments on commit 591dd5d

Please sign in to comment.