Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
611 B
Plaintext
Raw Normal View History

{
"name": "$x_at",
"type": "function",
2020-07-02 01:46:48 +01:00
"groups": ["GeometryGroup"],
"description": "Retrieves a x coordinate of the current feature's geometry. <b>WARNING: This function is deprecated. It is recommended to use the replacement x_at function with @geometry variable instead.</b>",
2022-01-13 08:56:17 -05:00
"arguments": [{
"arg": "vertex",
"description": "index of the vertex of the current geometry (indices start at 0; negative values apply from the last index, starting at -1)"
2022-01-13 08:56:17 -05:00
}],
"examples": [{
"expression": "$x_at(1)",
"returns": "5"
}],
"tags": ["current", "retrieves", "feature", "coordinate"]
}