[geos-commits] [SCM] GEOS branch 3.13 updated. 05681c210b727655da463feba904e08e8d84c61c

git at osgeo.org git at osgeo.org
Mon Sep 22 16:30:34 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, 3.13 has been updated
       via  05681c210b727655da463feba904e08e8d84c61c (commit)
      from  3281e74c0c6d1bc870a09434bd5a78d24a050bcf (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 05681c210b727655da463feba904e08e8d84c61c
Author: Mike Taves <mwtoews at gmail.com>
Date:   Tue Sep 23 11:27:10 2025 +1200

    Fix geosop area return

diff --git a/util/geosop/GeometryOp.cpp b/util/geosop/GeometryOp.cpp
index 986d1856a..7f3d5cb46 100644
--- a/util/geosop/GeometryOp.cpp
+++ b/util/geosop/GeometryOp.cpp
@@ -237,7 +237,7 @@ std::vector<GeometryOpCreator> opRegistry {
     catMetric, "area of geometry",
     Result::typeDouble,
     [](const Geometry& geom) {
-        return new Result( geom.convexHull() );
+        return new Result( geom.getArea() );
     });
 }},
 {"length", [](std::string name) { return GeometryOp::create(name,

-----------------------------------------------------------------------

Summary of changes:
 util/geosop/GeometryOp.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
GEOS


More information about the geos-commits mailing list