mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
11 lines
440 B
Plaintext
11 lines
440 B
Plaintext
{
|
|
"name": "z_max",
|
|
"type": "function",
|
|
"groups": ["GeometryGroup"],
|
|
"description": "Returns the maximum z coordinate of a geometry.",
|
|
"arguments": [ {"arg":"geometry","description":"a geometry with z coordinate"}],
|
|
"examples": [ { "expression":"z_max( geom_from_wkt( 'POINT ( 0 0 1 )' ) )", "returns":"1"},
|
|
{ "expression":"z_max( make_line( make_point( 0,0,0 ), make_point( -1,-1,-2 ) ) )", "returns":"0"}
|
|
]
|
|
}
|