<para>OGC SPEC s2.1.1.1</para>
</listitem>
</varlistentry>
+<!-- Should this be documented? -->
<varlistentry>
- <term>geomunion(geometry,geometry)</term>
+ <term>GeomUnion(geometry,geometry)</term>
<listitem>
<para> Returns a geometry that represents the point set union of
this Geometry with anotherGeometry.
</listitem>
</varlistentry>
<varlistentry>
+ <term>GeomUnion(geometry set)</term>
+ <listitem>
+ <para> Returns a geometry that represents the point set union of
+this all Geometries in given set.
+ </para>
+ <para>Performed by the GEOS module</para>
+ <para>Do not call with a GeometryCollection in the argument set</para>
+ <para>Not explicitly defined in OGC SPEC</para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>memGeomUnion(geometry set)</term>
+ <listitem>
+ <para>Same as the above, only memory-friendly (uses less memory and more processor time).
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
<term>difference(geometry,geometry)</term>
<listitem>
<para> Returns a geometry that represents the point set
<term>Centroid(geometry)</term>
<listitem>
<para>Returns the centroid of the geometry as a point.</para>
+ <para>Computation will be more accurate if performed by the GEOS module (enabled at compile time).</para>
</listitem>
</varlistentry>
</variablelist>
</listitem>
</varlistentry>
<varlistentry>
- <term>collect(geometry)</term>
+ <term>collect(geometry set)</term>
<listitem>
<para>This function returns a GEOMETRYCOLLECTION object from a set
of geometries. The collect() function is an "aggregate" function in
</para>
</listitem>
</varlistentry>
+ <varlistentry>
+ <term>mem_collect(geometry set)</term>
+ <listitem>
+ <para>This does the the same of collect(geometry), only more
+ memory-friendly (uses less memory and more processor time).
+ </para>
+ </listitem>
+ </varlistentry>
<varlistentry>
<term>distance_spheroid(point, point, spheroid)</term>
<listitem>
</listitem>
</varlistentry>
<varlistentry>
- <term>extent(geometry)</term>
+ <term>extent(geometry set)</term>
<listitem>
<para>The extent() function is an "aggregate" function in the
terminology of PostgreSQL. That means that it operators on lists of data, in