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
|
LINE SIMPLIFICATION
===================
Description
-----------
This algorithm simplyfies the geometry of a lines layer. You can set the tolerance options: a small number means a tiny
simplification.
Parameters
----------
- ``Lines[Vector]``: lines layer in input
- ``Tolerance[Number]``: tolerance settings
Outputs
-------
- ``Simplified Lines[Vector]``: the resulting layer
See also
---------
Console usage
-------------
::
processing.runalg('saga:linesimplification', lines, tolerance, output)
|