Last updated: 2026-09-16

U
Undergraduate level

Triangulating in Complex Concept Spaces

Spatial Cognitive Metaphors

Navigating complex technical documentation or interdisciplinary research requires more than moving backwards and forwards through a linear list. This article explores cognitive spatial metaphors, wayfinding strategies, waystation breadcrumb trails, and how users triangulate their position across dense intellectual landscapes.

The Metaphor of Intellectual Wayfinding

In physical geography, wayfinding involves orienting oneself relative to known landmarks, assessing terrain contours, and choosing pathways that reach a destination. The term itself, and the questions below, come from Kevin Lynch's urban-planning study of how people build mental maps of cities from paths, edges, districts, nodes, and landmarks[1] — a framework built for physical streets that maps onto a digital concept space with almost no adaptation, because both are exercises in orienting an explorer inside a space too large to see all at once. When applied to digital knowledge management, wayfinding enables learners to answer three fundamental questions at any moment:

  1. Where am I? — Pinpointing the current document within the broader landscape of ideas ("YOU ARE HERE").
  2. What lies nearby? — Inspecting neighbouring concept provinces, shared vocabularies, and transitional bridge topics.
  3. How did I get here, and where can I go? — Tracing traversal pathways back to origin landmarks or forward into uncharted territory.

Triangulation Across Interdisciplinary Domains

Traditional site architectures isolate pages inside rigid hierarchical silos. For example, an article on Project Marking as BDD might live strictly under /topics/ai-ethics/, while an article on PatLang BDD Framework lives under /topics/patlang/. A reader interested in BDD methodology would have to jump between disconnected navigation trees.

Spatial cartography resolves this by triangulating articles based on semantic vector proximity. The distance between nodes on the map represents conceptual similarity rather than arbitrary folder structures. BDD methodologies, software testing, and educational rubrics form a natural geographical cluster that spans across traditional topic boundaries.

Turning a high-dimensional similarity structure into a flat, walkable 2D layout is itself a well-studied problem, not a bespoke trick: it is the same task multidimensional scaling (MDS) was built to solve, arranging points so that on-page distance approximates the underlying dissimilarity as closely as possible[2], and force-directed layout algorithms extend by letting attractive and repulsive forces between connected and unconnected nodes settle into a readable arrangement rather than solving the placement globally in one step[3]. The honest limitation of any such projection is the one cartography has always had: a two-dimensional map necessarily discards some of the structure of a higher-dimensional space, so two articles can look close on the atlas while sharing only a partial, secondary concept, or sit apart despite a real but lower-weighted connection. The road network and bridge-term interrogation described elsewhere in this topic exist precisely to give a reader a second, more literal signal to check against the map's spatial intuition rather than trusting position alone.

The Wayfarer Journey Trail System

When a reader opens the Concept Atlas, selects a destination node, and travels along a highlighted terrain highway, the system records the exact sequence of waystations traversed. Upon arriving at the target page, a persistent Wayfarer Route Banner renders directly beneath the article breadcrumbs:

🗺️ Wayfarer Route: Risk Management Software Engineering Triangulating Concept Spaces

This is a direct answer to the third of Lynch's wayfinding questions above — "how did I get here" — made persistent rather than something the reader has to remember unaided. A conventional site relies on the back button or a single fixed breadcrumb tied to folder location; neither reflects the actual, often winding, cross-topic route a reader took through the concept space. The journey trail instead records the real path travelled, independent of where each stop happens to live in the site's directory structure.

Session Persistence Architecture

The Wayfarer Journey Trail operates without server-side tracking or cookies, utilising browser sessionStorage to maintain privacy while preserving state across page transitions:

  • Canonical Root-Relative Paths: Traversal steps are stored as canonical root paths (e.g., topics/education/rubrics.html).
  • Dynamic Page-Local Prefix Resolution: Each page dynamically prepends its local relative prefix (../../ or ../) to step paths, guaranteeing 100% valid, clickable URLs across nested subdirectories.
  • Exploration Reset: Readers can clear their journey trail at any time using the inline ✕ Clear Trail action or by starting a new exploration path from the atlas map.

References

  1. Lynch, K., The Image of the City. MIT Press, 1960. Held by the University of Reading Library.
  2. Kruskal, J. B., "Multidimensional scaling by optimizing goodness of fit to a nonmetric hypothesis," Psychometrika, vol. 29, no. 1, pp. 1–27, 1964. https://doi.org/10.1007/BF02289565
  3. Fruchterman, T. M. J. and Reingold, E. M., "Graph drawing by force-directed placement," Software: Practice and Experience, vol. 21, no. 11, pp. 1129–1164, 1991. https://doi.org/10.1002/spe.4380211102