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
|
CONVERT TABLE TO POINTS
=======================
Description
-----------
This algorithm converts the attribute table of a layer into a points layer. The resulting layer will be reprojected
according to the X and Y fields.
Parameters
----------
- ``Table[Table]``: attribute table of the layer in input
- ``X[TableField]``: X coordinate
- ``Y[TableField]``: Y coordinate
Outputs
-------
- ``Points[Vector]``: resulting points layer
See also
---------
Console usage
-------------
::
processing.runalg('saga:converttabletopoints', table, x, y, points)
|