Wichtig

Translation is a community effort you can join. This page is currently translated at 25.00%.

17.18. Mehr komplexe Modelle

Bemerkung

In this lesson we will work with a more complex model in the model designer.

The first model that we created in the previous chapter was a very simple one, with just one input and three algorithms. More complex models can be created, with different types of inputs and containing more steps. For this chapter we will work with a model that creates a vector layer with watersheds, based on a DEM and a threshold value. That will be very useful for calculating several vector layers corresponding to different thresholds, without having to repeat each single step each time.

This lesson does not contain instructions about how to create your model. You already know the necessary steps (we saw them in a previous lesson) and you have already seen the basic ideas about the modeler, so you should try it yourself. Spend a few minutes trying to create your model, and don’t worry about making mistakes. Remember: first add the inputs and then add the algorithms that use them to create the workflow.

Bemerkung

Wenn Sie etwas Hilfe benötigen und es nicht schaffen, dass vollständige Modell zu erstellen, finden sie im Ordner zu dieser Lektion eine fast fertige Version des Modells. Öffnen Sie die Verarbeitungsmodellierung und anschließend die Modelldatei im Datenordner. Sie sollten in etwa das Folgende sehen.

../../../_images/model1.png

This model contains all the steps needed to complete the calculation, but it just has one input: the DEM. That means that the threshold for channel definition uses a fixed value, which makes the model not as useful as it could be. That is not a problem, since we can edit the model, and that is exactly what we will do.

  1. First, let’s add a numerical input. That will ask the user for a numerical input that we can use when such a value is needed in any of the algorithms included in our model.

  2. Click on the Number entry in the Inputs tree, and you will see the corresponding dialog.

  3. Fill it with the following values.

    • Parameter name: Threshold for channel definition

    • Default value: 1,000,000

    ../../../_images/threshold.png

    Ihr Modell sollte jetzt in etwa wie folgt aussehen.

    ../../../_images/model_with_threshold.png

    The input that we have just added is not used, so the model hasn’t actually changed. We have to link that input to the algorithm that uses it, in this case the Channel network one. To edit an algorithm that already exists in the modeler, just click on the pen icon on the corresponding box in the canvas.

  4. Click on the Channel network algorithm and you will see something like this.

    ../../../_images/channel_network.png

    The dialog is filled with the current values used by the algorithm. You can see that the Initiation threshold parameter has a fixed value of 1,000,000 (this is also the default value of the algorithm, but any other value could be put in there). However, you might notice that the parameter is not entered in a common text box, but in a drop-down menu.

  5. Unfold the threshold parameter menu and you will see something like this.

    ../../../_images/unfolded.png

    Den ins Modell eingefügten numerischen Parameter können wir hier auswählen. Immer wenn ein Modell eine numerische Eingabe erwartet, kann man einen festen Wert verwenden oder man nutzt eine der vorhandenen Eingabemöglichkeiten (denken sie daran, dass einige Algorithmen einzelne numerische Werte generieren. Wir werden bald mehr darüber lernen.) Im Fall von Parametern im Format Zeichenkette können ebenfalls Eingabevariablen im Format Zeichenkette oder feste Werte verwendet werden.

  6. Select the Threshold for channel definition input in the Initiation threshold parameter.

  7. Click on OK to apply the changes to your model. Now the design of the model should look like this.

    ../../../_images/model_linked_parameter.png
  8. The model is now complete. Run it using the DEM that we have used in previous lessons, and with different threshold values.

    Below you have a sample of the result obtained for different values. You can compare with the result for the default value, which is the one we obtained in the hydrological analysis lesson.

    ../../../_images/result_1.png

    Abb. 17.27 Threshold = 100.000

    ../../../_images/result_2.png

    Abb. 17.28 Threshold = 1.0000.000