Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add precision to multipoint feature $x and $y functions
Co-authored-by: Nyall Dawson <nyall.dawson@gmail.com>
  • Loading branch information
DelazJ and nyalldawson committed Jul 21, 2020
1 parent 5901d5d commit 4e2cf10
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/function_help/json/$x
Expand Up @@ -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"}
]
}
2 changes: 1 addition & 1 deletion resources/function_help/json/$y
Expand Up @@ -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"}
]
}

0 comments on commit 4e2cf10

Please sign in to comment.