Trees and Geo
Information Visualization
What We Are Going to Learn
- What are trees
- How to visualize Trees
- Node-Link representations
- Containment representations
- Tree comparison
- How to visualize spatial
Tree Definition
- Set of nodes and links that express the parent-to-child relationship, where each node:
- Is uniquely labeled in the tree
- Contains one or more numeric variables with values over time
- Contains one or more categorical attributes that may have more than one value
Types of Trees
How Trees Are Stored
- JSON file
- GraphML file
- Table
- Multiple attributes define hierarchy (e.g. state, city, neighborhood)
- One attribute defines hierarchy with a separator (e.g. California/San Francisco/Presidio)
- One attribute defines parent ID
Idiom: Radial Node-Link Tree
- Data:
- Encoding:
- Link connection marks
- Point node marks
- Radial axis orientation
- Angular proximity: siblings
- Distance from center: depth in tree
- Task:
- Understanding topology, following paths
- Scalability:
Cluster Dendograms Radial
- Data: trees
- Tasks: summarize common connections
- Considerations:
- Harder to read
- Better space usage
Phylogenetic Trees
- Data: tree of life
- Tasks: summarize common connections; identify clusters
- Considerations:
- Harder to read
- Also works with other clusters' data
Cluster Dendograms Cartesian
Collapsible Tree
- Data: tree/network
- Tasks: navigate connections; locate nodes
- Considerations:
- Great for larger datasets
Dendogram with Values
- Data: tree/network
- Tasks: summarize topology and distribution of a value
Idiom: Treemap
- Data:
- Tree
- One quantitative attribute at leaf nodes
- Encoding:
- Area containment marks for hierarchical structure
- Rectilinear orientation
- Area encodes quantitative attribute
- Tasks:
- Query attribute at leaf nodes
- Scalability:
Cascaded Treemap
- Readable inner labels
- Less Precise
- Better at showing hierarchy
Treemap extended
- Add a color channel
- e.g. To show the change in the stock prices
Icicle Tree
- Data: tree
- Tasks: summarize values/hierarchy; navigate links
- Considerations:
- Uses more space than the treemap
- Better for labels
Zoomable Icicle Tree with values
- Data: tree
- Tasks:
- summarize values/hierarchy
- navigate links
- compare values in leaves
- Considerations:
Sunburst Tree
- Data: tree
- Tasks: summarize values/hierarchy; navigate links
- Considerations:
- Radial values are confusing
- Fancy yet difficult animation
Tree Drawing Idioms Comparison
- Data shown:
- Link relationships
- Tree depth
- Sibling order
- Design choices:
- Connection vs. containment link marks
- Rectilinear vs. radial layout
- Spatial position channels
- Considerations:
- Redundant? Arbitrary?
- Information density?
Idiom: Choropleth Map
- Use given spatial data:
- When central task is understanding spatial relationships
- Data:
- Geographic geometry
- Table with one quantitative attribute per region
- Encoding:
- Use given geometry for area mark boundaries
- Sequential segmented colormap
- Essentially, geographic heat map
Choropleth Map
- Familiar
- Areas encode... state area
Idiom: Dot Map
- Good for population density
- Might require opengl
- Task summarize
Idiom: Bubble Map
- Alternative for choropleth
- Be careful with occlusion
Idiom: Spike Map
- Another alternative for choropleth
- Also be careful with occlusion
Idiom: Vega-Lite Spike Map
- Another alternative for choropleth
- Also be careful with occlusion
Population Maps Trickiness
- Beware!
- Absolute vs. relative again
- Population density vs. per capita
- Investigate with Ben Jones Tableau Public demo
- Are maps of financial variables just population maps?
- Yes, unless you look at per capita (relative) numbers
Idiom: Bayesian Surprise Maps
- Use models of expectations to highlight surprising values
- Confounds (population) and variance (sparsity)
Bayesian Surprise Map
Idiom: Topographic Map
- Data:
- Scalar spatial field:
- One quantitative attribute per grid cell
- Derived data:
- Isoline geometry
- Isocontours computed for specific levels of scalar values
Idiom: Cartogram
- Data:
- Geographic geometry
- Continuous value at each geometry
- Derived data:
- New geographic geometry: many algorithm choices
- Then encoded as choropleth
Cartogram 2
Idioms: Isosurfaces, Direct Volume Rendering
- Data:
- Scalar spatial field
- One quantitative attribute per grid cell
- Task:
- Shape understanding, spatial relationships
- Isosurface:
- Derived data: isocontours computed for specific levels of scalar values
- Direct volume rendering:
- Transfer function maps scalar values to color, opacity
Isosurfaces Example
Vector and Tensor Fields
- Data:
- Idiom families:
- Flow glyphs:
- Geometric flow:
- Derived data from tracing particle trajectories
- Sparse set of seed points
- Texture flow:
- Derived data, dense seeds
- Feature flow:
- Global computation to detect features
- Encoded with one of methods above
Vector Fields
- Empirical study tasks:
- Finding critical points, identifying their types
- Identifying what type of critical point is at a specific location
- Predicting where a particle starting at a specified point will end up (advection)
Vector Field Example
Name That Dynamical System
Idiom: Similarity-Clustered Streamlines
- Data:
- Derived data (from field):
- Streamlines: trajectory particle will follow
- Derived data (per streamline):
- Curvature, torsion, tortuosity
- Signature: complex weighted combination
- Compute cluster hierarchy across all signatures
- Encode: color and opacity by cluster
- Task:
- Find features, query shape
- Scalability:
- Millions of samples, hundreds of streamlines
Streamlines
Mapbox + Tableau examples
What We Learned
- What are trees
- How to visualize Trees
- Node-Link representations
- Containment representations
- Tree comparison
- How to visualize spatial