Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
520 B
Plaintext
Raw Normal View History

{
"name": "make_point_m",
"type": "function",
2020-07-02 01:46:48 +01:00
"groups": ["GeometryGroup"],
"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"]
}