View source: R/qgis_filterbygeometry.R
qgis_filterbygeometry | R Documentation |
QGIS Algorithm provided by QGIS (native c++) Filter by geometry type (native:filterbygeometry). Filters features by geometry type This algorithm filters features by their geometry type. Incoming features will be directed to different outputs based on whether they have a point, line or polygon geometry.
qgis_filterbygeometry(
INPUT = qgisprocess:::qgis_default_value(),
POINTS = qgisprocess:::qgis_default_value(),
LINES = qgisprocess:::qgis_default_value(),
POLYGONS = qgisprocess:::qgis_default_value(),
NO_GEOMETRY = qgisprocess:::qgis_default_value(),
...,
.complete_output = .complete_output_option(),
.quiet = .quiet_option(),
.messages = .message_option()
)
INPUT |
|
POINTS |
|
LINES |
|
POLYGONS |
|
NO_GEOMETRY |
|
... |
further parameters passed to |
.complete_output |
logical specifying if complete out of |
.quiet |
logical specifying if parameter |
.messages |
logical specifying if messages from |
LINES - outputVector - Line features
LINE_COUNT - outputNumber - Total count of line features
NO_GEOMETRY - outputVector - Features with no geometry
NO_GEOMETRY_COUNT - outputNumber - Total count of features without geometry
POINTS - outputVector - Point features
POINT_COUNT - outputNumber - Total count of point features
POLYGONS - outputVector - Polygon features
POLYGON_COUNT - outputNumber - Total count of polygon features
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.