Introduction
The previous assignment covered some terrain analysis around the town of Mittersill, Salzburg, where the river Felber meets the Salzach.
Here, some basic hydrological analysis of the area is performed, using QGIS and the integrated SAGA tools.
If any of these hydrology terms are not familiar, the Stream Sense ‘What Is A Catchment’ from Waikato Regional Council, New Zealand, seems to be a great guide.
Per the exercise guidance, the task is to create a rough flow model based on the upslope distance for the given pour point, i.e. rainfall at equal upslope distances reaches the outflow at the same time. Based on its distribution, an approximate unit hydrograph can be created.
Method
The main steps involved in creating this type of flow model are:
- Preprocess the DEM by sink-filling.
- Generate a flow accumulation surface.
- Create a channel network and basins.
- Calculate a surface of the upslope distance from pour point.
A hydrology QGIS tutorial is available, which covers most of these steps. Please refer to this for details on steps 1 to 3.
The D8 flow direction algorithm was used throughout.
Calculating upslope distance from pour point
There doesn’t seem to be a tool in QGIS explictly designed for this, but it can be achieved with an unconventional use of the Overland flow distance to channel network operation. This expects a channel network raster layer to be fed into it. Instead, create a single pixel raster of the pour point, and use that in its place.
Topo-flow Model
The QGIS ModelBuilder was used to develop a repeatable workflow for calculating the flow model, named ‘Topo-flow’.
📷 A screenshot of the model. The model is saved in the QGIS project.
Further processing
Once the upslope distance surface had been created, which was continuous over the range 0 to ~22000m, it was binned by 1000m, and area zones were created from the binned surface. These zones correspond to the bins in the unit hydrograph.
Results
The calculated stream network, sub-basins and area zones within the catchment are shown on the map.
📷 The histogram of the upslope distance from pour point, 1000m bins. In our model, this is the unit hydrograph for the catchment of the Felber.
Discussion
Q: What are the most critical zones in the catchment area, and how might land cover/use decisions influence the risk of floods?
The peaks in the histogram represent the largest areas of similar distance, and hence contribution to flow. Deforestation leads to less absorption of rain by root systems, so clear-cutting in the areas would have the greatest adverse impact on flood risk. Similarly, soil-sealing inhibits natural drainage, so building on these areas is a further land use change that would negatively affect flood risk. The symbology was chosen accordingly: Green = low impact on flood risk, red = high impact on flood risk.
DEM selection
Salzburg has freely available digital terrain models (DTMs) of the entire state down to 1m resolution. Initially a DTM of 5m meters was chosen. However, this seemed to be too fine - the tools model channels as single-cell-width (raster) and lines (vector), and in reality the streams in the study area were wider than this.
📷This resulted in multiple channels for the same feature, and a confusing stream network and results of subsequent calculations. You can also see the effects here of choosing a low channel initiation threshold.
Resampling the DEM to 20m gave much better results.
Study area
You will notice from the map the irregular shape of the study area. This is due to the DEM being for the state of Salzburg only, so the study area follows the state boundaries present in this relatively narrow part of the state. While state boundaries are often along ridges, that does not necessarily divide the watershed*. For a more accurate assessment, the DEM should be patched with data from the surrounding areas.
📷 *For example, see some of the Argentina-Chile border disputes. Credit: ‘Southern Patagonian Ice Field border’, by Janitoalevic, CC-BY-SA-4.0.
Channel initiation threshold
The channel initiation threshold is probably the most important parameter of the model. It is the value of flow accumulation at which a cell is designated a channel/stream,
and this determines the stream network and sub-basin structure. It is not a straight-forward parameter to ‘guess’ - it depends on the cell size, terrain, study area and use case.
You can see the resultant stream network and sub-basins for a variety of values on the map (1, 2 and 5 million), as well as ‘ground-truth’ state-provided survey layers for comparison. The area zones were calculated based on an initiation of 5M. Looking again at the survey layers for comparison, it seems a smaller threshold would have been more appropriate.
Pour point
The pour point is another important, sensitive parameter. Especially when using high resolution DEMs, when a slight change can result in empty or confusing result sets.
Conceptually, the pour point would be at the confluence of the Felber and Salzach. But, here it is placed on the Felber slightly upstream of where they meet. The reason for this is that the upslope area would otherwise include the catchment of the Salzach also.
📷 Remember, this point is rasterized to a grid cell - keep in mind the cell size, and that it doesn’t fall into the same cell as the actual confluence.
The fill sinks step guarantees there is a continuous, downslope path for every cell in an area. Without this, it would result in a patchy, disconnected stream network.
None of the subsequent calculations would then make sense.
Q: What are some of the limitations of this model?
- Groundwater is not considered, but can be a major contributor to a catchment’s stream network.
- Slope and land cover are not considered either. These are also major factors in downslope flow.
- The model assumes uniform rainfall over the entire catchment. The larger the catchment, the less reliable this is.
- The bin size of upslope distance used to model the unit hydrograph is another sensitive parameter. Reducing it could delineate further the high-risk areas, but make it harder to interpret for large-area planning decisions.