Wichtig

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

28.2.5. Rasterprojektionen

28.2.5.1. Projektion zuweisen

Wendet ein Koordinatenbezugssystem auf ein Rasterdatensatz an.

This algorithm is derived from the GDAL edit utility.

Default menu: Raster ► Projections

Parameter

Bezeichnung

Name

Typ

Beschreibung

Eingabe-Layer

INPUT_LAYER

[Raster]

Input raster layer

Gewünschte KBS

CRS

[KBS]

The projection (CRS) of the output layer

Ausgaben

Bezeichnung

Name

Typ

Beschreibung

Layer with projection

OUTPUT

[Raster]

The output raster layer (with the new projection information)

Pythoncode

Algorithm ID: gdal:assignprojection

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.2.5.2. Projektion extrahieren

Extracts the projection of a raster file and writes it into a world file with extension .wld.

This algorithm is derived from the GDAL srsinfo utility.

Default menu: Raster ► Projections

Parameter

Bezeichnung

Name

Typ

Beschreibung

Input file

INPUT_LAYER

[Raster]

Input raster The raster layer has to be file based, as the algorithm uses the path to the raster file as the location of the generated .wld file. Using a non-file raster layer will lead to an error.

Create also .prj file

PRJ_FILE_CREATE

[Boolean]

Standard: falsch

If this is activated a .prj file containing the projection information is also created.

Ausgaben

Bezeichnung

Name

Typ

Beschreibung

World file

WORLD_FILE

[Datei]

Text file with extension .wld containing transformation parameters for the raster file.

ESRI Shapefile prj file

PRJ_FILE

[Datei]

Text file with .prj extension that describes the CRS. Will be None if Create also .prj file is False.

Pythoncode

Algorithm ID: gdal:extractprojection

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.2.5.3. Warp (reproject)

Reprojects a raster layer into another Coordinate Reference System (CRS). The output file resolution and the resampling method can be chosen.

This algorithm is derived from the GDAL warp utility.

Default menu: Raster ► Projections

Parameter

Grundlegende Parameter

Bezeichnung

Name

Typ

Beschreibung

Eingabe-Layer

INPUT

[Raster]

Input raster layer to reproject

Source CRS

Optional

SOURCE_CRS

[KBS]

Defines the CRS of the input raster layer

Ziel KBS

Optional

TARGET_CRS

[KBS]

Default: EPSG:4326

The CRS of the output layer

Resampling method to use

RESAMPLING

[enumeration]

Default: 0

Pixel value resampling method to use. Options:

  • 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)

NoData value for output bands

Optional

NODATA

[Zahl]

Default: None

Sets NoData value for output bands. If not provided, then NoData values will be copied from the source dataset.

Output file resolution in target georeferenced units

Optional

TARGET_RESOLUTION

[Zahl]

Default: None

Defines the output file resolution of reprojection result

Reprojiziert

OUTPUT

[Raster]

Standard: [Save to temporary file]

Specification of the output raster layer. One of:

  • Speichern in eine temporäre Datei

  • In Datei speichern…

Fortgeschrittene Parameter

Bezeichnung

Name

Typ

Beschreibung

Additional creation options

Optional

OPTIONS

[string]

Default: ‚‘

For adding one or more creation options that control the raster to be created (colors, block size, file compression…). For convenience, you can rely on predefined profiles (see GDAL driver options section).

Batch Process and Model Designer: separate multiple options with a pipe character (|).

Output data type

DATA_TYPE

[enumeration]

Default: 0

Defines the format of the output raster file. Options:

  • 0 — Use Input Layer Data Type

  • 1 — Byte (Eight bit unsigned integer (quint8))

  • 2 — Int16 (Sixteen bit signed integer (qint16))

  • 3 — UInt16 (Sixteen bit unsigned integer (quint16))

  • 4 — UInt32 (Thirty two bit unsigned integer (quint32))

  • 5 — Int32 (Thirty two bit signed integer (qint32))

  • 6 — Float32 (Thirty two bit floating point (float))

  • 7 — Float64 (Sixty four bit floating point (double))

  • 8 — CInt16 (Complex Int16)

  • 9 — CInt32 (Complex Int32)

  • 10 — CFloat32 (Complex Float32)

  • 11 — CFloat64 (Complex Float64)

  • 12 — Int8 (Eight bit signed integer (qint8))

Available options depend on the GDAL version built with QGIS (see Help ► About menu)

Georeferenced extents of output file to be created

Optional

TARGET_EXTENT

[Ausdehnung]

Sets the georeferenced extent of the output file to be created (in the Target CRS by default. In the CRS of the target raster extent, if specified).

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.

CRS of the target raster extent

Optional

TARGET_EXTENT_CRS

[KBS]

Specifies the CRS in which to interpret the coordinates given for the extent of the output file. This must not be confused with the target CRS of the output dataset. It is instead a convenience e.g. when knowing the output coordinates in a geodetic long/lat CRS, but wanting a result in a projected coordinate system.

Use multithreaded warping implementation

MULTITHREADING

[Boolean]

Standard: falsch

Two threads will be used to process chunks of the image and perform input/output operations simultaneously. Note that the computation itself is not multithreaded.

Additional command-line parameters

Optional

EXTRA

[string]

Default: None

Add extra GDAL command line options.

Ausgaben

Bezeichnung

Name

Typ

Beschreibung

Reprojiziert

OUTPUT

[Raster]

Standard: [Save to temporary file]

Reprojected output raster layer

Pythoncode

Algorithm ID: gdal:warpreproject

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.