Nyall Dawson bd9e02be95 Add alias support for expression functions
Standardise naming of all internal functions to lowercase with
underscore convention. Add aliases for old names to avoid
breakage.
2015-05-03 20:57:36 +10:00

13 lines
414 B
Plaintext

<h3>convex_hull function</h3>
Returns the convex hull of a geometry. It represents the minimum convex geometry that encloses all geometries within the set.
<h4>Syntax</h4>
<pre>convex_hull( a, b )</pre>
<h4>Arguments</h4>
a &rarr; geometry
a &rarr; geometry
<h4>Example</h4>
<pre> geom_to_wkt( convex_hull( geom_from_wkt( 'LINESTRING(3 3 , 4 4 , 4 10)' )) ) &rarr; returns POLYGON((3 3,4 10,4 4,3 3)) </pre>