Wichtig

Übersetzen ist eine Gemeinschaftsleistung Sie können mitmachen. Diese Seite ist aktuell zu 50.00% übersetzt.

28.1.18. Raster tools

28.1.18.1. Align raster

NEW in 3.34

Aligns raster by resampling it to the same cell size and reprojecting to the same CRS as a reference raster.

Warnung

This algorithm is ONLY available in the Model Designer context. For other contexts, use instead Align rasters.

Parameter

Bezeichnung

Name

Typ

Beschreibung

Eingabe-Layer

INPUT

[Raster]

Input raster layer to align

Resampling method

RESAMPLING_METHOD

[enumeration]

Default: 0

Method to use for input layer resampling. Available options are:

  • 0 — Nearest Neighbour

  • 1 — Bilinear (2x2 kernel)

  • 2 — Cubic (4x4 kernel)

  • 3 — Cubic B-Spline (4x4 kernel)

  • 4 — Lanczos (6x6 kernel)

  • 5 — Average

  • 6 — Mode

  • 7 — Maximum

  • 8 — Minimum

  • 9 — Median

  • 10 — First quartile (Q1)

  • 11 — Third quartile (Q3)

Rescale values according to the cell size

RESCALE

[Boolean]

Default: No

Reference layer

REFERENCE_LAYER

[Raster]

A raster layer that will be used to fetch extent, cell size and CRS that will be applied to input layers.

Override reference CRS

Optional

CRS

[KBS]

CRS to be used instead of the reference layer’s

Override reference cell size X

Optional

CELL_SIZE_X

[Zahl]

Cell size in X direction to be used instead of the reference layer’s

Override reference cell size Y

Optional

CELL_SIZE_Y

[Zahl]

Cell size in Y direction to be used instead of the reference layer’s

Override reference grid offset X

Optional

GRID_OFFSET_X

[Zahl]

Offset in X direction to apply to cells grid

Override reference grid offset Y

Optional

GRID_OFFSET_Y

[Zahl]

Offset in Y direction to apply to cells grid

Clip to extent

Optional

EXTENT

[Ausdehnung]

Specify the extent of the output raster layer. It will internally be extended to a multiple of the tile size.

Verfügbare Methoden sind:

  • Aus Layer berechnen…: verwendet die Ausdehnung eines im aktuellen Projekt geladenen Layers

  • Berechne aus Layout-Karte…: verwendet die Ausdehnung eines Layout-Kartenelements im aktiven Projekt

  • Berechne aus Lesezeichen…: verwendet den Bereich eines gespeicherten Lesezeichens

  • Ausdehnung der Kartenansicht verwenden

  • Auf Karte zeichnen: Klicken und ziehen Sie ein Rechteck, das den zu berücksichtigenden Bereich abgrenzt

  • Geben Sie die Koordinaten als xmin, xmax, ymin, ymax ein.

Aligned raster

OUTPUT

[Raster]

output raster with pixels resampled

Ausgaben

Bezeichnung

Name

Typ

Beschreibung

Aligned raster

OUTPUT

[Raster]

output raster with pixels resampled

Pythoncode

Algorithm ID: native:alignsingleraster

import processing
processing.run("algorithm_id", {parameter_dictionary})

Die Algorithmus-Kennung wird angezeigt, wenn Sie den Mauszeiger über den Algorithmus in der Verarbeitungs-Werkzeugkiste bewegen. Die Parameter-Liste (parameter_dictionary) enthält die Namen und Werte der Parameter. Siehe Verarbeitungs-Algorithmen von der Konsole aus verwenden für Details zur Ausführung von Verarbeitungsalgorithmen über die Python-Konsole.

28.1.18.2. Align rasters

NEW in 3.34

Aligns rasters by resampling them to the same cell size and reprojecting to the same CRS as a reference raster.

Warnung

This algorithm is NOT available in the Model Designer context. Use instead Align raster.

Parameter

Bezeichnung

Name

Typ

Beschreibung

Eingabelayer

INPUT

[raster] [list]

List of input raster layers with resampling options associated (filled as a QgsProcessingParameterAlignRasterLayers item — done in GUI by pressing Configure Raster… button for each selected layer):

Input layer [string] (inputFile)

Full path of the input layer to align

Output file [string] (outputFile)

Full path of the corresponding aligned output layer

Resampling method [enumeration] (resampleMethod)

Method to use for input layer resampling. Available options are:

  • 0 — Nearest Neighbour

  • 1 — Bilinear (2x2 kernel)

  • 2 — Cubic (4x4 kernel)

  • 3 — Cubic B-Spline (4x4 kernel)

  • 4 — Lanczos (6x6 kernel)

  • 5 — Average

  • 6 — Mode

  • 7 — Maximum

  • 8 — Minimum

  • 9 — Median

  • 10 — First quartile (Q1)

  • 11 — Third quartile (Q3)

Rescale values according to the cell size [boolean] (rescale)

Reference layer

REFERENCE_LAYER

[Raster]

A raster layer that will be used to fetch extent, cell size and CRS that will be applied to input layers.

Override reference CRS

Optional

CRS

[KBS]

CRS to be used instead of the reference layer’s

Override reference cell size X

Optional

CELL_SIZE_X

[Zahl]

Cell size in X direction to be used instead of the reference layer’s

Override reference cell size Y

Optional

CELL_SIZE_Y

[Zahl]

Cell size in Y direction to be used instead of the reference layer’s

Override reference grid offset X

Optional

GRID_OFFSET_X

[Zahl]

Offset in X direction to apply to cells grid

Override reference grid offset Y

Optional

GRID_OFFSET_Y

[Zahl]

Offset in Y direction to apply to cells grid

Clip to extent

Optional

EXTENT

[Ausdehnung]

Specify the extent of the output raster layer. It will internally be extended to a multiple of the tile size.

Verfügbare Methoden sind:

  • Aus Layer berechnen…: verwendet die Ausdehnung eines im aktuellen Projekt geladenen Layers

  • Berechne aus Layout-Karte…: verwendet die Ausdehnung eines Layout-Kartenelements im aktiven Projekt

  • Berechne aus Lesezeichen…: verwendet den Bereich eines gespeicherten Lesezeichens

  • Ausdehnung der Kartenansicht verwenden

  • Auf Karte zeichnen: Klicken und ziehen Sie ein Rechteck, das den zu berücksichtigenden Bereich abgrenzt

  • Geben Sie die Koordinaten als xmin, xmax, ymin, ymax ein.

Ausgaben

Bezeichnung

Name

Typ

Beschreibung

Aligned rasters

OUTPUT_LAYERS

[raster] [list]

output rasters with pixels resampled

Pythoncode

Algorithm ID: native:alignrasters

import processing
processing.run("algorithm_id", {parameter_dictionary})

Die Algorithmus-Kennung wird angezeigt, wenn Sie den Mauszeiger über den Algorithmus in der Verarbeitungs-Werkzeugkiste bewegen. Die Parameter-Liste (parameter_dictionary) enthält die Namen und Werte der Parameter. Siehe Verarbeitungs-Algorithmen von der Konsole aus verwenden für Details zur Ausführung von Verarbeitungsalgorithmen über die Python-Konsole.

28.1.18.3. Convert map to raster

Creates a raster image of map canvas content.

A map theme can be selected to render a predetermined set of layers with a defined style for each layer.

Alternatively, a single layer can be selected if no map theme is set.

If neither map theme nor layer is set, the current map content will be rendered. The minimum extent entered will internally be extended to be a multiple of the tile size.

Parameter

Bezeichnung

Name

Typ

Beschreibung

Minimum extent to render (xmin, xmax, ymin, ymax)

EXTENT

[Ausdehnung]

Specify the extent of the output raster layer. It will internally be extended to a multiple of the tile size.

Verfügbare Methoden sind:

  • Aus Layer berechnen…: verwendet die Ausdehnung eines im aktuellen Projekt geladenen Layers

  • Berechne aus Layout-Karte…: verwendet die Ausdehnung eines Layout-Kartenelements im aktiven Projekt

  • Berechne aus Lesezeichen…: verwendet den Bereich eines gespeicherten Lesezeichens

  • Ausdehnung der Kartenansicht verwenden

  • Auf Karte zeichnen: Klicken und ziehen Sie ein Rechteck, das den zu berücksichtigenden Bereich abgrenzt

  • Geben Sie die Koordinaten als xmin, xmax, ymin, ymax ein.

Tile size

TILE_SIZE

[Zahl]

Default: 1024

Size of the tile of the output raster layer. Minimum value: 64.

Map units per pixel

MAP_UNITS_PER_PIXEL

[Zahl]

Default: 100.0

Pixel size (in map units). Minimum value: 0.0

Make background transparent

MAKE_BACKGROUND_TRANSPARENT

[Boolean]

Standard: falsch

Allows exporting the map with a transparent background. Outputs an RGBA (instead of RGB) image if set to True.

Map theme to render

Optional

MAP_THEME

[enumeration]

Use an existing map theme for the rendering.

Single layer to render

Optional

LAYER

[enumeration]

Choose a single layer for the rendering

Ausgabelayer

OUTPUT

[Raster]

Standard: [Save to temporary file]

Specification of the output raster. One of:

  • Speichern in eine temporäre Datei

  • In Datei speichern…

Ausgaben

Bezeichnung

Name

Typ

Beschreibung

Ausgabelayer

OUTPUT

[Raster]

Output raster layer

Pythoncode

Algorithm ID: native:rasterize

import processing
processing.run("algorithm_id", {parameter_dictionary})

Die Algorithmus-Kennung wird angezeigt, wenn Sie den Mauszeiger über den Algorithmus in der Verarbeitungs-Werkzeugkiste bewegen. Die Parameter-Liste (parameter_dictionary) enthält die Namen und Werte der Parameter. Siehe Verarbeitungs-Algorithmen von der Konsole aus verwenden für Details zur Ausführung von Verarbeitungsalgorithmen über die Python-Konsole.

28.1.18.4. Fill NoData cells

Resets the NoData values in the input raster to a chosen value, resulting in raster dataset with no NoData pixels.

The algorithm respects the input raster data type, e.g. a floating point fill value will be truncated when applied to an integer raster.

../../../../_images/fill_nodata.png

Abb. 28.39 Filling NoData values (in grey) of a raster

Parameter

Bezeichnung

Name

Typ

Beschreibung

Input raster

INPUT

[Raster]

The raster to process.

Band number

BAND

[Zahl]

Standard: 1

The band of the raster

Fill value

FILL_VALUE

[Zahl]

Standard: 1.0

Set the value to use for the NoData pixels

Output raster

OUTPUT

[Raster]

Standard: [Save to temporary file]

Specification of the output raster. One of:

  • Speichern in eine temporäre Datei

  • In Datei speichern…

Ausgaben

Bezeichnung

Name

Typ

Beschreibung

Output raster

OUTPUT

[Raster]

The output raster layer with filled data cells.

Pythoncode

Algorithm ID: native:fillnodata

import processing
processing.run("algorithm_id", {parameter_dictionary})

Die Algorithmus-Kennung wird angezeigt, wenn Sie den Mauszeiger über den Algorithmus in der Verarbeitungs-Werkzeugkiste bewegen. Die Parameter-Liste (parameter_dictionary) enthält die Namen und Werte der Parameter. Siehe Verarbeitungs-Algorithmen von der Konsole aus verwenden für Details zur Ausführung von Verarbeitungsalgorithmen über die Python-Konsole.

28.1.18.5. Generate XYZ tiles (Directory)

Generates raster “XYZ” tiles using the current QGIS project as individual images to a directory structure.

Optionally, a Leaflet HTML output file using the generated tiles as a map layer could be created.

Parameter

Grundlegende Parameter

Bezeichnung

Name

Typ

Beschreibung

Extent (xmin, xmax, ymin, ymax)

EXTENT

[Ausdehnung]

Specify the extent of the tiles. It will internally be extended to a multiple of the tile size.

Verfügbare Methoden sind:

  • Aus Layer berechnen…: verwendet die Ausdehnung eines im aktuellen Projekt geladenen Layers

  • Berechne aus Layout-Karte…: verwendet die Ausdehnung eines Layout-Kartenelements im aktiven Projekt

  • Berechne aus Lesezeichen…: verwendet den Bereich eines gespeicherten Lesezeichens

  • Ausdehnung der Kartenansicht verwenden

  • Auf Karte zeichnen: Klicken und ziehen Sie ein Rechteck, das den zu berücksichtigenden Bereich abgrenzt

  • Geben Sie die Koordinaten als xmin, xmax, ymin, ymax ein.

Minimum zoom

ZOOM_MIN

[Zahl]

Default: 12

Minimum 0, maximum 25.

Maximum zoom

ZOOM_MAX

[Zahl]

Default: 12

Minimum 0, maximum 25.

DPI

DPI

[Zahl]

Default: 96

Minimum 48, maximum 600.

Background color

Optional

BACKGROUND_COLOR

[color]

Default: QColor(0, 0, 0, 0)

Choose the background color for the tiles

Enable antialiasing

ANTIALIAS

[Boolean]

Default: True

Determines if antialiasing should be enabled

Tile format

TILE_FORMAT

[enumeration]

Default: 0

One of:

  • 0 — PNG

  • 1 — JPG

Quality (JPG only)

Optional

QUALITY

[Zahl]

Default: 75

Minimum 1, maximum 100.

Metatile size

Optional

METATILESIZE

[Zahl]

Default: 4

Specify a custom metatile size when generating XYZ tiles. Larger values may speed up the rendering of tiles and provide better labelling (fewer gaps without labels) at the expense of using more memory. Minimum 1, maximum 20.

Tile width

Optional

TILE_WIDTH

[Zahl]

Default: 256

Minimum 1, maximum 4096.

Tile height

Optional

TILE_HEIGHT

[Zahl]

Default: 256

Minimum 1, maximum 4096.

Use inverted tile Y axis (TMS conventions)

Optional

TMS_CONVENTION

[Boolean]

Standard: falsch

Ausgabeverzeichnis

Optional

OUTPUT_DIRECTORY

[Verzeichnis]

Standard: [In temporärerem Verzeichnis speichern]

Specification of the output directory (for the tiles). One of:

  • Ausgabe übersrpingen

  • In einem temporären Verzeichnis speichern

  • In Verzeichnis speichern

Output html (Leaflet)

Optional

OUTPUT_HTML

[html]

Standard: [Save to temporary file]

Specification of the output HTML file. One of:

  • Ausgabe übersrpingen

  • Speichern in eine temporäre Datei

  • In Datei speichern…

Fortgeschrittene Parameter

NEW in 3.30

Bezeichnung

Name

Typ

Beschreibung

Leaflet HTML output title

Optional

HTML_TITLE

[string]

Default: Not set

HTML <title>-tag used for the Leaflet HTML output file.

Leaflet HTML output attribution

Optional

HTML_ATTRIBUTION

[string]

Default: Not set

Custom map attribution used for the Leaflet HTML output file. HTML links are possible.

Include OpenStreetMap basemap in Leaflet HTML output

Optional

HTML_OSM

[Boolean]

Standard: falsch

An OpenStreetMap basemap layer (source: https://tile.openstreetmap.org) is included in the Leaflet HTML output file. Proper map attribution is added automatically.

Ausgaben

Bezeichnung

Name

Typ

Beschreibung

Ausgabeverzeichnis

OUTPUT_DIRECTORY

[Verzeichnis]

Output directory (for the tiles)

Output html (Leaflet)

OUTPUT_HTML

[html]

The output HTML (Leaflet) file

Pythoncode

Algorithm ID: native:tilesxyzdirectory

import processing
processing.run("algorithm_id", {parameter_dictionary})

Die Algorithmus-Kennung wird angezeigt, wenn Sie den Mauszeiger über den Algorithmus in der Verarbeitungs-Werkzeugkiste bewegen. Die Parameter-Liste (parameter_dictionary) enthält die Namen und Werte der Parameter. Siehe Verarbeitungs-Algorithmen von der Konsole aus verwenden für Details zur Ausführung von Verarbeitungsalgorithmen über die Python-Konsole.

28.1.18.6. Generate XYZ tiles (MBTiles)

Generates raster “XYZ” tiles using the current QGIS project as a single file in the “MBTiles” format.

Parameter

Bezeichnung

Name

Typ

Beschreibung

Extent (xmin, xmax, ymin, ymax)

EXTENT

[Ausdehnung]

Specify the extent of the tiles. It will internally be extended to a multiple of the tile size.

Verfügbare Methoden sind:

  • Aus Layer berechnen…: verwendet die Ausdehnung eines im aktuellen Projekt geladenen Layers

  • Berechne aus Layout-Karte…: verwendet die Ausdehnung eines Layout-Kartenelements im aktiven Projekt

  • Berechne aus Lesezeichen…: verwendet den Bereich eines gespeicherten Lesezeichens

  • Ausdehnung der Kartenansicht verwenden

  • Auf Karte zeichnen: Klicken und ziehen Sie ein Rechteck, das den zu berücksichtigenden Bereich abgrenzt

  • Geben Sie die Koordinaten als xmin, xmax, ymin, ymax ein.

Minimum zoom

ZOOM_MIN

[Zahl]

Default: 12

Minimum 0, maximum 25.

Maximum zoom

ZOOM_MAX

[Zahl]

Default: 12

Minimum 0, maximum 25.

DPI

DPI

[Zahl]

Default: 96

Minimum 48, maximum 600.

Background color

Optional

BACKGROUND_COLOR

[color]

Default: QColor(0, 0, 0, 0)

Choose the background color for the tiles

Enable antialiasing

ANTIALIAS

[Boolean]

Default: True

Determines if antialiasing should be enabled

Tile format

TILE_FORMAT

[enumeration]

Default: 0

One of:

  • 0 — PNG

  • 1 — JPG

Quality (JPG only)

Optional

QUALITY

[Zahl]

Default: 75

Minimum 1, maximum 100.

Metatile size

Optional

METATILESIZE

[Zahl]

Default: 4

Specify a custom metatile size when generating XYZ tiles. Larger values may speed up the rendering of tiles and provide better labelling (fewer gaps without labels) at the expense of using more memory. Minimum 1, maximum 20.

Output file (for MBTiles)

OUTPUT_FILE

[Datei]

Standard: [Save to temporary file]

Specification of the output file. One of:

  • Ausgabe übersrpingen

  • Speichern in eine temporäre Datei

  • In Datei speichern…

Ausgaben

Bezeichnung

Name

Typ

Beschreibung

Output file (for MBTiles)

OUTPUT_FILE

[Datei]

The output file.

Pythoncode

Algorithm ID: native:tilesxyzmbtiles

import processing
processing.run("algorithm_id", {parameter_dictionary})

Die Algorithmus-Kennung wird angezeigt, wenn Sie den Mauszeiger über den Algorithmus in der Verarbeitungs-Werkzeugkiste bewegen. Die Parameter-Liste (parameter_dictionary) enthält die Namen und Werte der Parameter. Siehe Verarbeitungs-Algorithmen von der Konsole aus verwenden für Details zur Ausführung von Verarbeitungsalgorithmen über die Python-Konsole.