Важно
Translation is a community effort you can join. This page is currently translated at 47.99%.
28.1.9. Modeler tools
Предупреждение
These tools are only available in the model designer. They are not available in the Processing Toolbox.
28.1.9.1. Calculate expression
NEW in 3.34
It calculates the result of a QGIS expression and eliminates the need to use the same expression multiple times throughout a model when the same result is required more than once. Additionally, it enables use cases that would otherwise not be possible. For instance, you can generate a timestamp value once and use it multiple times within the model, if the timestamp were recalculated every time, the values would vary during the model’s runtime.
Параметры
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Input |
|
[expression] |
Expression to calculate |
Результаты
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Value |
|
[Result Value] |
Calculated result value, the data type of the output will vary based on the specific expression used in the algorithm. |
Код на Python
Algorithm ID: native:calculateexpression
import processing
processing.run("algorithm_id", {parameter_dictionary})
ID алгоритма отображается при наведении мыши на алгоритм в Инструментах анализа. Словарь parameter dictionary содержит ключи параметров и их значения. См. Изпользование алгоритмов геообработки в консоли для детального описания того, как запускать алгоритмы анализа из консоли Python.
28.1.9.2. Conditional branch
Adds a conditional branch into a model, allowing parts of the model to be executed based on the result of an expression evaluation. Mostly by using tool dependencies to control the flow of a model.
Параметры
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Field |
|
[string] |
Name of the condition |
Field |
|
[expression] |
Expression to evaluate |
Результаты
None.
Код на Python
Algorithm ID: native:condition
import processing
processing.run("algorithm_id", {parameter_dictionary})
ID алгоритма отображается при наведении мыши на алгоритм в Инструментах анализа. Словарь parameter dictionary содержит ключи параметров и их значения. См. Изпользование алгоритмов геообработки в консоли для детального описания того, как запускать алгоритмы анализа из консоли Python.
28.1.9.3. Create directory
Creates a new directory on a file system. Directories will be created recursively, creating all required parent directories in order to construct the full specified directory path. No errors will be raised if the directory already exists.
Параметры
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Directory path |
|
[string] |
Folder path to create |
Результаты
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Вывод |
|
[folder] |
Created folder |
Код на Python
Algorithm ID: native:createdirectory
import processing
processing.run("algorithm_id", {parameter_dictionary})
ID алгоритма отображается при наведении мыши на алгоритм в Инструментах анализа. Словарь parameter dictionary содержит ключи параметров и их значения. См. Изпользование алгоритмов геообработки в консоли для детального описания того, как запускать алгоритмы анализа из консоли Python.
28.1.9.4. Feature filter
Filters features from the input layer and redirects
them to one or several outputs.
If you do not know about any attribute names that are common to all
possible input layers, filtering is only possible on the feature
geometry and general record mechanisms, such as $id
and uuid
.
Параметры
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Исходный слой |
|
[vector: any] |
The input layer. |
Outputs and filters (one or more) |
|
[same as input] |
The output layers with filters (as many as there are filters). |
Результаты
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Вывод (one or more) |
|
[same as input] |
The output layers with filtered features (as many as there are filters). |
Код на Python
Algorithm ID: native:filter
import processing
processing.run("algorithm_id", {parameter_dictionary})
ID алгоритма отображается при наведении мыши на алгоритм в Инструментах анализа. Словарь parameter dictionary содержит ключи параметров и их значения. См. Изпользование алгоритмов геообработки в консоли для детального описания того, как запускать алгоритмы анализа из консоли Python.
28.1.9.5. Filter layers by type
Filters layers by their type. Incoming layers will be directed to different outputs based on whether they are a vector or raster layer.
Параметры
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Исходный слой |
|
[layer] |
Generic Map Layer |
Результаты
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Vector features Optional |
|
[vector] |
A Vector Layer of the input, if compatible |
Raster layer Optional |
|
[растр] |
A Raster Layer of the input, if compatible |
Код на Python
Algorithm ID: native:filterlayersbytype
import processing
processing.run("algorithm_id", {parameter_dictionary})
ID алгоритма отображается при наведении мыши на алгоритм в Инструментах анализа. Словарь parameter dictionary содержит ключи параметров и их значения. См. Изпользование алгоритмов геообработки в консоли для детального описания того, как запускать алгоритмы анализа из консоли Python.
28.1.9.6. Load layer into project
Loads a layer to the current project.
Параметры
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Layer |
|
[layer] |
Layer to load in the legend |
Loaded layer name |
|
[string] |
Name of the loaded layer |
Результаты
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Layer |
|
[same as input] |
The (renamed) loaded layer |
Код на Python
Algorithm ID: native:loadlayer
import processing
processing.run("algorithm_id", {parameter_dictionary})
ID алгоритма отображается при наведении мыши на алгоритм в Инструментах анализа. Словарь parameter dictionary содержит ключи параметров и их значения. См. Изпользование алгоритмов геообработки в консоли для детального описания того, как запускать алгоритмы анализа из консоли Python.
28.1.9.7. Raise exception
Raises an exception and cancels a model’s execution. The exception message can be customized, and optionally an expression based condition can be specified. If an expression condition is used, then the exception will only be raised if the expression result is true. A false result indicates that no exception will be raised, and the model execution can continue uninterrupted.
Параметры
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Message |
|
[string] |
Message to display |
Condition Optional |
|
[expression] |
Expression to evaluate if true |
Результаты
A message in the log panel.
Код на Python
Algorithm ID: native:raiseexception
import processing
processing.run("algorithm_id", {parameter_dictionary})
ID алгоритма отображается при наведении мыши на алгоритм в Инструментах анализа. Словарь parameter dictionary содержит ключи параметров и их значения. См. Изпользование алгоритмов геообработки в консоли для детального описания того, как запускать алгоритмы анализа из консоли Python.
28.1.9.8. Raise message
Raises an information message in the log. The message can be customized, and optionally an expression based condition can be specified. If an expression condition is used, then the message will only be logged if the expression result is true. A false result indicates that no message will be logged.
Параметры
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Information message |
|
[string] |
Message to display |
Condition Optional |
|
[expression] |
Expression to evaluate if true |
Результаты
A message in the log panel.
Код на Python
Algorithm ID: native:raisemessage
import processing
processing.run("algorithm_id", {parameter_dictionary})
ID алгоритма отображается при наведении мыши на алгоритм в Инструментах анализа. Словарь parameter dictionary содержит ключи параметров и их значения. См. Изпользование алгоритмов геообработки в консоли для детального описания того, как запускать алгоритмы анализа из консоли Python.
28.1.9.9. Raise warning
Raises a warning message in the log. The warning message can be customized, and optionally an expression based condition can be specified. If an expression condition is used, then the warning will only be logged if the expression result is true. A false result indicates that no warning will be logged.
Параметры
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Message |
|
[string] |
Message to display |
Condition Optional |
|
[expression] |
Expression to evaluate if true |
Результаты
A message in the log panel.
Код на Python
Algorithm ID: native:raisewarning
import processing
processing.run("algorithm_id", {parameter_dictionary})
ID алгоритма отображается при наведении мыши на алгоритм в Инструментах анализа. Словарь parameter dictionary содержит ключи параметров и их значения. См. Изпользование алгоритмов геообработки в консоли для детального описания того, как запускать алгоритмы анализа из консоли Python.
28.1.9.10. Rename layer
Renames a layer.
Параметры
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Layer |
|
[layer] |
Layer to rename |
New name |
|
[string] |
The new name of the layer |
Результаты
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Layer |
|
[same as input] |
The (renamed) output layer |
Код на Python
Algorithm ID: native:renamelayer
import processing
processing.run("algorithm_id", {parameter_dictionary})
ID алгоритма отображается при наведении мыши на алгоритм в Инструментах анализа. Словарь parameter dictionary содержит ключи параметров и их значения. См. Изпользование алгоритмов геообработки в консоли для детального описания того, как запускать алгоритмы анализа из консоли Python.
28.1.9.11. Save log to file
Saves the model’s execution log to a file. Optionally, the log can be saved in a HTML formatted version.
Параметры
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Use HTML |
|
[Boolean] По умолчанию: Ложь |
Use HTML formatting |
Результаты
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
File |
|
[string] |
Destination of the log |
Код на Python
Algorithm ID: native:savelog
import processing
processing.run("algorithm_id", {parameter_dictionary})
ID алгоритма отображается при наведении мыши на алгоритм в Инструментах анализа. Словарь parameter dictionary содержит ключи параметров и их значения. См. Изпользование алгоритмов геообработки в консоли для детального описания того, как запускать алгоритмы анализа из консоли Python.
28.1.9.12. Set project variable
Sets an expression variable for the current project.
Параметры
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Variable name |
|
[string] |
Name of the variable |
Variable value |
|
[string] |
Value to be stored |
Результаты
None.
Код на Python
Algorithm ID: native:setprojectvariable
import processing
processing.run("algorithm_id", {parameter_dictionary})
ID алгоритма отображается при наведении мыши на алгоритм в Инструментах анализа. Словарь parameter dictionary содержит ключи параметров и их значения. См. Изпользование алгоритмов геообработки в консоли для детального описания того, как запускать алгоритмы анализа из консоли Python.
28.1.9.13. String concatenation
Concatenates two strings into a single one in the Processing Modeler.
Параметры
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Input 1 |
|
[string] |
First string |
Input 2 |
|
[string] |
Second string |
Результаты
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Concatenation |
|
[string] |
The concatenated string |
Код на Python
Algorithm ID: native:stringconcatenation
import processing
processing.run("algorithm_id", {parameter_dictionary})
ID алгоритма отображается при наведении мыши на алгоритм в Инструментах анализа. Словарь parameter dictionary содержит ключи параметров и их значения. См. Изпользование алгоритмов геообработки в консоли для детального описания того, как запускать алгоритмы анализа из консоли Python.
28.1.9.14. Variable distance buffer
Предупреждение
This algorithm is deprecated and can be removed anytime. Prefer using Buffer algorithm instead.
Computes a buffer area for all the features in an input layer.
The size of the buffer for a given feature is defined by an attribute, so it allows different features to have different buffer sizes.
См.также
Параметры
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Исходный слой |
|
[vector: any] |
Input vector layer |
Distance field |
|
[tablefield: numeric] |
Attribute for the distance radius of the buffer |
Segments |
|
[number] Default: 5 |
Controls the number of line segments to use to approximate a quarter circle when creating rounded offsets. |
Dissolve result |
|
[логическое значение] Default: False |
Choose to dissolve the final buffer, resulting in a single feature covering all input features. |
End cap style |
|
[enumeration] Default: Round |
Controls how line endings are handled in the buffer. |
Join style |
|
[enumeration] Default: Round |
Specifies whether round, miter or beveled joins should be used when offsetting corners in a line. |
Miter limit |
|
[number] Default: 2.0 |
Only applicable for mitered join styles, and controls the maximum distance from the offset curve to use when creating a mitered join. |
Результаты
Ярлык |
Имя |
Тип |
Описание |
---|---|---|---|
Buffer |
|
[vector: polygon] |
Buffer polygon vector layer. |
Код на Python
Algorithm ID: qgis:variabledistancebuffer
import processing
processing.run("algorithm_id", {parameter_dictionary})
ID алгоритма отображается при наведении мыши на алгоритм в Инструментах анализа. Словарь parameter dictionary содержит ключи параметров и их значения. См. Изпользование алгоритмов геообработки в консоли для детального описания того, как запускать алгоритмы анализа из консоли Python.