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

` `

Extracción GDAL

Cortar raster por extensión

Descripción

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

Parametros

Capa de entrada [raster]

Archivo ráster de entrada

Valor sin dato, deja como ninguno para tomar el valor sin dato de entrada [string]

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

Por defecto: None

Clipping extent [extent]

Extent that should be used for the output raster. Selects only features within the specified bounding box.

Por defecto: 0,1,0,1

Additional creation parameters [string]

Opcional

<colocar la descripción de parámetros aquí>

Por defecto: (no establecer)

Salidas

Capa de salida [raster]

Capa ráster de salida.

Uso de la consola

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

Ver también

Cortar ráster por capa de máscara

Descripción

Clips any GDAL-supported raster by a vector mask layer. The algorithm is derived from the GDAL grid utility .

Parametros

Capa de entrada [raster]

Capa ráster de entrada.

Capa de máscara [vector: polygon]
Defines the vector mask for clipping the raster.
Valor sin dato, deja como ninguno para tomar el valor sin dato de entrada [string]

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

Por defecto: None

Crear y sacar banda alfa [boolean]

Creates an alpha band for the result. The alpha band then includes the transparency values of the pixels.

Predeterminado: False

Mantener resoluciónd e ráster de salida [boolean]

The resolution of the output raster will not be changed.

Predeterminado: False

Additional creation parameters [string]

Opcional

<colocar la descripción de parámetros aquí>

Por defecto: (no establecer)

Salidas

Capa de salida [raster]

Capa ráster de salida.

Uso de la consola

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

Ver también

Curvas de nivel

Descripción

Extracts contour lines from any GDAL-supported elevation raster. The algorithm is derived from the GDAL contour utility .

Parametros

Capa de entrada [raster]
Input elevation raster.
Intervalo entre curvas de nivel [number]

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

Por defecto: 10.0

Nombre del atributo (si no se establece, no se adjuntará ningún atributo de altitud) [string]

Opcional

Defines the attribute name for the field containing the values of the contour lines. If nothing is defines the default name will be ‘ELEV’.

Por defecto: ELEV

Additional creation parameters [string]

Opcional

<colocar la descripción de parámetros aquí>

Por defecto: (no establecer)

Salidas

Archivo de salida para curvas de nivel (vectorial) [vector]

<colocar aquí la descripción de la salida>

Uso de la consola

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

Ver también