Fontos
A fordítás közösségi munka eredménye, amelyhez itt tudsz csatlakozni. Ennek az oldalnak eddig a 38.89% részét fordítottuk le.
28.2.5. Raster projections
28.2.5.1. Assign projection
Applies a coordinate system to a raster dataset.
This algorithm is derived from the GDAL edit utility.
Default menu:
Paraméterek
Címke |
Név |
Típus |
Leírás |
---|---|---|---|
Input réteg |
|
[raster] |
Input raster layer |
Desired CRS |
|
[crs] |
The projection (CRS) of the output layer |
Eredmények
Címke |
Név |
Típus |
Leírás |
---|---|---|---|
Layer with projection |
|
[raster] |
The output raster layer (with the new projection information) |
Python kód
Algorithm ID: gdal:assignprojection
import processing
processing.run("algorithm_id", {parameter_dictionary})
Az algoritmus azonosító akkor jelenik meg, ha az egérmutatót az algoritmus fölé viszi a Feldolgozás eszköztáron. A paraméterszótár tartalmazza a paraméter NAME-eket és érékeket. A feldolgozási algoritmusok Python konzolról történő futtatásával kapcsolatos részletekért lásd a Using processing algorithms from the console fejezetet.
28.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:
Paraméterek
Címke |
Név |
Típus |
Leírás |
---|---|---|---|
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] Default: False |
If this is activated a |
Eredmények
Címke |
Név |
Típus |
Leírás |
---|---|---|---|
World file |
|
[fájl] |
Text file with extension |
ESRI Shapefile prj file |
|
[fájl] |
Text file with |
Python kód
Algorithm ID: gdal:extractprojection
import processing
processing.run("algorithm_id", {parameter_dictionary})
Az algoritmus azonosító akkor jelenik meg, ha az egérmutatót az algoritmus fölé viszi a Feldolgozás eszköztáron. A paraméterszótár tartalmazza a paraméter NAME-eket és érékeket. A feldolgozási algoritmusok Python konzolról történő futtatásával kapcsolatos részletekért lásd a Using processing algorithms from the console fejezetet.
28.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:
Paraméterek
Alapvető paraméterek
Címke |
Név |
Típus |
Leírás |
---|---|---|---|
Input réteg |
|
[raster] |
Input raster layer to reproject |
Source CRS Optional |
|
[crs] |
Defines the CRS of the input raster layer |
Target CRS Optional |
|
[crs] Default: |
The CRS of the output layer |
Resampling method to use |
|
[felsorolás] Alapértelmezett: 0 |
Pixel value resampling method to use. Options:
|
NoData value for output bands Optional |
|
[szám] Default: None |
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 Optional |
|
[szám] Default: None |
Defines the output file resolution of reprojection result |
Reprojected |
|
[raster] Alapértelmezett: |
Specification of the output raster layer. One of:
|
Speciális paraméterek
Címke |
Név |
Típus |
Leírás |
---|---|---|---|
Additional creation options Optional |
|
[karakterlánc] Default: «» |
For adding one or more creation options that control the raster to be created (colors, block size, file compression…). For convenience, you can rely on predefined profiles (see GDAL driver options section). Batch Process and Model Designer: separate multiple options with a pipe
character ( |
Output data type |
|
[felsorolás] Alapértelmezett: 0 |
Defines the format of the output raster file. Options:
Available options depend on the GDAL version built with QGIS (see menu) |
Georeferenced extents of output file to be created Optional |
|
[terjedelem] |
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). Available methods are:
|
CRS of the target raster extent Optional |
|
[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] Default: False |
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. |
Additional command-line parameters Optional |
|
[karakterlánc] Default: None |
Add extra GDAL command line options. |
Eredmények
Címke |
Név |
Típus |
Leírás |
---|---|---|---|
Reprojected |
|
[raster] Alapértelmezett: |
Reprojected output raster layer |
Python kód
Algorithm ID: gdal:warpreproject
import processing
processing.run("algorithm_id", {parameter_dictionary})
Az algoritmus azonosító akkor jelenik meg, ha az egérmutatót az algoritmus fölé viszi a Feldolgozás eszköztáron. A paraméterszótár tartalmazza a paraméter NAME-eket és érékeket. A feldolgozási algoritmusok Python konzolról történő futtatásával kapcsolatos részletekért lásd a Using processing algorithms from the console fejezetet.