mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-04 00:04:03 -04:00
19 lines
623 B
Plaintext
19 lines
623 B
Plaintext
{
|
|
"name": "y_min",
|
|
"type": "function",
|
|
"groups": ["GeometryGroup"],
|
|
"description": "Returns the minimum y coordinate of a geometry. Calculations are in the spatial reference system of this geometry.",
|
|
"arguments": [{
|
|
"arg": "geometry",
|
|
"description": "a geometry"
|
|
}],
|
|
"examples": [{
|
|
"expression": "y_min(@geometry)",
|
|
"returns": "the minimum y coordinate of the current feature's geometry"
|
|
},{
|
|
"expression": "y_min( geom_from_wkt( 'LINESTRING(2 5, 3 6, 4 8)') )",
|
|
"returns": "5"
|
|
}],
|
|
"tags": ["coordinate", "spatial", "reference", "calculations", "system", "minimum", "south"]
|
|
}
|