Add precision to multipoint feature $x and $y functions

Co-authored-by: Nyall Dawson <nyall.dawson@gmail.com>
This commit is contained in:
Harrissou Sant-anna 2020-07-14 01:33:55 +02:00 committed by Nyall Dawson
parent 5901d5dc6f
commit 4e2cf102e0
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
"name": "$x",
"type": "function",
"groups": ["GeometryGroup"],
"description": "Returns the x coordinate of the current point feature.",
"description": "Returns the x coordinate of the current point feature. If the feature is a multipoint feature, then the x-coordinate of the first point will be returned.",
"examples": [ { "expression":"$x", "returns":"42"}
]
}

View File

@ -2,7 +2,7 @@
"name": "$y",
"type": "function",
"groups": ["GeometryGroup"],
"description": "Returns the y coordinate of the current point feature.",
"description": "Returns the y coordinate of the current point feature. If the feature is a multipoint feature, then the y-coordinate of the first point will be returned.",
"examples": [ { "expression":"$y", "returns":"42"}
]
}