Outdated version of the documentation. Find the latest one here.

` `

GDAL Projektionen

Projektion extrahieren

Beschreibung

Extracts the projection of a raster file and writes it into a world-file. The algorithm is derived from the the GDAL srsinfo utility .

Parameter

Eingabelayer [raster]

Eingaberasterdatei.

Auch .prj-Datei erzeugen [boolean]

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

Vorgabe: False

Ausgaben

Verwendung der Konsole

processing.runalg('gdalogr:extractprojection', input, prj_file)

Siehe auch

Transformieren (Reprojizieren)

Beschreibung

Transfers a raster layer into another Coordinate Reference System (CRS). The output file resolution and the resampling method can be chosen. The algorithm is derived from the GDAL warp utility .

Parameter

Eingabelayer [raster]

Eingaberasterlayer.

Quell-KBS (EPSG Code) [crs]

Defines the CRS of the input raster layer.

Vorgabe: EPSG:4326

Ziel-KBS (EPSG Code) [crs]

Defines the target CRS of the raster layer.

Vorgabe: EPSG:4326

Auflösung der Ausgabedatei in georeferenzierten Zieleinheiten (0 bedeutet keine Änderung) [number]

Defines the output file resolution of reprojection result.

Vorgabe: 0.0

Abtastmethode [selection]

Several resampling methods can be chosen for the reprojection. By default a near resampling method is chosen.

Optionen:

  • 0 — near
  • 1 — bilinear
  • 2 — cubic
  • 3 — cubicspline
  • 4 — lanczos

Vorgabe: 0

Weitere Erzeugungsparameter [string]

Optional.

<geben Sie hier die Parameterbeschreibung ein>

Vorgabe: (not set)

Ausgaberastertyp [selection]

Defines the format of the output raster file. By default this is Float32.

Optionen:

  • 0 — Byte
  • 1 — Int16
  • 2 — UInt16
  • 3 — UInt32
  • 4 — Int32
  • 5 — Float32
  • 6 — Float64
  • 7 — CInt16
  • 8 — CInt32
  • 9 — CFloat32
  • 10 — CFloat64

Vorgabe: 5

Ausgaben

Ausgaberaster [raster]

<fügen Sie hier die Übersetzung der Ausgabe ein>

Verwendung der Konsole

processing.runalg('gdalogr:warpreproject', input, source_srs, dest_srs, tr, method, extra, rtype, output)

Siehe auch