mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
22 lines
520 B
Plaintext
22 lines
520 B
Plaintext
{
|
|
"name": "make_point_m",
|
|
"type": "function",
|
|
"groups": ["GeometryGroup"],
|
|
"description": "Creates a point geometry from an x, y coordinate and m value.",
|
|
"arguments": [{
|
|
"arg": "x",
|
|
"description": "x coordinate of point"
|
|
}, {
|
|
"arg": "y",
|
|
"description": "y coordinate of point"
|
|
}, {
|
|
"arg": "m",
|
|
"description": "m value of point"
|
|
}],
|
|
"examples": [{
|
|
"expression": "geom_to_wkt(make_point_m(2,4,6))",
|
|
"returns": "'PointM (2 4 6)'"
|
|
}],
|
|
"tags": ["point", "coordinate"]
|
|
}
|