View source: R/qgis_dtmslopebasedfilter.R
qgis_dtmslopebasedfilter | R Documentation |
QGIS Algorithm provided by QGIS (native c++) DTM filter (slope-based) (native:dtmslopebasedfilter). This algorithm can be used to filter a digital elevation model in order to classify its cells into ground and object (non-ground) cells. The tool uses concepts as described by Vosselman (2000) and is based on the assumption that a large height difference between two nearby cells is unlikely to be caused by a steep slope in the terrain. The probability that the higher cell might be non-ground increases when the distance between the two cells decreases. Therefore the filter defines a maximum height difference (idz_max/i) between two cells as a function of the distance (id/i) between the cells (idz_max( d ) = d/i). A cell is classified as terrain if there is no cell within the kernel radius to which the height difference is larger than the allowed maximum height difference at the distance between these two cells. The approximate terrain slope (is/i) parameter is used to modify the filter function to match the overall slope in the study area (idz_max( d ) = d * s/i). A 5 % confidence interval (ici = 1.65 * sqrt( 2 * stddev )/i) may be used to modify the filter function even further by either relaxing (idz_max( d ) = d * s + ci/i) or amplifying (idz_max( d ) = d * s - ci/i) the filter criterium. References: Vosselman, G. (2000): Slope based filtering of laser altimetry data. IAPRS, Vol. XXXIII, Part B3, Amsterdam, The Netherlands, 935-942 This algorithm is a port of the SAGA 'DTM Filter (slope-based)' tool.
qgis_dtmslopebasedfilter(
INPUT = qgisprocess:::qgis_default_value(),
BAND = qgisprocess:::qgis_default_value(),
RADIUS = qgisprocess:::qgis_default_value(),
TERRAIN_SLOPE = qgisprocess:::qgis_default_value(),
FILTER_MODIFICATION = qgisprocess:::qgis_default_value(),
STANDARD_DEVIATION = qgisprocess:::qgis_default_value(),
CREATE_OPTIONS = qgisprocess:::qgis_default_value(),
OUTPUT_GROUND = qgisprocess:::qgis_default_value(),
OUTPUT_NONGROUND = qgisprocess:::qgis_default_value(),
...,
.complete_output = .complete_output_option(),
.quiet = .quiet_option(),
.messages = .message_option()
)
INPUT |
|
BAND |
|
RADIUS |
|
TERRAIN_SLOPE |
|
FILTER_MODIFICATION |
|
STANDARD_DEVIATION |
|
CREATE_OPTIONS |
|
OUTPUT_GROUND |
|
OUTPUT_NONGROUND |
|
... |
further parameters passed to |
.complete_output |
logical specifying if complete out of |
.quiet |
logical specifying if parameter |
.messages |
logical specifying if messages from |
OUTPUT_GROUND - outputRaster - Output layer (ground)
OUTPUT_NONGROUND - outputRaster - Output layer (non-ground objects)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.