Description of the road network enrichment algorithms

Simple crossroads classification

Road crossroads can be considered as an atomic element of road network and it is very useful to characterize them for selection according to Heinzle et al. (2005). For example, y-nodes correspond to slip roads and T-nodes represent crossroads between a minor and a major road. A simple taxonomy of crossroads has been designed based on Grosso (2004) and Sester (1995). It contains T-shaped nodes (T-nodes), fork nodes, y-shaped nodes (slip road end), plus-shaped nodes (CRS-nodes), star nodes and standard nodes. The spatial analysis algorithms developed rely on a mixed use of geometry and graph measures. The road network is seen as a graph.

The standard nodes are the remaining nodes.

simple crossroads automatically detected

Roundabouts and branching crossroads

Some widespread road patterns like roundabouts or branching crossroads can be seen as complex junctions in relation to simple crossroads. With abstraction, they have the function of a crossroad and can be generalized as simple crossroads. In order to detect roundabouts, the faces of the graph are used rather than arcs and nodes (Sheeren et al. 2004). To keep only the small round faces (that clearly correspond to roundabouts see figure below), a measure of polygon compactness is used on all the small faces of the graph. Miller’s measure of compactness is chosen with a threshold of 0.98 determined after experiments. The Miller’s measure varies from 0 to 1 (for a circle). The detection of a roundabout creates a “Roundabout” complex feature composed of the round road sections (modeled as inner roads) and of the roads to intersect the roundabout (modeled as outer roads).

simple roundabout automatically detected

Branching crossroads are a bit more complex to detect, as two types can be distinguished:

  1. the first type concerns the small triangular faces of the network (first figure below);
  2. the second is related to the branching junctions attached to roundabouts (second figure below). The detection algorithm consists in considering the faces with only three degree 3 nodes. Then, a surface distance is computed between the face and the triangle formed by the three nodes. If the distance is low, the face is considered as a branching crossroad. The default thresholds are 10,000 m2 for size and 0.45 for surface distance (that is between 0 et 1). Then when a potential face is branched to a roundabout, the surface distance threshold is bigger.

simple branching crossroad automatically detected complex roundabout automatically detected

Dual carriageways

Dual carriageways are roads where a separator delimits two lanes of the road, generally with opposing flow directions. Dual carriageways are often modelled by two almost parallel lines is spatial databases, and we want to detect this paired lines in order to collapse them into one (or to enhance their separation).

Algorithms exist based on the flow direction (A Strategy for Collapsing OS Integrated Transport Network Dual Carriageways by S. Thom, 2005 workshop), but the algorithm in CartAGen deals with the case when this direction information is not known, and is purely based on geometry and topology. As in the roundabout detection method, the algorithm iterates through the network faces but this time, it searches for very long and thin or narrow faces or small faces interlocked in thin faces. Indeed, looking for the parallel roads in data appeared to be ineffective. Road faces are classified by three measures, convexity, elongation, and compactness that help to determine whether the face is thin (it belongs to a dual carriageway) or not. When the polygon is convex, the elongation measure is a correct assessment of the thinness of the face and then is used. But when the face is concave, this elongation measure can no longer be used because turning dual carriageways would not be detected. Thus, a compactness measure is used coupled with an area threshold as long and thin faces are not compact because the perimeter is very big compared to area. After long experiments, thresholds are set so that a face might belongs to a dual carriageway if:

dual carriageways automatically detected

Rest areas

Rest areas are highway side-roads where drivers can park and rest, and that are often only connected to highways in the network. The properties of the structure are the presence of an entrance and an exit, with roads in between located on both sides of dual carriageways or other major highways. The detection algorithm is composed of two main steps:

  1. the detection and grouping of entrances and exits, and the addition of in-between roads. Entrances and exits are detected with y-nodes and their orientation (see Figure below). The y-nodes belonging to an interchange are excluded and couples (entrance, exit) are formed considering the highway direction.
  2. Then, we switch once again to faces and a buffer is used on the good side (considering the direction) of the major road in which the small neighbouring faces are aggregated (see both examples of automatic detection below).

entrance and exit detection for rest areas

According to our experiments, a buffer size of 500 m and an area threshold for the faces to be included in the rest area of 50,000 m2 are effective thresholds.

entrance and exit detection for rest areas entrance and exit detection for rest areas

The implementation in CartAGen is not finished yet.

Highway interchange

To be filled…

highway interchange automatically detected

Dead end roads

Dead end roads are another road structure that play a key role in selection processes because they are either useless (leading to nowhere important) or very important (leading to a significant facility). Unlike simple dead ends, the detection of dead end groups is not obvious. It uses the notion of minimal graph cycles: the roads that do not belong to a minimal cycle or that belong to a cycle disconnected from the graph (case with a roundabout at the end of the dead end) are considered as dead ends and are then grouped by connectivity. In the test data, optional facility data is available so dead ends are enriched with access to the facility when access exists (when the nearest access to the network of a facility point is a dead end).

simple dead end roads and dead end groups

The code to detect dead end roads is here

See also