Skip to content

Commit

Permalink
Merge pull request #39998 from DelazJ/overlay_disjoint
Browse files Browse the repository at this point in the history
Fix overlay_disjoint description and examples
  • Loading branch information
m-kuhn committed Nov 14, 2020
2 parents 53ec183 + f6cf85a commit b4811f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/function_help/json/overlay_disjoint
Expand Up @@ -2,7 +2,7 @@
"name": "overlay_disjoint",
"type": "function",
"groups": ["GeometryGroup"],
"description": "Returns whether the current feature is spatially disjoint from at least one feature from a target layer, or an array of expression-based results for the features in the target layer that are disjoint from the current feature.<br><br>Read more on the underlying GEOS \"Disjoint\" predicate, as described in PostGIS <a href='https://postgis.net/docs/ST_Disjoint.html'>ST_Disjoint</a> function.",
"description": "Returns whether the current feature is spatially disjoint from all the features of a target layer, or an array of expression-based results for the features in the target layer that are disjoint from the current feature.<br><br>Read more on the underlying GEOS \"Disjoint\" predicate, as described in PostGIS <a href='https://postgis.net/docs/ST_Disjoint.html'>ST_Disjoint</a> function.",
"arguments": [
{
"arg": "layer",
Expand Down Expand Up @@ -33,11 +33,11 @@
"examples": [
{
"expression": "overlay_disjoint('regions')",
"returns": "true if the current feature is spatially disjoint from a region"
"returns": "true if the current feature is spatially disjoint from all the regions"
},
{
"expression": "overlay_disjoint('regions', filter:= population > 10000)",
"returns": "true if the current feature is spatially disjoint from a region with a population greater than 10000"
"returns": "true if the current feature is spatially disjoint from all the regions with a population greater than 10000"
},
{
"expression": "overlay_disjoint('regions', name)",
Expand Down

0 comments on commit b4811f2

Please sign in to comment.