Graph Atlas is a tool for visualizing and exploring networks of relationships. It represents elements as points, called nodes, and their relationships as lines, called edges.
For example, in a Unity game, nodes could represent NPCs and edges their relationships. In another context, they could represent cities connected by roads or ideas connected to one another. The tool is neutral: your data determines what the network means.
What is it useful for?
It helps you identify:
-
- The most connected elements.
-
- Groups with strong internal connections.
-
- Elements that act as bridges between groups.
-
- Isolated parts of a network.
-
- The shortest path between two elements.
Colors and node sizes make network properties easier to see. For example, coloring nodes by degree highlights those with the most connections.
How does it work?
The application performs three main operations:
-
- Loads a network from a demonstration or an imported file.
-
- Calculates its properties from the connections.
-
- Positions and draws its nodes in an interactive scene.
Changing the layout changes how you see the network, without changing its connections. The same network can appear as a sphere, circle, helix or stack of layers.
With the “Force-directed · 3D” layout, nodes repel one another while edges pull connected nodes together, like small springs. The network gradually settles into an arrangement that helps reveal its structure.
What do the metrics mean?
| Metric | What it tells you |
|---|---|
| Degree | The number of directly connected neighbors. |
| PageRank | A node’s importance based on its neighbors’ connections. |
| Betweenness | How often a node acts as a bridge along shortest paths. |
| Harmonic closeness | How close a node is to others, measured in edge steps. |
| Community | A group suggested by the algorithm based on connections. |
| Connected component | A group in which every node can reach every other node through edges. |
A detected community is a structural indication, not proof that its members share a particular real-world relationship.
