[SCM] PostGIS branch master updated. 3.5.0rc1-3-g39c9f8b68
git at osgeo.org
git at osgeo.org
Tue Sep 24 02:08:11 PDT 2024
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 "PostGIS".
The branch, master has been updated
via 39c9f8b68d5903f02baa9045098c43e66dba90e3 (commit)
from 9fbac2e79b41d5a70dc556bd7aaebe16e6065506 (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 39c9f8b68d5903f02baa9045098c43e66dba90e3
Author: Sandro Santilli <strk at kbt.io>
Date: Tue Sep 24 11:07:27 2024 +0200
Improve debugging output of finding face containing point
References #5782
diff --git a/liblwgeom/topo/lwgeom_topo.c b/liblwgeom/topo/lwgeom_topo.c
index ae53d1f11..d0e5e934c 100644
--- a/liblwgeom/topo/lwgeom_topo.c
+++ b/liblwgeom/topo/lwgeom_topo.c
@@ -7767,7 +7767,8 @@ lwt_GetFaceContainingPoint(LWT_TOPOLOGY* topo, const LWPOINT* pt)
);
closestSegmentSide = lw_segment_side(closestSegmentP0, closestSegmentP1, queryPoint);
- LWDEBUGF(1, "Side of closest segment query point falls on: %d", closestSegmentSide);
+ LWDEBUGF(1, "Side of closest segment query point falls on: %d (%s)",
+ closestSegmentSide, closestSegmentSide == -1 ? "left" : closestSegmentSide == 1 ? "right" : "collinear" );
if ( closestSegmentSide == -1 ) /* left */
{
-----------------------------------------------------------------------
Summary of changes:
liblwgeom/topo/lwgeom_topo.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list