24.2.3. Extrair raster¶
24.2.3.1. Recortar raster extensão¶
Clips qualquer GDAL suportado raster arquivo para um dado extensão
This algorithm is derived from the GDAL warp utility.
Default menu:
Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Camada de entrada |
|
[raster] |
The input raster |
Clipping extent |
|
[extent] |
Extent that should be used for the output raster. Only pixels within the specified bounding box will be included in the output. |
Assign a specified nodata value to output bands Opcional |
|
[number] Padrão: Nenhum |
Defines a value that should be inserted for the nodata values in the output raster |
Opções de criação adicionais Opcional |
|
[string] Padrão: ‘’ |
Para adicionar uma ou mais opções de criação que controlam o raster a ser criado (cores, tamanho do bloco, compactação de arquivos …). Por conveniência, você pode contar com perfis predefinidos (veja seção de opções do driver GDAL). For Batch Process: separate multiple options with a pipe
character ( |
Tipo de dados de saída |
|
[enumeration] Padrão: 0 |
Define o formato do arquivo de raster saída. Opções:
|
Parâmetros adicionais da linha de comando Opcional |
|
[string] Padrão: Nenhum |
Adicionar opções extras de linha de comando GDAL |
Clipped (extent) |
|
[raster] Default: ‘[Save to temporary file]’ |
Especificação da camada raster de saída. Um de:
A codificação do arquivo também pode ser alterada aqui. |
Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Clipped (extent) |
|
[raster] |
Output raster layer clipped by the given extent |
Python code¶
Algorithm ID: gdal:cliprasterbyextent
import processing
processing.run("algorithm_id", {parameter_dictionary})
The algorithm id is displayed when you hover over the algorithm in the Processing Toolbox. The parameter dictionary provides the parameter NAMEs and values. See Usando os algoritmos do processamento a partir do Terminal Python. for details on how to run processing algorithms from the Python console.
24.2.3.2. Recortar raster por camada de máscara¶
Clips qualquer raster com suporte a GDAL por uma camada de máscara de Vetorial.
This algorithm is derived from the GDAL warp utility.
Default menu:
Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Camada de entrada |
|
[raster] |
The input raster |
Mask layer |
|
[vector: polygon] |
Vector mask for clipping the raster |
SRC de Origem |
|
[crs] |
Set the coordinate reference to use for the input raster |
SRC Alvo |
|
[crs] |
Set the coordinate reference to use for the mask layer |
Assign a specified nodata value to output bands Opcional |
|
[number] Padrão: Nenhum |
Defines a value that should be inserted for the nodata values in the output raster |
Create an output alpha band |
|
[boolean] Padrão: Falso |
Cria uma banda alfa para o resultado, resulta. A banda alfa inclui os valores de transparência dos pixels. |
Match the extent of the clipped raster to the extent of the mask layer |
|
[boolean] Padrão: Verdadeiro |
Aplica a extensão da camada vetorial à saída raster se checado. |
Keep resolution of input raster |
|
[boolean] Padrão: Falso |
The resolution of the output raster will not be changed |
Set output file resolution |
|
[boolean] Padrão: Falso |
Shall the output resolution (cell size) be specified |
X Resolution to output bands Opcional |
|
[number] Padrão: Nenhum |
The width of the cells in the output raster |
Y Resolution to output band Opcional |
|
[number] Padrão: Nenhum |
The height of the cells in the output raster |
Use multithreaded warping implementation |
|
[boolean] Padrão: Falso |
Two threads will be used to process chunks of image and perform input/output operation simultaneously. Note that computation is not multithreaded itself. |
Opções de criação adicionais Opcional |
|
[string] Padrão: ‘’ |
Para adicionar uma ou mais opções de criação que controlam o raster a ser criado (cores, tamanho do bloco, compactação de arquivos …). Por conveniência, você pode contar com perfis predefinidos (veja seção de opções do driver GDAL). For Batch Process: separate multiple options with a pipe
character ( |
Tipo de dados de saída |
|
[enumeration] Padrão: 0 |
Define o formato do arquivo de raster saída. Opções:
|
Parâmetros adicionais da linha de comando Opcional |
|
[string] Padrão: Nenhum |
Adicionar opções extras de linha de comando GDAL |
Clipped (mask) |
|
[raster] Default: ‘[Save to temporary file]’ |
Especificação da camada raster de saída. Um de:
A codificação do arquivo também pode ser alterada aqui. |
Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Clipped (mask) |
|
[raster] |
Output raster layer clipped by the vector layer |
Python code¶
Algorithm ID: gdal:cliprasterbymasklayer
import processing
processing.run("algorithm_id", {parameter_dictionary})
The algorithm id is displayed when you hover over the algorithm in the Processing Toolbox. The parameter dictionary provides the parameter NAMEs and values. See Usando os algoritmos do processamento a partir do Terminal Python. for details on how to run processing algorithms from the Python console.
24.2.3.3. contorno¶
Extrai linhas de contorno de qualquer raster de elevação suportada pelo GDAL.
This algorithm is derived from the GDAL contour utility.
Default menu:
Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Camada de entrada |
|
[raster] |
Input raster |
Band number |
|
[raster band] Default: 1 |
Raster band to create the contours from |
Interval between contour lines |
|
[number] Padrão: 10.0 |
Defines the interval between the contour lines in the given units of the elevation raster (minimum value 0) |
Attribute name (if not set, no elevation attribute is attached) Opcional |
|
[string] Default: ‘ELEV’ |
Provides a name for the attribute in which to put the elevation. |
Offset from zero relative to which to interpret intervals Opcional |
|
[number] Padrão: 0.0 |
|
Produce 3D vector |
|
[boolean] Padrão: Falso |
Força a produção de vetores 3D em vez de 2D. Inclui elevação em todos os vértice. |
Treat all raster values as valid |
|
[boolean] Padrão: Falso |
Ignora todos os valores de nodata no conjunto de dados. |
Input pixel value to treat as “nodata” Opcional |
|
[number] Padrão: Nenhum |
Defines a value that should be inserted for the nodata values in the output raster |
Parâmetros adicionais da linha de comando Opcional |
|
[string] Padrão: Nenhum |
Add extra GDAL command line options. Refer to the corresponding GDAL utility documentation. |
Contours |
|
[vector: line] Default: ‘[Save to temporary file]’ |
Specification of the output vector layer. One of:
A codificação do arquivo também pode ser alterada aqui. |
Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Contours |
|
[vector: line] |
Output vector layer with contour lines |
Python code¶
Algorithm ID: gdal:contour
import processing
processing.run("algorithm_id", {parameter_dictionary})
The algorithm id is displayed when you hover over the algorithm in the Processing Toolbox. The parameter dictionary provides the parameter NAMEs and values. See Usando os algoritmos do processamento a partir do Terminal Python. for details on how to run processing algorithms from the Python console.
24.2.3.4. Contour Polygons¶
Extracts contour polygons from any GDAL-supported elevation raster.
This algorithm is derived from the GDAL contour utility.
Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Camada de entrada |
|
[raster] |
Input raster |
Band number |
|
[raster band] Default: 1 |
Raster band to create the contours from |
Interval between contour lines |
|
[number] Padrão: 10.0 |
Defines the interval between the contour lines in the given units of the elevation raster (minimum value 0) |
Offset from zero relative to which to interpret intervals Opcional |
|
[number] Padrão: 0.0 |
|
Attribute name for minimum elevation of contour polygon Opcional |
|
[string] Default: ‘ELEV_MIN’ |
Provides a name for the attribute in which to put the minimum elevation of contour polygon. If not provided no minimum elevation attribute is attached. |
Attribute name for maximum elevation of contour polygon Opcional |
|
[string] Default: ‘ELEV_MAX’ |
Provides a name for the attribute in which to put the maximum elevation of contour polygon. If not provided no maximum elevation attribute is attached. |
Produce 3D vector |
|
[boolean] Padrão: Falso |
Força a produção de vetores 3D em vez de 2D. Inclui elevação em todos os vértice. |
Treat all raster values as valid |
|
[boolean] Padrão: Falso |
Ignora todos os valores de nodata no conjunto de dados. |
Input pixel value to treat as “nodata” Opcional |
|
[number] Padrão: Nenhum |
Defines a value that should be inserted for the nodata values in the output raster |
Parâmetros adicionais da linha de comando Opcional |
|
[string] Padrão: Nenhum |
Add extra GDAL command line options. Refer to the corresponding GDAL utility documentation. |
Contours |
|
[vector: polygon] Default: ‘[Save to temporary file]’ |
Specification of the output vector layer. One of:
A codificação do arquivo também pode ser alterada aqui. |
Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Contours |
|
[vector: polygon] |
Output vector layer with contour polygons |
Python code¶
Algorithm ID: gdal:contour_polygon
import processing
processing.run("algorithm_id", {parameter_dictionary})
The algorithm id is displayed when you hover over the algorithm in the Processing Toolbox. The parameter dictionary provides the parameter NAMEs and values. See Usando os algoritmos do processamento a partir do Terminal Python. for details on how to run processing algorithms from the Python console.