2015-11-06 20:09:13 +11:00
|
|
|
{
|
|
|
|
"name": "make_point_m",
|
|
|
|
"type": "function",
|
2020-07-02 01:46:48 +01:00
|
|
|
"groups": ["GeometryGroup"],
|
2015-11-06 20:09:13 +11:00
|
|
|
"description": "Creates a point geometry from an x, y coordinate and m value.",
|
2022-01-13 08:56:17 -05:00
|
|
|
"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"]
|
2015-11-06 20:09:13 +11:00
|
|
|
}
|