QGIS/resources/function_help/sym_difference
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
446 B
Plaintext

<h3>sym_difference function</h3>
Returns a geometry that represents the portions of a and b that do not intersect.
<h4>Syntax</h4>
<pre>sym_difference( geometry a, geometry b)</pre>
<h4>Arguments</h4>
geometry &rarr; geometry
geometry &rarr; geometry
<h4>Example</h4>
<pre> geom_to_wkt( sym_difference( geom_from_wkt( 'LINESTRING(3 3 , 4 4 , 5 5)' ) , geom_from_wkt( 'LINESTRING(3 3 , 8 8)' )) ) &rarr; returns LINESTRING(5 5, 8 8)</pre>