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
|
CONVERT POINTS TO LINE(S)
=========================
Description
-----------
This algorithm transforms a points layer into a lines one.
Parameters
----------
- ``Points[Vector]``: starting points layer
- ``Order by...[TableField]``: lines will be ordered following this field
- ``Separate by...[TableField]``: lines will be grouped according to this field
Outputs
-------
- ``Lines[Vector]``: resulting lines layer
See also
---------
Console usage
-------------
::
processing.runalg('saga:convertpointstolines', points, order, separate, lines)
|