[geos-commits] [SCM] GEOS branch main updated. 7852bc6c5e59d97daa0bf3ec8961a77010d26961
git at osgeo.org
git at osgeo.org
Fri Nov 22 13:47:48 PST 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 "GEOS".
The branch, main has been updated
via 7852bc6c5e59d97daa0bf3ec8961a77010d26961 (commit)
from ef84de66451723471d59cb22fac634fa861f939a (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 7852bc6c5e59d97daa0bf3ec8961a77010d26961
Author: Martin Davis <mtnclimb at gmail.com>
Date: Fri Nov 22 13:47:25 2024 -0800
Improve geosop help doc
diff --git a/util/geosop/GeometryOp.cpp b/util/geosop/GeometryOp.cpp
index 025e905c4..d55d7b88f 100644
--- a/util/geosop/GeometryOp.cpp
+++ b/util/geosop/GeometryOp.cpp
@@ -734,28 +734,28 @@ std::vector<GeometryOpCreator> opRegistry {
{ "containsPrep", [](std::string name) { return GeometryOp::create(name,
- catRel, "test if geometry A contains geometry B, using PreparedGeometry",
+ catRel, "test if geometry A contains geometry B, with A prepared",
Result::typeBool,
[](const std::unique_ptr<Geometry>& geom, const std::unique_ptr<Geometry>& geomB) {
return new Result( prepGeomCache.get(geom.get())->contains( geomB.get() ) );
});
}},
{ "containsProperlyPrep", [](std::string name) { return GeometryOp::create(name,
- catRel, "test if geometry A properly contains geometry B, using PreparedGeometry",
+ catRel, "test if geometry A properly contains geometry B, with A prepared",
Result::typeBool,
[](const std::unique_ptr<Geometry>& geom, const std::unique_ptr<Geometry>& geomB) {
return new Result( prepGeomCache.get(geom.get())->containsProperly( geomB.get() ) );
});
}},
{ "coversPrep", [](std::string name) { return GeometryOp::create(name,
- catRel, "test if geometry A covers geometry B, using PreparedGeometry",
+ catRel, "test if geometry A covers geometry B, with A prepared",
Result::typeBool,
[](const std::unique_ptr<Geometry>& geom, const std::unique_ptr<Geometry>& geomB) {
return new Result( prepGeomCache.get(geom.get())->covers( geomB.get() ) );
});
}},
{ "intersectsPrep", [](std::string name) { return GeometryOp::create(name,
- catRel, "test if geometry A intersects geometry B, using PreparedGeometry",
+ catRel, "test if geometry A intersects geometry B, with A prepared",
Result::typeBool,
[](const std::unique_ptr<Geometry>& geom, const std::unique_ptr<Geometry>& geomB) {
return new Result( prepGeomCache.get(geom.get())->intersects( geomB.get() ) );
-----------------------------------------------------------------------
Summary of changes:
util/geosop/GeometryOp.cpp | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
hooks/post-receive
--
GEOS
More information about the geos-commits
mailing list