1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
MERGE RASTER LAYERS
===================
Description
-----------
Parameters
----------
- ``Grids to Merge[MultipleInput]``:
- ``Preferred data storage type[Selection]``:
- ``Interpolation[Selection]``:
- ``Overlapping Cells[Selection]``:
Outputs
-------
- ``Merged Grid[Raster]``:
See also
---------
Console usage
-------------
::
processing.runalg('saga:merging', grids, type, interpol, overlap, merged)
Available options for selection parameters:
type(Preferred data storage type)
0 - [0] 1 bit
1 - [1] 1 byte unsigned integer
2 - [2] 1 byte signed integer
3 - [3] 2 byte unsigned integer
4 - [4] 2 byte signed integer
5 - [5] 4 byte unsigned integer
6 - [6] 4 byte signed integer
7 - [7] 4 byte floating point
8 - [8] 8 byte floating point
interpol(Interpolation)
0 - [0] Nearest Neighbor
1 - [1] Bilinear Interpolation
2 - [2] Inverse Distance Interpolation
3 - [3] Bicubic Spline Interpolation
4 - [4] B-Spline Interpolation
overlap(Overlapping Cells)
0 - [0] mean value
1 - [1] first value in order of grid list
|