Skip to content

Commit

Permalink
fix function_help
Browse files Browse the repository at this point in the history
  • Loading branch information
lbartoletti committed Dec 11, 2019
1 parent 23c9a61 commit 2491284
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/function_help/json/is_empty
Expand Up @@ -4,7 +4,7 @@
"description": "Returns true if a geometry is empty (without coordinates) or false if a is empty."
"arguments": [ {"arg":"geom","description":"a geometry"}],
"examples": [ { "expression":"is_empty(geom_from_wkt('LINESTRING(0 0, 1 1, 2 2)'))", "returns":"false"},
{ "expression":"is_empty(geom_from_wkt('LINESTRING EMPTY'))", "returns":"true"}]
{ "expression":"is_empty(geom_from_wkt('POINT(7 4)'))", "returns":"false"}]
{ "expression":"is_empty(geom_from_wkt('POINT EMPTY'))", "returns":"true"}]
{ "expression":"is_empty(geom_from_wkt('LINESTRING EMPTY'))", "returns":"true"},
{ "expression":"is_empty(geom_from_wkt('POINT(7 4)'))", "returns":"false"},
{ "expression":"is_empty(geom_from_wkt('POINT EMPTY'))", "returns":"true"} ]
}

0 comments on commit 2491284

Please sign in to comment.