View source: R/qgis_rasterbooleanand.R
qgis_rasterbooleanand | R Documentation |
QGIS Algorithm provided by QGIS (native c++) Raster boolean AND (native:rasterbooleanand). Calculates the boolean AND for a set of input raster layers This algorithm calculates the boolean AND for a set of input rasters. If all of the input rasters have a non-zero value for a pixel, that pixel will be set to 1 in the output raster. If any of the input rasters have 0 values for the pixel it will be set to 0 in the output raster. The reference layer parameter specifies an existing raster layer to use as a reference when creating the output raster. The output raster will have the same extent, CRS, and pixel dimensions as this layer. By default, a NoData pixel in ANY of the input layers will result in a NoData pixel in the output raster. If the 'Treat NoData values as false' option is checked, then NoData inputs will be treated the same as a 0 input value.
qgis_rasterbooleanand(
INPUT = qgisprocess:::qgis_default_value(),
REF_LAYER = qgisprocess:::qgis_default_value(),
NODATA_AS_FALSE = qgisprocess:::qgis_default_value(),
NO_DATA = qgisprocess:::qgis_default_value(),
DATA_TYPE = qgisprocess:::qgis_default_value(),
CREATE_OPTIONS = qgisprocess:::qgis_default_value(),
OUTPUT = qgisprocess:::qgis_default_value(),
...,
.complete_output = .complete_output_option(),
.quiet = .quiet_option(),
.messages = .message_option()
)
INPUT |
|
REF_LAYER |
|
NODATA_AS_FALSE |
|
NO_DATA |
|
DATA_TYPE |
|
CREATE_OPTIONS |
|
OUTPUT |
|
... |
further parameters passed to |
.complete_output |
logical specifying if complete out of |
.quiet |
logical specifying if parameter |
.messages |
logical specifying if messages from |
CRS_AUTHID - outputString - CRS authority identifier
EXTENT - outputString - Extent
FALSE_PIXEL_COUNT - outputNumber - False pixel count
HEIGHT_IN_PIXELS - outputNumber - Height in pixels
NODATA_PIXEL_COUNT - outputNumber - NoData pixel count
OUTPUT - outputRaster - Output layer
TOTAL_PIXEL_COUNT - outputNumber - Total pixel count
TRUE_PIXEL_COUNT - outputNumber - True pixel count
WIDTH_IN_PIXELS - outputNumber - Width in pixels
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.