mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-16 00:05:45 -04:00
Trying to focus on the geometry function and expose it simply with more practical examples
This commit is contained in:
parent
55f7402ab0
commit
245e1baaf4
@ -4,7 +4,8 @@
|
||||
"groups": ["GeometryGroup"],
|
||||
"description": "Returns a feature's geometry.",
|
||||
"arguments": [ {"arg":"feature","description":"a feature object"}],
|
||||
"examples": [ { "expression":"geom_to_wkt( geometry( get_feature( layer, attributeField, value ) ) )", "returns":"'POINT(6 50)'"},
|
||||
{ "expression":"intersects( $geometry, geometry( get_feature( layer, attributeField, value ) ) )", "returns":"true"}
|
||||
"examples": [ { "expression":" geometry( $currentfeature )", "returns":"the geometry of the current feature. Prefer using $geometry."},
|
||||
{ "expression":"geom_to_wkt( geometry( get_feature_by_id( 'streets', 1 ) ) )", "returns":"the geometry in WKT of the feature with the id 1 on the layer \"streets\", e.g. 'POINT(6 50)'"},
|
||||
{ "expression":"intersects( $geometry, geometry( get_feature( 'streets', 'name', 'Main St.' ) ) )", "returns":"true if the current feature spatially intersects the 'Main St.' named feature in the \"streets\" layer"}
|
||||
]
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user