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
446 B
Plaintext
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 → geometry
|
|
geometry → 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)' )) ) → returns LINESTRING(5 5, 8 8)</pre>
|