mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
19 lines
511 B
Plaintext
19 lines
511 B
Plaintext
{
|
|
"name": "get_feature_by_id",
|
|
"type": "function",
|
|
"groups": ["Record and Attributes"],
|
|
"description": "Returns the feature with an id on a layer.",
|
|
"arguments": [{
|
|
"arg": "layer",
|
|
"description": "layer, layer name or layer id"
|
|
}, {
|
|
"arg": "feature_id",
|
|
"description": "the id of the feature which should be returned"
|
|
}],
|
|
"examples": [{
|
|
"expression": "get_feature_by_id('streets', 1)",
|
|
"returns": "the feature with the id 1 on the layer \"streets\""
|
|
}],
|
|
"tags": []
|
|
}
|