Stream Ordering Logic¶
Cascade uses an algorithm based on the academic paper A Fast Recursive Gis Algorithm For Computing Strahler
Stream Order In Braided And Nonbraided Networks. This can be downloaded from here
.
It is based on the second pseudo-code example which takes into account braided networks.
Strahler¶
Full details of the Strahler algorithm (written in 1957) can be found at http://en.wikipedia.org/wiki/Strahler_number. In summary all streams start with an order of 1, and will only increase in order when they meet a stream with the same magnitude. For example if a second order stream meets a third order stream there is no change.
Shreve¶
The Shreve algorithm (1966) again starts with an order of 1 for each stream, but whenever two streams meet the outflowing stream’s order is the sum of the two input streams.
Lakes and Estuaries¶
River networks in Ireland contain features referred to as CONTINUA. These are lines drawn through water bodies, such as lakes and estuaries, that allow the river network to remain fully connected. Both the Shreve and Strahler algorithms treat these lines as any other river segment, so if two continua of the same order join within the waterbody, the resulting stream will increase in order.
Below as an example of an estuary (a transitional waterbody):
Braided Rivers¶
Braided rivers, where a stream can split into two downstream segments, can be handled by the stream ordering algorithm.
For reference two loops were found in the latest river networks. In the example below a segment (36_2270a
)
splits in two directions. This is handled by the ordering algorithms - both Shreve and Strahler order remain the same.