View source: R/qgis_rasterlayerproperties.R
qgis_rasterlayerproperties | R Documentation |
QGIS Algorithm provided by QGIS (native c++) Raster layer properties (native:rasterlayerproperties). This algorithm returns basic properties of the given raster layer, including the extent, size in pixels and dimensions of pixels (in map units). If an optional band number is specified then the NoData value for the selected band will also be returned.
qgis_rasterlayerproperties(
INPUT = qgisprocess:::qgis_default_value(),
BAND = qgisprocess:::qgis_default_value(),
...,
.complete_output = .complete_output_option(),
.quiet = .quiet_option(),
.messages = .message_option()
)
INPUT |
|
BAND |
|
... |
further parameters passed to |
.complete_output |
logical specifying if complete out of |
.quiet |
logical specifying if parameter |
.messages |
logical specifying if messages from |
BAND_COUNT - outputNumber - Number of bands in raster
CRS_AUTHID - outputString - CRS authority identifier
EXTENT - outputString - Extent
HAS_NODATA_VALUE - outputBoolean - Band has a NoData value set
HEIGHT_IN_PIXELS - outputNumber - Height in pixels
NODATA_VALUE - outputNumber - Band NoData value
PIXEL_HEIGHT - outputNumber - Pixel size (height) in map units
PIXEL_WIDTH - outputNumber - Pixel size (width) in map units
WIDTH_IN_PIXELS - outputNumber - Width in pixels
X_MAX - outputNumber - Maximum x-coordinate
X_MIN - outputNumber - Minimum x-coordinate
Y_MAX - outputNumber - Maximum y-coordinate
Y_MIN - outputNumber - Minimum y-coordinate
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.