mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
19 lines
596 B
Plaintext
19 lines
596 B
Plaintext
{
|
|
"name": "z_at",
|
|
"type": "function",
|
|
"groups": ["GeometryGroup"],
|
|
"description": "Retrieves a z coordinate of the geometry, or NULL if the geometry has no z value.",
|
|
"arguments": [{
|
|
"arg": "geometry",
|
|
"description": "geometry object"
|
|
}, {
|
|
"arg": "vertex",
|
|
"description": "index of the vertex of the geometry (indices start at 0; negative values apply from the last index, starting at -1)"
|
|
}],
|
|
"examples": [{
|
|
"expression": "z_at(geom_from_wkt('LineStringZ(0 0 0, 10 10 5, 10 10 0)'), 1)",
|
|
"returns": "5"
|
|
}],
|
|
"tags": ["retrieves", "coordinate", "3D"]
|
|
}
|