Skip to content

Commit

Permalink
Pass bin IDs through to the output (#266)
Browse files Browse the repository at this point in the history
* Pass bin IDs through to the output

* Update version and changelog
  • Loading branch information
e-n-f authored Sep 17, 2024
1 parent 84f6e88 commit 5342428
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 2.62.2

* Pass feature ID through with bins

# 2.62.1

* More work in progress on binning point features in overzoom
Expand Down
2 changes: 2 additions & 0 deletions clip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1338,6 +1338,8 @@ mvt_tile assign_to_bins(mvt_tile const &features, std::vector<mvt_layer> const &
mvt_feature outfeature;
outfeature.geometry = bin.geometry;
outfeature.type = bin.type;
outfeature.has_id = bin.has_id;
outfeature.id = bin.id;
a.outfeature = outlayer.features.size();

a.counter = counters.size();
Expand Down
Loading

0 comments on commit 5342428

Please sign in to comment.