23.2.5. Raster projections¶
23.2.5.1. Assign projection¶
Applies a coordinate system to a raster dataset.
This algorithm is derived from the GDAL edit utility.
Default menu:
23.2.5.1.1. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Camada de entrada |
|
[raster] |
Camada raster de entrada |
Desired CRS |
|
[crs] |
The projection (CRS) of the output layer |
23.2.5.1.2. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Layer with projection |
|
[raster] |
The output raster layer (with the new projection information) |
23.2.5.1.3. Python code¶
Algorithm ID: gdal:assignprojection
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.5.2. Extract projection¶
Extracts the projection of a raster file and writes it into a world
file with extension .wld
.
This algorithm is derived from the GDAL srsinfo utility.
Default menu:
23.2.5.2.1. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Input file |
|
[raster] |
Input raster
The raster layer has to be file based, as the algorithm
uses the path to the raster file as the location of the
generated |
Create also .prj file |
|
[boolean] Padrão: Falso |
If this is activated a |
23.2.5.2.2. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
World file |
|
[file] |
Text file with extension |
ESRI Shapefile prj file |
|
[file] |
Text file with |
23.2.5.2.3. Python code¶
Algorithm ID: gdal:extractprojection
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.5.3. Warp (reproject)¶
Reprojects a raster layer into another Coordinate Reference System (CRS). The output file resolution and the resampling method can be chosen.
This algorithm is derived from the GDAL warp utility.
Default menu:
23.2.5.3.1. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Camada de entrada |
|
[raster] |
Input raster layer to reproject |
SRC de Origem Opcional |
|
[crs] |
Defines the CRS of the input raster layer |
SRC Alvo Opcional |
|
[crs] Padrão: |
O SRC da camada de saída |
Resampling method to use |
|
[enumeration] Padrão: 0 |
Pixel value resampling method to use. Options:
|
Nodata value for output bands Opcional |
|
[number] Padrão: Nenhum |
Sets nodata value for output bands. If not provided, then nodata values will be copied from the source dataset. |
Output file resolution in target georeferenced units Opcional |
|
[number] Padrão: Nenhum |
Defines the output file resolution of reprojection result |
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). |
Tipo de dados de saída |
|
[enumeration] Padrão: 0 |
Define o formato do arquivo de raster saída. Opções:
|
Georeferenced extents of output file to be created Opcional |
|
[extent] |
Sets the georeferenced extent of the output file to be created (in the Target CRS by default. In the CRS of the target raster extent, if specified). |
CRS of the target raster extent Opcional |
|
[crs] |
Specifies the CRS in which to interpret the coordinates given for the extent of the output file. This must not be confused with the target CRS of the output dataset. It is instead a convenience e.g. when knowing the output coordinates in a geodetic long/lat CRS, but wanting a result in a projected coordinate system. |
Use multithreaded warping implementation |
|
[boolean] Padrão: Falso |
Two threads will be used to process chunks of the image and perform input/output operations simultaneously. Note that the computation itself is not multithreaded. |
Parâmetros adicionais da linha de comando Opcional |
|
[string] Padrão: Nenhum |
Add extra GDAL command line options. |
Reprojetado |
|
[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. |
23.2.5.3.2. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Reprojetado |
|
[raster] Default: |
Reprojected output raster layer |
23.2.5.3.3. Python code¶
Algorithm ID: gdal:warpreproject
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.