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

19 lines
608 B
Plaintext
Raw Normal View History

{
"name": "m_at",
"type": "function",
"groups": ["GeometryGroup"],
"description": "Retrieves a m coordinate of the geometry, or NULL if the geometry has no m value.",
"arguments": [{
"arg": "geometry",
"description": "geometry object"
}, {
"arg": "vertex",
"description": "index of the vertex of the geometry (indices start at 0; negative values apply from the last index, starting at -1)"
}],
"examples": [{
"expression": "m_at(geom_from_wkt('LineStringZM(0 0 0 0, 10 10 0 5, 10 10 0 0)'), 1)",
"returns": "5"
}],
"tags": ["retrieves", "coordinate", "measure"]
}