mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-09 00:08:52 -04:00
Add geometry overlay functions to a group
This commit is contained in:
parent
d857db174a
commit
6da5db1985
@ -1,7 +1,9 @@
|
|||||||
{
|
{
|
||||||
"name": "geometry_overlay_contains",
|
"name": "geometry_overlay_contains",
|
||||||
"type": "function",
|
"type": "function",
|
||||||
"description": "Performs a spatial join of type CONTAINS. This returns an array of results of an expression evaluated on features from a different layer that CONTAINS the current feature, or, if no expression if provided, simply returns whether at least one feature from the other layer CONTAINS the current feature.", "arguments": [
|
"groups": ["GeometryGroup"],
|
||||||
|
"description": "Performs a spatial join of type CONTAINS. This returns an array of results of an expression evaluated on features from a different layer that CONTAINS the current feature, or, if no expression if provided, simply returns whether at least one feature from the other layer CONTAINS the current feature.",
|
||||||
|
"arguments": [
|
||||||
{
|
{
|
||||||
"arg": "layer",
|
"arg": "layer",
|
||||||
"description": "the other layer"
|
"description": "the other layer"
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "geometry_overlay_crosses",
|
"name": "geometry_overlay_crosses",
|
||||||
"type": "function",
|
"type": "function",
|
||||||
|
"groups": ["GeometryGroup"],
|
||||||
"description": "Performs a spatial join of type CROSSES. This returns an array of results of an expression evaluated on features from a different layer that CROSSES the current feature, or, if no expression if provided, simply returns whether at least one feature from the other layer CROSSES the current feature.",
|
"description": "Performs a spatial join of type CROSSES. This returns an array of results of an expression evaluated on features from a different layer that CROSSES the current feature, or, if no expression if provided, simply returns whether at least one feature from the other layer CROSSES the current feature.",
|
||||||
"arguments": [
|
"arguments": [
|
||||||
{
|
{
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "geometry_overlay_disjoint",
|
"name": "geometry_overlay_disjoint",
|
||||||
"type": "function",
|
"type": "function",
|
||||||
|
"groups": ["GeometryGroup"],
|
||||||
"description": "Performs a spatial join of type DISJOINT. This returns an array of results of an expression evaluated on features from a different layer that DISJOINT the current feature, or, if no expression if provided, simply returns whether at least one feature from the other layer DISJOINT the current feature.",
|
"description": "Performs a spatial join of type DISJOINT. This returns an array of results of an expression evaluated on features from a different layer that DISJOINT the current feature, or, if no expression if provided, simply returns whether at least one feature from the other layer DISJOINT the current feature.",
|
||||||
"arguments": [
|
"arguments": [
|
||||||
{
|
{
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
{
|
{
|
||||||
"name": "geometry_overlay_equals",
|
"name": "geometry_overlay_equals",
|
||||||
"type": "function",
|
"type": "function",
|
||||||
"description": "Performs a spatial join of type EQUALS. This returns an array of results of an expression evaluated on features from a different layer that EQUALS the current feature, or, if no expression if provided, simply returns whether at least one feature from the other layer EQUALS the current feature.","arguments": [
|
"groups": ["GeometryGroup"],
|
||||||
|
"description": "Performs a spatial join of type EQUALS. This returns an array of results of an expression evaluated on features from a different layer that EQUALS the current feature, or, if no expression if provided, simply returns whether at least one feature from the other layer EQUALS the current feature.",
|
||||||
|
"arguments": [
|
||||||
{
|
{
|
||||||
"arg": "layer",
|
"arg": "layer",
|
||||||
"description": "the other layer"
|
"description": "the other layer"
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "geometry_overlay_intersects",
|
"name": "geometry_overlay_intersects",
|
||||||
"type": "function",
|
"type": "function",
|
||||||
|
"groups": ["GeometryGroup"],
|
||||||
"description": "Performs a spatial join of type INTERSECTS. This returns an array of results of an expression evaluated on features from a different layer that INTERSECTS the current feature, or, if no expression if provided, simply returns whether at least one feature from the other layer INTERSECTS the current feature.",
|
"description": "Performs a spatial join of type INTERSECTS. This returns an array of results of an expression evaluated on features from a different layer that INTERSECTS the current feature, or, if no expression if provided, simply returns whether at least one feature from the other layer INTERSECTS the current feature.",
|
||||||
"arguments": [
|
"arguments": [
|
||||||
{
|
{
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "geometry_overlay_nearest",
|
"name": "geometry_overlay_nearest",
|
||||||
"type": "function",
|
"type": "function",
|
||||||
|
"groups": ["GeometryGroup"],
|
||||||
"description": "This returns an array of results of an expression evaluated on features from a different layer ordered BY DISTANCE to the current feature, or, if no expression if provided, simply returns whether at least one feature from the other layer was found. Note : this function can be slow and consume a lot of memory for large layers.",
|
"description": "This returns an array of results of an expression evaluated on features from a different layer ordered BY DISTANCE to the current feature, or, if no expression if provided, simply returns whether at least one feature from the other layer was found. Note : this function can be slow and consume a lot of memory for large layers.",
|
||||||
"arguments": [
|
"arguments": [
|
||||||
{
|
{
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "geometry_overlay_touches",
|
"name": "geometry_overlay_touches",
|
||||||
"type": "function",
|
"type": "function",
|
||||||
|
"groups": ["GeometryGroup"],
|
||||||
"description": "Performs a spatial join of type TOUCHES. This returns an array of results of an expression evaluated on features from a different layer that TOUCHES the current feature, or, if no expression if provided, simply returns whether at least one feature from the other layer TOUCHES the current feature.",
|
"description": "Performs a spatial join of type TOUCHES. This returns an array of results of an expression evaluated on features from a different layer that TOUCHES the current feature, or, if no expression if provided, simply returns whether at least one feature from the other layer TOUCHES the current feature.",
|
||||||
"arguments": [
|
"arguments": [
|
||||||
{
|
{
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "geometry_overlay_within",
|
"name": "geometry_overlay_within",
|
||||||
"type": "function",
|
"type": "function",
|
||||||
|
"groups": ["GeometryGroup"],
|
||||||
"description": "Performs a spatial join of type WITHIN. This returns an array of results of an expression evaluated on features from a different layer that are WITHIN the current feature, or, if no expression if provided, simply returns whether at least one feature from the other layer is WITHIN the current feature.",
|
"description": "Performs a spatial join of type WITHIN. This returns an array of results of an expression evaluated on features from a different layer that are WITHIN the current feature, or, if no expression if provided, simply returns whether at least one feature from the other layer is WITHIN the current feature.",
|
||||||
"arguments": [
|
"arguments": [
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user