mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
22 lines
799 B
Plaintext
22 lines
799 B
Plaintext
{
|
|
"name": "geometry",
|
|
"type": "function",
|
|
"groups": ["GeometryGroup"],
|
|
"description": "Returns a feature's geometry.",
|
|
"arguments": [{
|
|
"arg": "feature",
|
|
"description": "a feature object"
|
|
}],
|
|
"examples": [{
|
|
"expression": "geometry( @feature )",
|
|
"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"
|
|
}],
|
|
"tags": []
|
|
}
|