Analyzes a Single Direction Network (SDN) representing streams and assigns order to each edge using 2 different ordering methods.
Strahler: Assigns an order to each stream segment according to the system proposed by Strahler (1952).
The order of the stream edge starting at the stream source is assigned an order of 1. The order increases by 1 only when two edges of the same order intersect.
For example if two edges of order 1 intersect, the following edge will be assigned an order of 2. When two edges of different order intersect,
the following edge preserves the higher order..
Shreve: Assigns an order to each stream segment according to the system proposed by Shreve (1967).
The order of the stream edge starting at the stream source is assigned an order of 1. When two edges intersect the following edge is assigned the sum of their orders.
For example if two edges of order 1 and order 2 respectively intersect, the following edge will be assigned an order of 3.