Важно
Translation is a community effort you can join. This page is currently translated at 38.92%.
28.2.1. Анализ растров
28.2.1.1. Aspect
Generates an aspect map from any GDAL-supported elevation raster. Aspect is the compass direction that a slope faces. The pixels will have a value from 0-360° measured in degrees from north indicating the azimuth. On the northern hemisphere, the north side of slopes is often shaded (small azimuth from 0°-90°), while the southern side receives more solar radiation (higher azimuth from 180°-270°).
This algorithm is derived from the GDAL DEM utility.
Default menu:
Параметры
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Исходный слой |
|
[растр] |
Input elevation raster layer |
Номер канала |
|
[канал растра] Default: 1 |
The number of the band to use as elevation |
Return trigonometric angle instead of azimuth |
|
[логическое значение] По умолчанию: Ложь |
Activating the trigonometric angle results in different categories: 0° (East), 90° (North), 180° (West), 270° (South). |
Return 0 for flat instead of -9999 |
|
[логическое значение] По умолчанию: Ложь |
Activating this option will insert a 0-value for the value -9999 on flat areas. |
Compute edges |
|
[логическое значение] По умолчанию: Ложь |
Generates edges from the elevation raster |
Use Zevenbergen&Thorne formula instead of the Horn’s one |
|
[логическое значение] По умолчанию: Ложь |
Activates Zevenbergen&Thorne formula for smooth landscapes |
Aspect |
|
[растр] По умолчанию: |
Output raster layer. One of:
|
Advanced parameters
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Additional creation options Optional |
|
[string] 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 ( |
Additional command-line parameters Optional |
|
[string] Default: None |
Add extra GDAL command line options |
Результаты
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Aspect |
|
[растр] |
Output raster with angle values in degrees |
Код на Python
Algorithm ID: gdal:aspect
import processing
processing.run("algorithm_id", {parameter_dictionary})
ID алгоритма отображается при наведении мыши на алгоритм в Инструментах анализа. Словарь parameter dictionary содержит ключи параметров и их значения. См. Изпользование алгоритмов геообработки в консоли для детального описания того, как запускать алгоритмы анализа из консоли Python.
28.2.1.2. Color relief
Generates a color relief map from any GDAL-supported elevation raster. Color reliefs can particularly be used to depict elevations. The Algorithm outputs a 4-band raster with values computed from the elevation and a text-based color configuration file. By default, the colors between the given elevation values are blended smoothly and the result is a nice colorized elevation raster.
This algorithm is derived from the GDAL DEM utility.
Параметры
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Исходный слой |
|
[растр] |
Input elevation raster layer |
Номер канала |
|
[канал растра] Default: 1 |
The number of the band to use as elevation |
Compute edges |
|
[логическое значение] По умолчанию: Ложь |
Generates edges from the elevation raster |
Color configuration file |
|
[файл] |
A text-based color configuration file |
Matching mode |
|
[enumeration] Default: 2 |
One of:
|
Additional creation options Optional |
|
[string] 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 ( |
Additional command-line parameters Optional |
|
[string] Default: None |
Add extra GDAL command line options |
Color relief |
|
[растр] По умолчанию: |
Output raster layer. One of:
|
Результаты
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Color relief |
|
[растр] |
A 4-band output raster |
Код на Python
Algorithm ID: gdal:colorrelief
import processing
processing.run("algorithm_id", {parameter_dictionary})
ID алгоритма отображается при наведении мыши на алгоритм в Инструментах анализа. Словарь parameter dictionary содержит ключи параметров и их значения. См. Изпользование алгоритмов геообработки в консоли для детального описания того, как запускать алгоритмы анализа из консоли Python.
28.2.1.3. Fill NoData
Fill raster regions with NoData values by interpolation from edges. The values for the NoData regions are calculated by the surrounding pixel values using inverse distance weighting. After the interpolation a smoothing of the results takes place. Input can be any GDAL-supported raster layer. This algorithm is generally suitable for interpolating missing regions of fairly continuously varying rasters (such as elevation models for instance). It is also suitable for filling small holes and cracks in more irregularly varying images (like airphotos). It is generally not so great for interpolating a raster from sparse point data.
This algorithm is derived from the GDAL fillnodata utility.
Default menu:
Параметры
Basic parameters
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Ярлык |
Имя |
Тип |
Описание |
Исходный слой |
|
[растр] |
Input raster layer |
Номер канала |
|
[канал растра] Default: 1 |
The band to operate on. NoData values must be represented by the value 0. |
Maximum distance (in pixels) to search out for values to interpolate |
|
[number] Default: 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] Default: 0 |
The number of 3x3 filter passes to run (0 or more) to smoothen the results of the interpolation. |
Do not use default validity mask for the input band |
|
[логическое значение] По умолчанию: Ложь |
Activates the user-defined validity mask |
Validity mask |
|
[растр] |
A raster layer that defines the areas to fill. |
Filled |
|
[растр] По умолчанию: |
Specification of the output raster layer. One of:
|
Advanced parameters
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Additional creation options Optional |
|
[string] 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 ( |
Additional command-line parameters Optional |
|
[string] Default: None |
Add extra GDAL command line options |
Результаты
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Filled |
|
[растр] |
Output raster |
Код на Python
Algorithm ID: gdal:fillnodata
import processing
processing.run("algorithm_id", {parameter_dictionary})
ID алгоритма отображается при наведении мыши на алгоритм в Инструментах анализа. Словарь parameter dictionary содержит ключи параметров и их значения. См. Изпользование алгоритмов геообработки в консоли для детального описания того, как запускать алгоритмы анализа из консоли Python.
28.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:
См.также
Параметры
Basic parameters
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Point layer |
|
[vector: point] |
Input point vector layer |
Data metric to use |
|
[enumeration] Default: 0 |
One of:
|
The first radius of search ellipse |
|
[number] Default: 0.0 |
The first radius (X axis if rotation angle is 0) of the search ellipse |
The second radius of search ellipse |
|
[number] Default: 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] Default: 0.0 |
Angle of ellipse rotation in degrees. Ellipse rotated counter clockwise. |
Minimum number of data points to use |
|
[number] Default: 0.0 |
Minimum number of data points to average. If less amount of points found the grid node considered empty and will be filled with NoData marker. |
NoData |
|
[number] Default: 0.0 |
NoData marker to fill empty points |
Interpolated (data metrics) |
|
[растр] По умолчанию: |
Specify the output raster layer with interpolated values. One of:
|
Advanced parameters
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Z value from field Optional |
|
[tablefield: numeric] |
Field for the interpolation |
Additional creation options Optional |
|
[string] 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 ( |
Additional command-line parameters Optional |
|
[string] Default: None |
Add extra GDAL command line options |
Output data type |
|
[enumeration] Default: 5 |
Defines the data type of the output raster file. Options:
Available options depend on the GDAL version built with QGIS (see menu) |
Результаты
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Interpolated (data metrics) |
|
[растр] |
Output raster with interpolated values |
Код на Python
Algorithm ID: gdal:griddatametrics
import processing
processing.run("algorithm_id", {parameter_dictionary})
ID алгоритма отображается при наведении мыши на алгоритм в Инструментах анализа. Словарь parameter dictionary содержит ключи параметров и их значения. См. Изпользование алгоритмов геообработки в консоли для детального описания того, как запускать алгоритмы анализа из консоли Python.
28.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.
См.также
Параметры
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Point layer |
|
[vector: point] |
Input point vector layer |
Weighting power |
|
[number] Default: 2.0 |
Weighting power |
Smoothing |
|
[number] Default: 0.0 |
Smoothing parameter |
The radius of the search circle |
|
[number] Default: 1.0 |
The radius of the search circle |
Maximum number of data points to use |
|
[number] Default: 12 |
Do not search for more points than this number. |
Minimum number of data points to use |
|
[number] Default: 0 |
Minimum number of data points to average. If less amount of points found the grid node considered empty and will be filled with NoData marker. |
NoData |
|
[number] Default: 0.0 |
NoData marker to fill empty points |
Interpolated (IDW with NN search) |
|
[растр] По умолчанию: |
Specify the output raster layer with interpolated values. One of:
|
Advanced parameters
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Z value from field Optional |
|
[tablefield: numeric] |
Field for the interpolation |
Additional creation options Optional |
|
[string] 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 ( |
Additional command-line parameters Optional |
|
[string] Default: None |
Add extra GDAL command line options |
Output data type |
|
[enumeration] Default: 5 |
Defines the data type of the output raster file. Options:
Available options depend on the GDAL version built with QGIS (see menu) |
Результаты
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Interpolated (IDW with NN search) |
|
[растр] |
Output raster with interpolated values |
Код на Python
Algorithm ID: gdal:gridinversedistancenearestneighbor
import processing
processing.run("algorithm_id", {parameter_dictionary})
ID алгоритма отображается при наведении мыши на алгоритм в Инструментах анализа. Словарь parameter dictionary содержит ключи параметров и их значения. См. Изпользование алгоритмов геообработки в консоли для детального описания того, как запускать алгоритмы анализа из консоли Python.
28.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:
См.также
Параметры
Basic parameters
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Point layer |
|
[vector: point] |
Input point vector layer |
Weighting power |
|
[number] Default: 2.0 |
Weighting power |
Smothing |
|
[number] Default: 0.0 |
Smoothing parameter |
The first radius of search ellipse |
|
[number] Default: 0.0 |
The first radius (X axis if rotation angle is 0) of the search ellipse |
The second radius of search ellipse |
|
[number] Default: 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] Default: 0.0 |
Angle of ellipse rotation in degrees. Ellipse rotated counter clockwise. |
Maximum number of data points to use |
|
[number] Default: 0 |
Do not search for more points than this number. |
Minimum number of data points to use |
|
[number] Default: 0 |
Minimum number of data points to average. If less amount of points found the grid node considered empty and will be filled with NoData marker. |
NoData |
|
[number] Default: 0.0 |
NoData marker to fill empty points |
Interpolated (IDW) |
|
[растр] По умолчанию: |
Specify the output raster layer with interpolated values. One of:
|
Advanced parameters
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Z value from field Optional |
|
[tablefield: numeric] |
Field for the interpolation |
Additional creation options Optional |
|
[string] 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 ( |
Additional command-line parameters Optional |
|
[string] Default: None |
Add extra GDAL command line options |
Output data type |
|
[enumeration] Default: 5 |
Defines the data type of the output raster file. Options:
Available options depend on the GDAL version built with QGIS (see menu) |
Результаты
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Interpolated (IDW) |
|
[растр] |
Output raster with interpolated values |
Код на Python
Algorithm ID: gdal:gridinversedistance
import processing
processing.run("algorithm_id", {parameter_dictionary})
ID алгоритма отображается при наведении мыши на алгоритм в Инструментах анализа. Словарь parameter dictionary содержит ключи параметров и их значения. См. Изпользование алгоритмов геообработки в консоли для детального описания того, как запускать алгоритмы анализа из консоли Python.
28.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.
Параметры
Basic parameters
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Point layer |
|
[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] Default: 0.0 |
NoData marker to fill empty points |
Interpolated (Linear) |
|
[растр] По умолчанию: |
Specify the output raster layer with interpolated values. One of:
|
Advanced parameters
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Z value from field Optional |
|
[tablefield: numeric] |
Field for the interpolation |
Additional creation options Optional |
|
[string] 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 ( |
Additional command-line parameters Optional |
|
[string] Default: None |
Add extra GDAL command line options |
Output data type |
|
[enumeration] Default: 5 |
Defines the data type of the output raster file. Options:
Available options depend on the GDAL version built with QGIS (see menu) |
Результаты
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Interpolated (Linear) |
|
[растр] |
Output raster with interpolated values |
Код на Python
Algorithm ID: gdal:gridlinear
import processing
processing.run("algorithm_id", {parameter_dictionary})
ID алгоритма отображается при наведении мыши на алгоритм в Инструментах анализа. Словарь parameter dictionary содержит ключи параметров и их значения. См. Изпользование алгоритмов геообработки в консоли для детального описания того, как запускать алгоритмы анализа из консоли Python.
28.2.1.8. Grid (Moving average)
The Moving Average is a simple data averaging algorithm. It uses a moving window of elliptic form to search values and averages all data points within the window. Search ellipse can be rotated by specified angle, the center of ellipse located at the grid node. Also the minimum number of data points to average can be set, if there are not enough points in window, the grid node considered empty and will be filled with specified NoData value.
This algorithm is derived from the GDAL grid utility.
Default menu:
См.также
Параметры
Basic parameters
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Point layer |
|
[vector: point] |
Input point vector layer |
The first radius of search ellipse |
|
[number] Default: 0.0 |
The first radius (X axis if rotation angle is 0) of the search ellipse |
The second radius of search ellipse |
|
[number] Default: 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] Default: 0.0 |
Angle of ellipse rotation in degrees. Ellipse rotated counter clockwise. |
Minimum number of data points to use |
|
[number] Default: 0.0 |
Minimum number of data points to average. If less amount of points found the grid node considered empty and will be filled with NoData marker. |
NoData |
|
[number] Default: 0.0 |
NoData marker to fill empty points |
Interpolated (moving average) |
|
[растр] По умолчанию: |
Specify the output raster layer. One of:
|
Advanced parameters
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Z value from field Optional |
|
[tablefield: numeric] |
Field for the interpolation |
Additional creation options Optional |
|
[string] 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 ( |
Additional command-line parameters Optional |
|
[string] Default: None |
Add extra GDAL command line options |
Output data type |
|
[enumeration] Default: 5 |
Defines the data type of the output raster file. Options:
Available options depend on the GDAL version built with QGIS (see menu) |
Результаты
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Interpolated (moving average) |
|
[растр] |
Output raster with interpolated values |
Код на Python
Algorithm ID: gdal:gridaverage
import processing
processing.run("algorithm_id", {parameter_dictionary})
ID алгоритма отображается при наведении мыши на алгоритм в Инструментах анализа. Словарь parameter dictionary содержит ключи параметров и их значения. См. Изпользование алгоритмов геообработки в консоли для детального описания того, как запускать алгоритмы анализа из консоли Python.
28.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:
См.также
Параметры
Basic parameters
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Point layer |
|
[vector: point] |
Input point vector layer |
The first radius of search ellipse |
|
[number] Default: 0.0 |
The first radius (X axis if rotation angle is 0) of the search ellipse |
The second radius of search ellipse |
|
[number] Default: 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] Default: 0.0 |
Angle of ellipse rotation in degrees. Ellipse rotated counter clockwise. |
NoData |
|
[number] Default: 0.0 |
NoData marker to fill empty points |
Interpolated (Nearest neighbour) |
|
[растр] По умолчанию: |
Specify the output raster layer with interpolated values. One of:
|
Advanced parameters
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Z value from field Optional |
|
[tablefield: numeric] |
Field for the interpolation |
Additional creation options Optional |
|
[string] 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 ( |
Additional command-line parameters Optional |
|
[string] Default: None |
Add extra GDAL command line options |
Output data type |
|
[enumeration] Default: 5 |
Defines the data type of the output raster file. Options:
Available options depend on the GDAL version built with QGIS (see menu) |
Результаты
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Interpolated (Nearest neighbour) |
|
[растр] |
Output raster with interpolated values |
Код на Python
Algorithm ID: gdal:gridnearestneighbor
import processing
processing.run("algorithm_id", {parameter_dictionary})
ID алгоритма отображается при наведении мыши на алгоритм в Инструментах анализа. Словарь parameter dictionary содержит ключи параметров и их значения. См. Изпользование алгоритмов геообработки в консоли для детального описания того, как запускать алгоритмы анализа из консоли Python.
28.2.1.10. Hillshade
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:
Параметры
Basic parameters
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Исходный слой |
|
[растр] |
Input Elevation raster layer |
Номер канала |
|
[канал растра] Default: 1 |
Band containing the elevation information |
Z factor (vertical exaggeration) |
|
[number] Default: 1.0 |
The factor exaggerates the height of the output elevation raster |
Scale (ratio of vert. units to horiz.) |
|
[number] Default: 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] Default: 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 |
|
[логическое значение] По умолчанию: Ложь |
Generates edges from the elevation raster |
Use Zevenbergen&Thorne formula (instead of the Horn’s one) |
|
[логическое значение] По умолчанию: Ложь |
Activates Zevenbergen&Thorne formula for smooth landscapes |
Combined shading |
|
[логическое значение] По умолчанию: Ложь |
|
Multidirectional shading |
|
[логическое значение] По умолчанию: Ложь |
|
Hillshade |
|
[растр] По умолчанию: |
Specify the output raster layer with interpolated values. One of:
|
Advanced parameters
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Additional creation options Optional |
|
[string] 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 ( |
Additional command-line parameters Optional |
|
[string] Default: None |
Add extra GDAL command line options |
Результаты
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Hillshade |
|
[растр] |
Output raster with interpolated values |
Код на Python
Algorithm ID: gdal:hillshade
import processing
processing.run("algorithm_id", {parameter_dictionary})
ID алгоритма отображается при наведении мыши на алгоритм в Инструментах анализа. Словарь parameter dictionary содержит ключи параметров и их значения. См. Изпользование алгоритмов геообработки в консоли для детального описания того, как запускать алгоритмы анализа из консоли Python.
28.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:
Параметры
Basic parameters
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Исходный слой |
|
[растр] |
Input Elevation raster layer |
How far from black (white) |
|
[number] Default: 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 |
|
[логическое значение] По умолчанию: Ложь |
Search for nearly white (255) pixels instead of nearly black pixels |
Nearblack |
|
[растр] По умолчанию: |
Specify the output raster layer. One of:
|
Advanced parameters
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Additional creation options Optional |
|
[string] 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 ( |
Additional command-line parameters Optional |
|
[string] Default: None |
Add extra GDAL command line options |
Результаты
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Nearblack |
|
[растр] |
Output raster |
Код на Python
Algorithm ID: gdal:nearblack
import processing
processing.run("algorithm_id", {parameter_dictionary})
ID алгоритма отображается при наведении мыши на алгоритм в Инструментах анализа. Словарь parameter dictionary содержит ключи параметров и их значения. См. Изпользование алгоритмов геообработки в консоли для детального описания того, как запускать алгоритмы анализа из консоли Python.
28.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:
Параметры
Basic parameters
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Исходный слой |
|
[растр] |
Input Elevation raster layer |
Номер канала |
|
[канал растра] Default: 1 |
Band containing the elevation information |
A list of pixel values in the source image to be considered target pixels Optional |
|
[string] Default: „“ |
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] Default: 1 |
Indicate whether distances generated should be in pixel or georeferenced coordinates. One of:
|
The maximum distance to be generated Optional |
|
[number] Default: 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 Optional |
|
[number] Default: 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 Optional |
|
[number] Default: 0.0 |
Specify the NoData value to use for the output raster |
Proximity map |
|
[растр] По умолчанию: |
Specify the output raster layer. One of:
|
Advanced parameters
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Additional creation options Optional |
|
[string] 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 ( |
Additional command-line parameters Optional |
|
[string] Default: None |
Add extra GDAL command line options |
Output data type |
|
[enumeration] Default: 5 |
Defines the data type of the output raster file. Options:
Available options depend on the GDAL version built with QGIS (see menu) |
Результаты
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Proximity map |
|
[растр] |
Output raster |
Код на Python
Algorithm ID: gdal:proximity
import processing
processing.run("algorithm_id", {parameter_dictionary})
ID алгоритма отображается при наведении мыши на алгоритм в Инструментах анализа. Словарь parameter dictionary содержит ключи параметров и их значения. См. Изпользование алгоритмов геообработки в консоли для детального описания того, как запускать алгоритмы анализа из консоли Python.
28.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:
Параметры
Basic parameters
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Исходный слой |
|
[растр] |
Input elevation raster layer |
Номер канала |
|
[канал растра] Default: 1 |
The number of the band to use as elevation |
Compute edges |
|
[логическое значение] По умолчанию: Ложь |
Generates edges from the elevation raster |
Roughness |
|
[растр] По умолчанию: |
Specify the output raster layer. One of:
|
Advanced parameters
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Additional creation options Optional |
|
[string] 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 ( |
Результаты
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Roughness |
|
[растр] |
Single-band output roughness raster. The value -9999 is used as NoData value. |
Код на Python
Algorithm ID: gdal:roughness
import processing
processing.run("algorithm_id", {parameter_dictionary})
ID алгоритма отображается при наведении мыши на алгоритм в Инструментах анализа. Словарь parameter dictionary содержит ключи параметров и их значения. См. Изпользование алгоритмов геообработки в консоли для детального описания того, как запускать алгоритмы анализа из консоли Python.
28.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:
Параметры
Basic parameters
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Исходный слой |
|
[растр] |
Input elevation raster layer |
Threshold |
|
[number] Default: 10 |
Only raster polygons smaller than this size will be removed |
Use 8-connectedness |
|
[логическое значение] По умолчанию: Ложь |
Use eight connectedness instead of four connectedness |
Do not use the default validity mask for the input band |
|
[логическое значение] По умолчанию: Ложь |
|
Validity mask Optional |
|
[растр] |
Validity mask to use instead of the default |
Sieved |
|
[растр] По умолчанию: |
Specify the output raster layer. One of:
|
Advanced parameters
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Additional command-line parameters Optional |
|
[string] Default: None |
Add extra GDAL command line options |
Результаты
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Sieved |
|
[растр] |
Output raster layer. |
Код на Python
Algorithm ID: gdal:sieve
import processing
processing.run("algorithm_id", {parameter_dictionary})
ID алгоритма отображается при наведении мыши на алгоритм в Инструментах анализа. Словарь parameter dictionary содержит ключи параметров и их значения. См. Изпользование алгоритмов геообработки в консоли для детального описания того, как запускать алгоритмы анализа из консоли Python.
28.2.1.15. Уклон
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:
Параметры
Basic parameters
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Исходный слой |
|
[растр] |
Input Elevation raster layer |
Номер канала |
|
[канал растра] Default: 1 |
Band containing the elevation information |
Ratio of vertical units to horizontal |
|
[number] Default: 1.0 |
The ratio of vertical units to horizontal units |
Slope expressed as percent (instead of degrees) |
|
[логическое значение] По умолчанию: Ложь |
Express slope as percent instead of degrees |
Compute edges |
|
[логическое значение] По умолчанию: Ложь |
Generates edges from the elevation raster |
Use Zevenbergen&Thorne formula (instead of the Horn’s one) |
|
[логическое значение] По умолчанию: Ложь |
Activates Zevenbergen&Thorne formula for smooth landscapes |
Slope |
|
[растр] По умолчанию: |
Specify the output raster layer. One of:
|
Advanced parameters
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Additional creation options Optional |
|
[string] 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 ( |
Additional command-line parameters Optional |
|
[string] Default: None |
Add extra GDAL command line options |
Результаты
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Slope |
|
[растр] |
Output raster |
Код на Python
Algorithm ID: gdal:slope
import processing
processing.run("algorithm_id", {parameter_dictionary})
ID алгоритма отображается при наведении мыши на алгоритм в Инструментах анализа. Словарь parameter dictionary содержит ключи параметров и их значения. См. Изпользование алгоритмов геообработки в консоли для детального описания того, как запускать алгоритмы анализа из консоли Python.
28.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:
Параметры
Basic parameters
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Исходный слой |
|
[растр] |
Input elevation raster layer |
Номер канала |
|
[канал растра] Default: 1 |
The number of the band to use as elevation |
Compute edges |
|
[логическое значение] По умолчанию: Ложь |
Generates edges from the elevation raster |
Terrain Ruggedness Index |
|
[растр] По умолчанию: |
Specify the output raster layer. One of:
|
Advanced parameters
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Additional creation options Optional |
|
[string] 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 ( |
Результаты
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Terrain Ruggedness Index |
|
[растр] |
Output ruggedness raster. The value -9999 is used as NoData value. |
Код на Python
Algorithm ID: gdal:triterrainruggednessindex
import processing
processing.run("algorithm_id", {parameter_dictionary})
ID алгоритма отображается при наведении мыши на алгоритм в Инструментах анализа. Словарь parameter dictionary содержит ключи параметров и их значения. См. Изпользование алгоритмов геообработки в консоли для детального описания того, как запускать алгоритмы анализа из консоли Python.
28.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:
Параметры
Basic parameters
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Исходный слой |
|
[растр] |
Input elevation raster layer |
Номер канала |
|
[канал растра] Default: 1 |
The number of the band to use for elevation values |
Compute edges |
|
[логическое значение] По умолчанию: Ложь |
Generates edges from the elevation raster |
Terrain Ruggedness Index |
|
[растр] По умолчанию: |
Specify the output raster layer. One of:
|
Advanced parameters
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Additional creation options Optional |
|
[string] 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 ( |
Результаты
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Terrain Ruggedness Index |
|
[растр] |
Output raster. |
Код на Python
Algorithm ID: gdal:tpitopographicpositionindex
import processing
processing.run("algorithm_id", {parameter_dictionary})
ID алгоритма отображается при наведении мыши на алгоритм в Инструментах анализа. Словарь parameter dictionary содержит ключи параметров и их значения. См. Изпользование алгоритмов геообработки в консоли для детального описания того, как запускать алгоритмы анализа из консоли Python.