23.1.7. Modeler tools

These tools are only available in the Graphical Modeler. They are not available in the Processing Toolbox.

23.1.7.1. Load layer into project

Loads a layer to the current project.

23.1.7.1.1. Parametri

Etichetta

Nome

Tipo

Descrizione

Layer

IN INGRESSO

[layer]

Layer to load in the legend

Loaded layer name

NAME

[stringa]

Name of the loaded layer

23.1.7.1.2. In uscita:

Etichetta

Nome

Tipo

Descrizione

Layer

LIVELLO IN USCITA

[lo stesso del livello in ingresso]

The (renamed) loaded layer

23.1.7.1.3. Python code

Algorithm ID: qgis:loadlayer

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 Usare gli algoritmi di Processing dalla console dei comandi for details on how to run processing algorithms from the Python console.

23.1.7.2. Rename layer

Renames a layer.

23.1.7.2.1. Parametri

Etichetta

Nome

Tipo

Descrizione

Layer

IN INGRESSO

[layer]

Layer to rename

New name

NAME

[stringa]

The new name of the layer

23.1.7.2.2. In uscita:

Etichetta

Nome

Tipo

Descrizione

Layer

LIVELLO IN USCITA

[lo stesso del livello in ingresso]

The (renamed) output layer

23.1.7.2.3. Python code

Algorithm ID: qgis:renamelayer

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 Usare gli algoritmi di Processing dalla console dei comandi for details on how to run processing algorithms from the Python console.

23.1.7.3. String concatenation

Concatenates two strings into a single one in the Processing Modeler.

23.1.7.3.1. Parametri

Etichetta

Nome

Tipo

Descrizione

Input 1

INPUT_1

[stringa]

First string

Input 2

INPUT_2

[stringa]

Second string

23.1.7.3.2. In uscita:

Etichetta

Nome

Tipo

Descrizione

Concatenation

CONCATENATION

[stringa]

The concatenated string

23.1.7.3.3. Python code

Algorithm ID: qgis:stringconcatenation

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 Usare gli algoritmi di Processing dalla console dei comandi for details on how to run processing algorithms from the Python console.