1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
REMOVE DUPLICATE POINTS
=======================
Description
-----------
Parameters
----------
- ``Points[Vector]``:
- ``Attribute[TableField]``:
- ``Point to Keep[Selection]``:
- ``Numeric Attribute Values[Selection]``:
Outputs
-------
- ``Result[Vector]``:
See also
---------
Console usage
-------------
::
processing.runalg('saga:removeduplicatepoints', points, field, method, numeric, result)
Available options for selection parameters:
method(Point to Keep)
0 - [0] first point
1 - [1] last point
2 - [2] point with minimum attribute value
3 - [3] point with maximum attribute value
numeric(Numeric Attribute Values)
0 - [0] take value from the point to be kept
1 - [1] minimum value of all duplicates
2 - [2] maximum value of all duplicates
3 - [3] mean value of all duplicates
|