[GDAL] 抽出

範囲によるラスタクリップ

Description

Clips any GDAL-supported raster file to a given extent. The algorithm is derived from the GDAL grid utility .

パラメーター

Input layer [raster]
Input raster file.
Nodata value, leave as none to take the nodata value from input [string]

Defines a value that should be inserted for the nodata values in the output raster.

Default: none

Clipping extent [extent]

出力ラスタのために使用されるべき範囲。指定されたバウンディングボックス内の機能だけを選択します。

Default: 0,1,0,1

Additional creation parameters [string]

Optional.

<put parameter description here>

Default: (not set)

Outputs

Output layer [raster]
Output raster layer.

Console usage

processing.runalg('gdalogr:cliprasterbyextent', input, no_data, projwin, extra, output)

See also

Clip raster by mask layer

Description

クリップベクトルマスク層によって任意GDALサポートラスター。アルゴリズムは、_ `` GDALグリッドユーティリティ<http://www.gdal.org/gdal_grid.html>に由来しています。

パラメーター

Input layer [raster]
Input raster layer.
Mask layer [vector: polygon]
Defines the vector mask for clipping the raster.
Nodata value, leave as none to take the nodata value from input [string]

Defines a value for the no-data areas of the input raster.

Default: none

Create and output alpha band [boolean]

結果のアルファバンドを作成します。アルファバンドは、次いで、ピクセルの透明度値を含みます。

Default: False

Keep resolution of output raster [boolean]

The resolution of the output raster will not be changed.

Default: False

Additional creation parameters [string]

Optional.

<put parameter description here>

Default: (not set)

Outputs

Output layer [raster]
Output raster layer.

Console usage

processing.runalg('gdalogr:cliprasterbymasklayer', input, mask, no_data, alpha_band, keep_resolution, extra, output)

See also

Contour

Description

任意GDALサポート標高ラスタから輪郭線を抽出します。アルゴリズムは_ `GDAL輪郭ユーティリティ<http://www.gdal.org/gdal_contour.html>から誘導されます。

パラメーター

Input layer [raster]
Input elevation raster.
Interval between contour lines [number]

Defines the interval between the contour lines in the given units of the elevation raster.

Default: 10.0

``属性名(設定されていない場合は、標高属性が添付されていない)、 `` [ストリング]

Optional.

等高線の値を含むフィールドの属性名を定義します。何もしない場合、デフォルトの名前は「ELEV」になります定義します。

Default: ELEV

Additional creation parameters [string]

Optional.

<put parameter description here>

Default: (not set)

Outputs

Output file for contour lines (vector) [vector]
<put output description here>

Console usage

processing.runalg('gdalogr:contour', input_raster, interval, field_name, extra, output_vector)

See also