[GDAL] 投影

投影法を抽出する

説明

ラスターファイルの投影を抽出し、世界的にファイルに書き込みます。アルゴリズムは_ユーティリティ<http://www.gdal.org/gdalsrsinfo.html> srsinfo `` GDAL由来します。

Parameters

Input file [raster]
input raster file.
Create also .prj file [boolean]

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

Default: False

Outputs

Console usage

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

See also

Warp (reproject)

説明

別の座標参照系(CRS)にラスタレイヤを転送します。出力ファイルの解像度とリサンプリング方法を選択できます。アルゴリズムは_ `GDALワープユーティリティ<http://www.gdal.org/gdalwarp.html>から誘導されます。

Parameters

Input layer [raster]
Input raster layer.
Source SRS (EPSG Code) [crs]

Defines the CRS of the input raster layer.

Default: EPSG:4326

Destination SRS (EPSG Code) [crs]

Defines the target CRS of the raster layer.

Default: EPSG:4326

Output file resolution in target georeferenced units (leave 0 for no change) [number]

Defines the output file resolution of reprojection result.

Default: 0.0

Resampling method [selection]

再投影のためにいくつかのリサンプリング方法は選択できます。デフォルトでは、近くにリサンプリング方法が選択されています。

Options:

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

Default: 0

Additional creation parameters [string]

Optional.

<put parameter description here>

Default: (not set)

Output raster type [selection]

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

Options:

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

Default: 5

Outputs

Output layer [raster]
<put output description here>

Console usage

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

See also