[geos-commits] [SCM] GEOS branch main updated. 555c572874bbe44fdc4400da282faaa012c5f3ea
git at osgeo.org
git at osgeo.org
Mon Sep 29 23:50:36 PDT 2025
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GEOS".
The branch, main has been updated
via 555c572874bbe44fdc4400da282faaa012c5f3ea (commit)
from 69cce6b85195d4010e5b066f62a4c1137da92173 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 555c572874bbe44fdc4400da282faaa012c5f3ea
Author: Daniel Baston <dbaston at gmail.com>
Date: Tue Sep 30 02:49:40 2025 -0400
GridIntersection: Fix crash for certain polygons outside grid extent
diff --git a/src/operation/grid/Grid.cpp b/src/operation/grid/Grid.cpp
index 73a036ec9..28b84c709 100644
--- a/src/operation/grid/Grid.cpp
+++ b/src/operation/grid/Grid.cpp
@@ -63,7 +63,7 @@ Grid<infinite_extent>::getCellEnvelope(size_t row, size_t col) const
}
if (row == 0) {
- cell_ymax = std::max(xmax() + PADDED_CELL_SIZE, m_domain.getMaxX());
+ cell_ymax = std::max(ymax() + PADDED_CELL_SIZE, m_domain.getMaxY());
} else if (row == getNumRows() - 1) {
cell_ymax = ymin(); // because bottom row of regular may have different height from others
} else {
-----------------------------------------------------------------------
Summary of changes:
src/operation/grid/Grid.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
GEOS
More information about the geos-commits
mailing list