View source: R/qgis_createpointslayerfromtable.R
qgis_createpointslayerfromtable | R Documentation |
QGIS Algorithm provided by QGIS (native c++) Create points layer from table (native:createpointslayerfromtable). This algorithm generates a points layer based on the values from an input table. The table must contain a field with the X coordinate of each point and another one with the Y coordinate, as well as optional fields with Z and M values. A CRS for the output layer has to be specified, and the coordinates in the table are assumed to be expressed in the units used by that CRS. The attributes table of the resulting layer will be the input table. —————- Notes —————- - This algorithm drops existing primary keys or FID values and regenerates them in output layers.
qgis_createpointslayerfromtable(
INPUT = qgisprocess:::qgis_default_value(),
XFIELD = qgisprocess:::qgis_default_value(),
YFIELD = qgisprocess:::qgis_default_value(),
ZFIELD = qgisprocess:::qgis_default_value(),
MFIELD = qgisprocess:::qgis_default_value(),
TARGET_CRS = qgisprocess:::qgis_default_value(),
OUTPUT = qgisprocess:::qgis_default_value(),
...,
.complete_output = .complete_output_option(),
.quiet = .quiet_option(),
.messages = .message_option()
)
INPUT |
|
XFIELD |
|
YFIELD |
|
ZFIELD |
|
MFIELD |
|
TARGET_CRS |
|
OUTPUT |
|
... |
further parameters passed to |
.complete_output |
logical specifying if complete out of |
.quiet |
logical specifying if parameter |
.messages |
logical specifying if messages from |
OUTPUT - outputVector - Points from table
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.