Orientation Glyphs
One option is to represent each link type by a colored bar, and to separate these by rotation, so that link type is redundantly encoded by orientation and color.
| |
Construct the network from a hard-coded link-table. |
|
Define an ordering that orders the nodes based on their id... |
|
...and use this ordering to create a table. |
|
Define scale to map from edge type to angle and color. |
|
This block defines what we want to draw for each element of the table. |
|
Label the rows and columns... |
|
...and draw lines between each cell. |
|
This block defines what to draw for each data element inside the parent block: i.e., for each edge in this table cell. |
|
We draw a bar, sized relative to the table cell, with a color and rotation determined by the link type. |
|