mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
11 lines
403 B
Plaintext
11 lines
403 B
Plaintext
|
{
|
||
|
"name": "make_point_m",
|
||
|
"type": "function",
|
||
|
"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)'"} ]
|
||
|
}
|