Skip to content

Commit

Permalink
Don't clip the points if we are binning
Browse files Browse the repository at this point in the history
  • Loading branch information
e-n-f committed Sep 28, 2024
1 parent ad68f89 commit 2a699f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1723,7 +1723,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 (!sametile && bins.size() == 0) {
// Clip to output tile

long long xmin = LLONG_MAX;
Expand Down

0 comments on commit 2a699f5

Please sign in to comment.