23.2.1. Análise Raster¶
23.2.1.1. Aspecto¶
Gera um mapa de aspecto de qualquer elevação raster suportada pelo GDAL. Aspecto é a direção da bússola que um declive enfrenta. Os píxels terão um valor de 0-360° medidos em graus a partir do norte indicando o azimute. No hemisfério norte, o lado norte dos declives é frequentemente sombreado (pequeno azimute de 0-90°), enquanto o lado sul recebe mais radiação solar (azimute maior de 180-270°).
This algorithm is derived from the GDAL DEM utility.
Default menu:
23.2.1.1.1. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Camada de entrada |
|
[raster] |
Input elevation raster layer |
Band number |
|
[raster band] Padrão: 1 |
The number of the band to use as elevation |
Return trigonometric angle instead of azimuth |
|
[boolean] Padrão: Falso |
Activating the trigonometric angle results in different categories: 0° (East), 90° (North), 180° (West), 270° (South). |
Return 0 for flat instead of -9999 |
|
[boolean] Padrão: Falso |
Ativando esta opção será inserido um valor 0 para o valor -9999 em áreas planas. |
Compute edges |
|
[boolean] Padrão: Falso |
Generates edges from the elevation raster |
Use Zevenbergen&Thorne formula instead of the Horn’s one |
|
[boolean] Padrão: Falso |
Activates Zevenbergen&Thorne formula for smooth landscapes |
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). |
Parâmetros adicionais da linha de comando Opcional |
|
[string] Padrão: Nenhum |
Adicionar opções extras de linha de comando GDAL |
Aspecto |
|
[raster] Default: |
Output raster layer. One of:
A codificação do arquivo também pode ser alterada aqui. |
23.2.1.1.2. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Aspecto |
|
[raster] |
Output raster with angle values in degrees |
23.2.1.1.3. Python code¶
Algorithm ID: gdal:aspect
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.
23.2.1.2. Cor do relevo¶
Gera um mapa de relevo colorido a partir de qualquer elevação raster suportada pelo GDAL. Os relevos coloridos podem ser usados particularmente para retratar elevações. A saída do algoritmo produz uma imagem raster de 4 bandas com valores calculados a partir da elevação e um arquivo de configuração de cor baseado em texto. Por padrão, as cores entre os valores de elevação fornecidos são combinadas suavemente e o resultado é uma boa imagem raster com elevação colorida.
This algorithm is derived from the GDAL DEM utility.
23.2.1.2.1. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Camada de entrada |
|
[raster] |
Input elevation raster layer |
Band number |
|
[raster band] Padrão: 1 |
The number of the band to use as elevation |
Compute edges |
|
[boolean] Padrão: Falso |
Generates edges from the elevation raster |
Color configuration file |
|
[file] |
A text-based color configuration file |
Matching mode |
|
[enumeration] Padrão: 2 |
Um de:
|
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). |
Parâmetros adicionais da linha de comando Opcional |
|
[string] Padrão: Nenhum |
Adicionar opções extras de linha de comando GDAL |
Color relief |
|
[raster] Default: |
Output raster layer. One of:
A codificação do arquivo também pode ser alterada aqui. |
23.2.1.2.2. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Color relief |
|
[raster] |
A 4-band output raster |
23.2.1.2.3. Python code¶
Algorithm ID: gdal:colorrelief
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.
23.2.1.3. Preencher sem dados¶
Preencha as regiões de raster com sem valores de dados por interpolação das bordas. Os valores para as regiões sem dados são calculados pelos valores de píxels ao redor usando ponderação pelo inverso da distância. Após a interpolação uma suavização dos resultados ocorre. A entrada pode ser qualquer camada raster suportada pelo GDAL. Esse algoritmo é geralmente adequado para interpolar regiões ausentes de rasters de variação bastante contínua (como modelos de elevação por exemplo). Também é adequado para preencher pequenos buracos e rachaduras em imagens com variações mais irregulares (como fotos aéreas). Geralmente não é tão bom em interpolar um raster de dados pontuais esparsos.
This algorithm is derived from the GDAL fillnodata utility.
Default menu:
23.2.1.3.1. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Camada de entrada |
|
[raster] |
Camada raster de entrada |
Band number |
|
[raster band] Padrão: 1 |
A banda para operar. Sem valores de dados deve ser representado pelo valor 0. |
Maximum distance (in pixels) to search out for values to interpolate |
|
[number] Padrão: 10 |
The number of pixels to search in all directions to find values to interpolate from |
Number of smoothing iterations to run after the interpolation |
|
[number] Padrão: 0 |
O número de filtros 3x3 passa a ser executado (0 ou mais) para suavizar os resultados da interpolação. |
Do not use default validity mask for the input band |
|
[boolean] Padrão: Falso |
Activates the user-defined validity mask |
Validity mask |
|
[raster] |
A raster layer that defines the areas to fill. |
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). |
Parâmetros adicionais da linha de comando Opcional |
|
[string] Padrão: Nenhum |
Adicionar opções extras de linha de comando GDAL |
Filled |
|
[raster] Default: |
Especificação da camada raster de saída. Um de:
A codificação do arquivo também pode ser alterada aqui. |
23.2.1.3.2. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Filled |
|
[raster] |
Output raster |
23.2.1.3.3. Python code¶
Algorithm ID: gdal:fillnodata
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.
23.2.1.4. Grid (Data metrics)¶
Computes some data metrics using the specified window and output grid geometry.
This algorithm is derived from the GDAL grid utility.
Default menu:
Ver também
23.2.1.4.1. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Camada de pontos |
|
[vector: point] |
Input point vector layer |
Data metric to use |
|
[enumeration] Padrão: 0 |
Um de:
|
The first radius of search ellipse |
|
[number] Padrão: 0.0 |
The first radius (X axis if rotation angle is 0) of the search ellipse |
The second radius of search ellipse |
|
[number] Padrão: 0.0 |
The second radius (Y axis if rotation angle is 0) of the search ellipse |
Angle of search ellipse rotation in degrees (counter clockwise) |
|
[number] Padrão: 0.0 |
Ângulo de rotação da elipse em graus. A elipse é rotacionada no sentido horário. |
Minimum number of data points to use |
|
[number] Padrão: 0.0 |
Número mínimo de pontos de dados para calcular a média. Se a quantia de pontos encontrada é baixa o nó da grid é considerado vazio e será preenchido com o marcador SEM DADOS. |
Nodata |
|
[number] Padrão: 0.0 |
No data marker to fill empty points |
Z value from field Opcional |
|
[tablefield: numeric] |
Field for the interpolation |
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). |
Parâmetros adicionais da linha de comando Opcional |
|
[string] Padrão: Nenhum |
Adicionar opções extras de linha de comando GDAL |
Tipo de dados de saída |
|
[enumeration] Padrão: 5 |
Defines the data type of the output raster file. Options:
|
Interpolated (data metrics) |
|
[raster] Default: |
Specify the output raster layer with interpolated values. One of:
A codificação do arquivo também pode ser alterada aqui. |
23.2.1.4.2. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Interpolated (data metrics) |
|
[raster] |
Output raster with interpolated values |
23.2.1.4.3. Python code¶
Algorithm ID: gdal:griddatametrics
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.
23.2.1.5. Grid (IDW with nearest neighbor searching)¶
Computes the Inverse Distance to a Power gridding combined to the nearest neighbor method. Ideal when a maximum number of data points to use is required.
This algorithm is derived from the GDAL grid utility.
Ver também
23.2.1.5.1. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Camada de pontos |
|
[vector: point] |
Input point vector layer |
Weighting power |
|
[number] Padrão: 2.0 |
Weighting power |
Smoothing |
|
[number] Padrão: 0.0 |
Smoothing parameter |
The radius of the search circle |
|
[number] Padrão: 1.0 |
The radius of the search circle |
Maximum number of data points to use |
|
[number] Padrão: 12 |
Do not search for more points than this number. |
Minimum number of data points to use |
|
[number] Padrão: 0 |
Número mínimo de pontos de dados para calcular a média. Se a quantia de pontos encontrada é baixa o nó da grid é considerado vazio e será preenchido com o marcador SEM DADOS. |
Nodata |
|
[number] Padrão: 0.0 |
No data marker to fill empty points |
Z value from field Opcional |
|
[tablefield: numeric] |
Field for the interpolation |
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). |
Parâmetros adicionais da linha de comando Opcional |
|
[string] Padrão: Nenhum |
Adicionar opções extras de linha de comando GDAL |
Tipo de dados de saída |
|
[enumeration] Padrão: 5 |
Defines the data type of the output raster file. Options:
|
Interpolated (IDW with NN search) |
|
[raster] Default: |
Specify the output raster layer with interpolated values. One of:
A codificação do arquivo também pode ser alterada aqui. |
23.2.1.5.2. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Interpolated (IDW with NN search) |
|
[raster] |
Output raster with interpolated values |
23.2.1.5.3. Python code¶
Algorithm ID: gdal:gridinversedistancenearestneighbor
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.
23.2.1.6. Grid (Inverse distance to a power)¶
The Inverse Distance to a Power gridding method is a weighted average interpolator.
You should supply the input arrays with the scattered data values including coordinates of every data point and output grid geometry. The function will compute interpolated value for the given position in output grid.
This algorithm is derived from the GDAL grid utility.
Default menu:
Ver também
23.2.1.6.1. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Camada de pontos |
|
[vector: point] |
Input point vector layer |
Weighting power |
|
[number] Padrão: 2.0 |
Weighting power |
Smothing |
|
[number] Padrão: 0.0 |
Smoothing parameter |
The first radius of search ellipse |
|
[number] Padrão: 0.0 |
The first radius (X axis if rotation angle is 0) of the search ellipse |
The second radius of search ellipse |
|
[number] Padrão: 0.0 |
The second radius (Y axis if rotation angle is 0) of the search ellipse |
Angle of search ellipse rotation in degrees (counter clockwise) |
|
[number] Padrão: 0.0 |
Ângulo de rotação da elipse em graus. A elipse é rotacionada no sentido horário. |
Maximum number of data points to use |
|
[number] Padrão: 0 |
Do not search for more points than this number. |
Minimum number of data points to use |
|
[number] Padrão: 0 |
Número mínimo de pontos de dados para calcular a média. Se a quantia de pontos encontrada é baixa o nó da grid é considerado vazio e será preenchido com o marcador SEM DADOS. |
Nodata |
|
[number] Padrão: 0.0 |
No data marker to fill empty points |
Z value from field Opcional |
|
[tablefield: numeric] |
Field for the interpolation |
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). |
Parâmetros adicionais da linha de comando Opcional |
|
[string] Padrão: Nenhum |
Adicionar opções extras de linha de comando GDAL |
Tipo de dados de saída |
|
[enumeration] Padrão: 5 |
Defines the data type of the output raster file. Options:
|
Interpolated (IDW) |
|
[raster] Default: |
Specify the output raster layer with interpolated values. One of:
A codificação do arquivo também pode ser alterada aqui. |
23.2.1.6.2. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Interpolated (IDW) |
|
[raster] |
Output raster with interpolated values |
23.2.1.6.3. Python code¶
Algorithm ID: gdal:gridinversedistance
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.
23.2.1.7. Grid (Linear)¶
The Linear method perform linear interpolation by computing a Delaunay triangulation of the point cloud, finding in which triangle of the triangulation the point is, and by doing linear interpolation from its barycentric coordinates within the triangle. If the point is not in any triangle, depending on the radius, the algorithm will use the value of the nearest point or the NODATA value.
This algorithm is derived from the GDAL grid utility.
23.2.1.7.1. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Camada de pontos |
|
[vector: point] |
Input point vector layer |
Search distance |
|
[number] Default: -1.0 |
In case the point to be interpolated does not fit into a
triangle of the Delaunay triangulation, use that maximum
distance to search a nearest neighbour, or use nodata
otherwise.
If set to |
Nodata |
|
[number] Padrão: 0.0 |
No data marker to fill empty points |
Z value from field Opcional |
|
[tablefield: numeric] |
Field for the interpolation |
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). |
Parâmetros adicionais da linha de comando Opcional |
|
[string] Padrão: Nenhum |
Adicionar opções extras de linha de comando GDAL |
Tipo de dados de saída |
|
[enumeration] Padrão: 5 |
Defines the data type of the output raster file. Options:
|
Interpolated (Linear) |
|
[raster] Default: |
Specify the output raster layer with interpolated values. One of:
A codificação do arquivo também pode ser alterada aqui. |
23.2.1.7.2. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Interpolated (Linear) |
|
[raster] |
Output raster with interpolated values |
23.2.1.7.3. Python code¶
Algorithm ID: gdal:gridlinear
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.
23.2.1.8. Grid (média móvel)¶
A média móvel é um algoritmo simples que calcula a média de dados. Ele usa uma janela móvel de formato elíptico para procurar valores e calcular a média de todos os pontos de dados dentro da janela. A elipse de pesquisa pode ser rotacionada por um ângulo especificado, o centro da elipse localizado no nó da grid. Além disso, o número mínimo de pontos de dados para a média pode ser definido, se não houver pontos suficientes na janela, o nó da grid é considerado vazio e será preenchido com o valor SEM DADOS especificado.
This algorithm is derived from the GDAL grid utility.
Default menu:
Ver também
23.2.1.8.1. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Camada de pontos |
|
[vector: point] |
Input point vector layer |
The first radius of search ellipse |
|
[number] Padrão: 0.0 |
The first radius (X axis if rotation angle is 0) of the search ellipse |
The second radius of search ellipse |
|
[number] Padrão: 0.0 |
The second radius (Y axis if rotation angle is 0) of the search ellipse |
Angle of search ellipse rotation in degrees (counter clockwise) |
|
[number] Padrão: 0.0 |
Ângulo de rotação da elipse em graus. A elipse é rotacionada no sentido horário. |
Minimum number of data points to use |
|
[number] Padrão: 0.0 |
Número mínimo de pontos de dados para calcular a média. Se a quantia de pontos encontrada é baixa o nó da grid é considerado vazio e será preenchido com o marcador SEM DADOS. |
Nodata |
|
[number] Padrão: 0.0 |
No data marker to fill empty points |
Z value from field Opcional |
|
[tablefield: numeric] |
Field for the interpolation |
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). |
Parâmetros adicionais da linha de comando Opcional |
|
[string] Padrão: Nenhum |
Adicionar opções extras de linha de comando GDAL |
Tipo de dados de saída |
|
[enumeration] Padrão: 5 |
Defines the data type of the output raster file. Options:
|
Interpolated (moving average) |
|
[raster] Default: |
Specify the output raster layer. One of:
A codificação do arquivo também pode ser alterada aqui. |
23.2.1.8.2. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Interpolated (moving average) |
|
[raster] |
Output raster with interpolated values |
23.2.1.8.3. Python code¶
Algorithm ID: gdal:gridaverage
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.
23.2.1.9. Grid (Nearest neighbor)¶
The Nearest Neighbor method doesn’t perform any interpolation or smoothing, it just takes the value of nearest point found in grid node search ellipse and returns it as a result. If there are no points found, the specified NODATA value will be returned.
This algorithm is derived from the GDAL grid utility.
Default menu:
Ver também
23.2.1.9.1. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Camada de pontos |
|
[vector: point] |
Input point vector layer |
The first radius of search ellipse |
|
[number] Padrão: 0.0 |
The first radius (X axis if rotation angle is 0) of the search ellipse |
The second radius of search ellipse |
|
[number] Padrão: 0.0 |
The second radius (Y axis if rotation angle is 0) of the search ellipse |
Angle of search ellipse rotation in degrees (counter clockwise) |
|
[number] Padrão: 0.0 |
Ângulo de rotação da elipse em graus. A elipse é rotacionada no sentido horário. |
Nodata |
|
[number] Padrão: 0.0 |
No data marker to fill empty points |
Z value from field Opcional |
|
[tablefield: numeric] |
Field for the interpolation |
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). |
Parâmetros adicionais da linha de comando Opcional |
|
[string] Padrão: Nenhum |
Adicionar opções extras de linha de comando GDAL |
Tipo de dados de saída |
|
[enumeration] Padrão: 5 |
Defines the data type of the output raster file. Options:
|
Interpolated (Nearest neighbour) |
|
[raster] Default: |
Specify the output raster layer with interpolated values. One of:
A codificação do arquivo também pode ser alterada aqui. |
23.2.1.9.2. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Interpolated (Nearest neighbour) |
|
[raster] |
Output raster with interpolated values |
23.2.1.9.3. Python code¶
Algorithm ID: gdal:gridnearestneighbor
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.
23.2.1.10. Sombreamento¶
Outputs a raster with a nice shaded relief effect. It’s very useful for visualizing the terrain. You can optionally specify the azimuth and altitude of the light source, a vertical exaggeration factor and a scaling factor to account for differences between vertical and horizontal units.
This algorithm is derived from the GDAL DEM utility .
Default menu:
23.2.1.10.1. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Camada de entrada |
|
[raster] |
Input Elevation raster layer |
Band number |
|
[raster band] Padrão: 1 |
Band containing the elevation information |
Z factor (vertical exaggeration) |
|
[number] Padrão: 1.0 |
The factor exaggerates the height of the output elevation raster |
Scale (ratio of vert. units to horiz.) |
|
[number] Padrão: 1.0 |
The ratio of vertical units to horizontal units |
Azimuth of the light |
|
[number] Default: 315.0 |
Defines the azimuth of the light shining on the elevation raster in degrees. If it comes from the top of the raster the value is 0, if it comes from the east it is 90 a.s.o. |
Altitude of the light |
|
[number] Padrão: 45.0 |
Defines the altitude of the light, in degrees. 90 if the light comes from above the elevation raster, 0 if it is raking light. |
Compute edges |
|
[boolean] Padrão: Falso |
Generates edges from the elevation raster |
Use Zevenbergen&Thorne formula (instead of the Horn’s one) |
|
[boolean] Padrão: Falso |
Activates Zevenbergen&Thorne formula for smooth landscapes |
Combined shading |
|
[boolean] Padrão: Falso |
|
Multidirectional shading |
|
[boolean] Padrão: Falso |
|
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). |
Parâmetros adicionais da linha de comando Opcional |
|
[string] Padrão: Nenhum |
Adicionar opções extras de linha de comando GDAL |
Sombreamento |
|
[raster] Default: |
Specify the output raster layer with interpolated values. One of:
A codificação do arquivo também pode ser alterada aqui. |
23.2.1.10.2. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Sombreamento |
|
[raster] |
Output raster with interpolated values |
23.2.1.10.3. Python code¶
Algorithm ID: gdal:hillshade
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.
23.2.1.11. Near black¶
Converts nearly black/white borders to black.
This algorithm will scan an image and try to set all pixels that are nearly or exactly black, white or one or more custom colors around the collar to black or white. This is often used to “fix up” lossy compressed airphotos so that color pixels can be treated as transparent when mosaicking.
This algorithm is derived from the GDAL nearblack utility.
Default menu:
23.2.1.11.1. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Camada de entrada |
|
[raster] |
Input Elevation raster layer |
How far from black (white) |
|
[number] Padrão: 15 |
Select how far from black, white or custom colors the pixel values can be and still considered near black, white or custom color. |
Search for nearly white pixels instead of nearly black |
|
[boolean] Padrão: Falso |
Search for nearly white (255) pixels instead of nearly black pixels |
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). |
Parâmetros adicionais da linha de comando Opcional |
|
[string] Padrão: Nenhum |
Adicionar opções extras de linha de comando GDAL |
Nearblack |
|
[raster] Default: |
Specify the output raster layer. One of:
A codificação do arquivo também pode ser alterada aqui. |
23.2.1.11.2. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Nearblack |
|
[raster] |
Output raster |
23.2.1.11.3. Python code¶
Algorithm ID: gdal:nearblack
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.
23.2.1.12. Proximity (raster distance)¶
Generates a raster proximity map indicating the distance from the center of each pixel to the center of the nearest pixel identified as a target pixel. Target pixels are those in the source raster for which the raster pixel value is in the set of target pixel values.
This algorithm is derived from the GDAL proximity utility.
Default menu:
23.2.1.12.1. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Camada de entrada |
|
[raster] |
Input Elevation raster layer |
Band number |
|
[raster band] Padrão: 1 |
Band containing the elevation information |
A list of pixel values in the source image to be considered target pixels Opcional |
|
[string] Padrão: ‘’ |
A list of target pixel values in the source image to be considered target pixels. If not specified, all non-zero pixels will be considered target pixels. |
Distance units |
|
[enumeration] Padrão: 1 |
Indicate whether distances generated should be in pixel or georeferenced coordinates. One of:
|
The maximum distance to be generated Opcional |
|
[number] Padrão: 0.0 |
The maximum distance to be generated. The nodata value will be used for pixels beyond this distance. If a nodata value is not provided, the output band will be queried for its nodata value. If the output band does not have a nodata value, then the value 65535 will be used. Distance is interpreted according to the value of Distance units. |
Value to be applied to all pixels that are within the maxdist of target pixels Opcional |
|
[number] Padrão: 0.0 |
Specify a value to be applied to all pixels that are closer than the maximum distance from target pixels (including the target pixels) instead of a distance value. |
Nodata value to use for the destination proximity raster Opcional |
|
[number] Padrão: 0.0 |
Specify the nodata value to use for 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). |
Parâmetros adicionais da linha de comando Opcional |
|
[string] Padrão: Nenhum |
Adicionar opções extras de linha de comando GDAL |
Tipo de dados de saída |
|
[enumeration] Padrão: 5 |
Defines the data type of the output raster file. Options:
|
Proximity map |
|
[raster] Default: |
Specify the output raster layer. One of:
A codificação do arquivo também pode ser alterada aqui. |
23.2.1.12.2. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Proximity map |
|
[raster] |
Output raster |
23.2.1.12.3. Python code¶
Algorithm ID: gdal:proximity
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.
23.2.1.13. Roughness¶
Outputs a single-band raster with values computed from the elevation. Roughness is the degree of irregularity of the surface. It’s calculated by the largest inter-cell difference of a central pixel and its surrounding cell. The determination of the roughness plays a role in the analysis of terrain elevation data, it’s useful for calculations of the river morphology, in climatology and physical geography in general.
This algorithm is derived from the GDAL DEM utility.
Default menu:
23.2.1.13.1. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Camada de entrada |
|
[raster] |
Input elevation raster layer |
Band number |
|
[raster band] Padrão: 1 |
The number of the band to use as elevation |
Compute edges |
|
[boolean] Padrão: Falso |
Generates edges from the elevation 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). |
Roughness |
|
[raster] Default: |
Specify the output raster layer. One of:
A codificação do arquivo também pode ser alterada aqui. |
23.2.1.13.2. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Roughness |
|
[raster] |
Single-band output roughness raster. The value -9999 is used as nodata value. |
23.2.1.13.3. Python code¶
Algorithm ID: gdal:roughness
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.
23.2.1.14. Sieve¶
Removes raster polygons smaller than a provided threshold size (in pixels) and replaces them with the pixel value of the largest neighbour polygon. It is useful if you have a large amount of small areas on your raster map.
This algorithm is derived from the GDAL sieve utility.
Default menu:
23.2.1.14.1. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Camada de entrada |
|
[raster] |
Input elevation raster layer |
Threshold |
|
[number] Padrão: 10 |
Only raster polygons smaller than this size will be removed |
Use 8-connectedness |
|
[boolean] Padrão: Falso |
Use eight connectedness instead of four connectedness |
Do not use the default validity mask for the input band |
|
[boolean] Padrão: Falso |
|
Validity mask Opcional |
|
[raster] |
Validity mask to use instead of the default |
Parâmetros adicionais da linha de comando Opcional |
|
[string] Padrão: Nenhum |
Adicionar opções extras de linha de comando GDAL |
Sieved |
|
[raster] Default: |
Specify the output raster layer. One of:
A codificação do arquivo também pode ser alterada aqui. |
23.2.1.14.2. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Sieved |
|
[raster] |
Camada raster de saída |
23.2.1.14.3. Python code¶
Algorithm ID: gdal:sieve
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.
23.2.1.15. Pendiente¶
Generates a slope map from any GDAL-supported elevation raster. Slope is the angle of inclination to the horizontal. You have the option of specifying the type of slope value you want: degrees or percent slope.
This algorithm is derived from the GDAL DEM utility.
Default menu:
23.2.1.15.1. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Camada de entrada |
|
[raster] |
Input Elevation raster layer |
Band number |
|
[raster band] Padrão: 1 |
Band containing the elevation information |
Ratio of vertical units to horizontal |
|
[number] Padrão: 1.0 |
The ratio of vertical units to horizontal units |
Slope expressed as percent (instead of degrees) |
|
[boolean] Padrão: Falso |
Express slope as percent instead of degrees |
Compute edges |
|
[boolean] Padrão: Falso |
Generates edges from the elevation raster |
Use Zevenbergen&Thorne formula (instead of the Horn’s one) |
|
[boolean] Padrão: Falso |
Activates Zevenbergen&Thorne formula for smooth landscapes |
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). |
Parâmetros adicionais da linha de comando Opcional |
|
[string] Padrão: Nenhum |
Adicionar opções extras de linha de comando GDAL |
Slope |
|
[raster] Default: |
Specify the output raster layer. One of:
A codificação do arquivo também pode ser alterada aqui. |
23.2.1.15.2. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Slope |
|
[raster] |
Output raster |
23.2.1.15.3. Python code¶
Algorithm ID: gdal:slope
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.
23.2.1.16. Terrain Ruggedness Index (TRI)¶
Outputs a single-band raster with values computed from the elevation. TRI stands for Terrain Ruggedness Index, which is defined as the mean difference between a central pixel and its surrounding cells.
This algorithm is derived from the GDAL DEM utility.
Default menu:
23.2.1.16.1. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Camada de entrada |
|
[raster] |
Input elevation raster layer |
Band number |
|
[raster band] Padrão: 1 |
The number of the band to use as elevation |
Compute edges |
|
[boolean] Padrão: Falso |
Generates edges from the elevation 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). |
Terrain Ruggedness Index |
|
[raster] Default: |
Specify the output raster layer. One of:
A codificação do arquivo também pode ser alterada aqui. |
23.2.1.16.2. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Terrain Ruggedness Index |
|
[raster] |
Output ruggedness raster. The value -9999 is used as nodata value. |
23.2.1.16.3. Python code¶
Algorithm ID: gdal:triterrainruggednessindex
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.
23.2.1.17. Topographic Position Index (TPI)¶
Outputs a single-band raster with values computed from the elevation. TPI stands for Topographic Position Index, which is defined as the difference between a central pixel and the mean of its surrounding cells.
This algorithm is derived from the GDAL DEM utility.
Default menu:
23.2.1.17.1. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Camada de entrada |
|
[raster] |
Input elevation raster layer |
Band number |
|
[raster band] Padrão: 1 |
The number of the band to use for elevation values |
Compute edges |
|
[boolean] Padrão: Falso |
Generates edges from the elevation 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). |
Terrain Ruggedness Index |
|
[raster] Default: |
Specify the output raster layer. One of:
A codificação do arquivo também pode ser alterada aqui. |
23.2.1.17.2. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Terrain Ruggedness Index |
|
[raster] |
Output raster. |
23.2.1.17.3. Python code¶
Algorithm ID: gdal:tpitopographicpositionindex
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.