From 7852bc6c5e59d97daa0bf3ec8961a77010d26961 Mon Sep 17 00:00:00 2001 From: Martin Davis Date: Fri, 22 Nov 2024 13:47:25 -0800 Subject: [PATCH] Improve geosop help doc --- util/geosop/GeometryOp.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 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& geom, const std::unique_ptr& 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& geom, const std::unique_ptr& 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& geom, const std::unique_ptr& 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& geom, const std::unique_ptr& geomB) { return new Result( prepGeomCache.get(geom.get())->intersects( geomB.get() ) );