mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
Standardise naming of all internal functions to lowercase with underscore convention. Add aliases for old names to avoid breakage.
13 lines
414 B
Plaintext
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 → geometry
|
|
a → geometry
|
|
|
|
<h4>Example</h4>
|
|
<pre> geom_to_wkt( convex_hull( geom_from_wkt( 'LINESTRING(3 3 , 4 4 , 4 10)' )) ) → returns POLYGON((3 3,4 10,4 4,3 3)) </pre>
|