View source: R/gdal_rasterize.R
gdal_rasterize | R Documentation |
QGIS Algorithm provided by GDAL Rasterize (vector to raster) (gdal:rasterize). —————- Arguments —————- INPUT: Input layer Argument type: source Acceptable values: - Path to a vector layer FIELD: Field to use for a burn-in value (optional) Argument type: field Acceptable values: - The name of an existing field - ; delimited list of existing field names BURN: A fixed value to burn (optional) Default value: 0 Argument type: number Acceptable values: - A numeric value - field:FIELD_NAME to use a data defined value taken from the FIELD_NAME field - expression:SOME EXPRESSION to use a data defined value calculated using a custom QGIS expression USE_Z: Burn value extracted from the "Z" values of the feature (optional) Default value: false Argument type: boolean Acceptable values: - 1 for true/yes - 0 for false/no - field:FIELD_NAME to use a data defined value taken from the FIELD_NAME field - expression:SOME EXPRESSION to use a data defined value calculated using a custom QGIS expression UNITS: Output raster size units Argument type: enum Available values: - 0: Pixels - 1: Georeferenced units Acceptable values: - Number of selected option, e.g. '1' - Comma separated list of options, e.g. '1,3' WIDTH: Width/Horizontal resolution Default value: 0 Argument type: number Acceptable values: - A numeric value - field:FIELD_NAME to use a data defined value taken from the FIELD_NAME field - expression:SOME EXPRESSION to use a data defined value calculated using a custom QGIS expression HEIGHT: Height/Vertical resolution Default value: 0 Argument type: number Acceptable values: - A numeric value - field:FIELD_NAME to use a data defined value taken from the FIELD_NAME field - expression:SOME EXPRESSION to use a data defined value calculated using a custom QGIS expression EXTENT: Output extent (optional) Argument type: extent Acceptable values: - A comma delimited string of x min, x max, y min, y max. E.g. '4,10,101,105' - Path to a layer. The extent of the layer is used. NODATA: Assign a specified NoData value to output bands (optional) Argument type: number Acceptable values: - A numeric value - field:FIELD_NAME to use a data defined value taken from the FIELD_NAME field - expression:SOME EXPRESSION to use a data defined value calculated using a custom QGIS expression OPTIONS: Additional creation options (optional) Default value: Argument type: string Acceptable values: - String value - field:FIELD_NAME to use a data defined value taken from the FIELD_NAME field - expression:SOME EXPRESSION to use a data defined value calculated using a custom QGIS expression DATA_TYPE: Output data type Default value: 5 Argument type: enum Available values: - 0: Byte - 1: Int16 - 2: UInt16 - 3: UInt32 - 4: Int32 - 5: Float32 - 6: Float64 - 7: CInt16 - 8: CInt32 - 9: CFloat32 - 10: CFloat64 - 11: Int8 Acceptable values: - Number of selected option, e.g. '1' - Comma separated list of options, e.g. '1,3' INIT: Pre-initialize the output image with value (optional) Argument type: number Acceptable values: - A numeric value - field:FIELD_NAME to use a data defined value taken from the FIELD_NAME field - expression:SOME EXPRESSION to use a data defined value calculated using a custom QGIS expression INVERT: Invert rasterization Default value: false Argument type: boolean Acceptable values: - 1 for true/yes - 0 for false/no - field:FIELD_NAME to use a data defined value taken from the FIELD_NAME field - expression:SOME EXPRESSION to use a data defined value calculated using a custom QGIS expression EXTRA: Additional command-line parameters (optional) Argument type: string Acceptable values: - String value - field:FIELD_NAME to use a data defined value taken from the FIELD_NAME field - expression:SOME EXPRESSION to use a data defined value calculated using a custom QGIS expression OUTPUT: Rasterized Argument type: rasterDestination Acceptable values: - Path for new raster layer
gdal_rasterize(
INPUT = qgisprocess:::qgis_default_value(),
FIELD = qgisprocess:::qgis_default_value(),
BURN = qgisprocess:::qgis_default_value(),
USE_Z = qgisprocess:::qgis_default_value(),
UNITS = qgisprocess:::qgis_default_value(),
WIDTH = qgisprocess:::qgis_default_value(),
HEIGHT = qgisprocess:::qgis_default_value(),
EXTENT = qgisprocess:::qgis_default_value(),
NODATA = qgisprocess:::qgis_default_value(),
OPTIONS = qgisprocess:::qgis_default_value(),
DATA_TYPE = qgisprocess:::qgis_default_value(),
INIT = qgisprocess:::qgis_default_value(),
INVERT = qgisprocess:::qgis_default_value(),
EXTRA = qgisprocess:::qgis_default_value(),
OUTPUT = qgisprocess:::qgis_default_value(),
...,
.complete_output = .complete_output_option(),
.quiet = .quiet_option(),
.messages = .message_option()
)
INPUT |
|
FIELD |
|
BURN |
|
USE_Z |
|
UNITS |
|
WIDTH |
|
HEIGHT |
|
EXTENT |
|
NODATA |
|
OPTIONS |
|
DATA_TYPE |
|
INIT |
|
INVERT |
|
EXTRA |
|
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 - outputRaster - Rasterized
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.