From 2a699f5c222eda0378ef4a807424b6ecc75778dc Mon Sep 17 00:00:00 2001 From: Erica Fischer Date: Sat, 28 Sep 2024 13:30:33 -0700 Subject: [PATCH] Don't clip the points if we are binning --- clip.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clip.cpp b/clip.cpp index 2c6d5c4f..db826d61 100644 --- a/clip.cpp +++ b/clip.cpp @@ -1723,7 +1723,7 @@ std::string overzoom(std::vector 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;