An interactive visualization of ancient human Y-haplogroup migration patterns using the Fuller/Dymaxion map projection.
Live Demo: https://johnjanik.github.io/HumanMigrationMap/
- Fuller/Dymaxion Projection - Uses the Airocean arrangement to display Earth's landmasses with minimal distortion, making it ideal for visualizing human migration routes
- Y-Haplogroup Migration Data - 200+ migration events spanning 275,000 years of human history
- Ancestry Tracing - Select haplogroups in the sidebar to trace lineages back to their origins
- Time Filtering - Adjust the time range to see migrations at different periods
- Ice Age Coastlines - Toggle paleoshoreline layer showing land bridges at -200m sea level (Doggerland, Sundaland, Beringia)
- Interactive Map - Pan, zoom, and hover over countries for details
- React 18 + TypeScript
- Vite build system
- D3.js with d3-geo-polygon for the geoAirocean projection
- CSS Modules for styling
- Geographic Data: Natural Earth - Free vector map data at 1:110m scale
- Bathymetry: Natural Earth 10m bathymetry contours for paleoshoreline visualization
- Migration Data: Y-haplogroup phylogenetic data compiled from genetic research
- Node.js 18+
- npm
# Clone the repository
git clone https://github.com/johnjanik/HumanMigrationMap.git
cd HumanMigrationMap
# Install dependencies
npm install
# Start development server
npm run devnpm run buildThe built files will be in the dist/ directory.
src/
├── components/
│ ├── App.tsx # Main application component
│ ├── FullerMap/ # Map rendering components
│ ├── Controls/ # Zoom and layer controls
│ ├── Overlays/ # Migration path and point overlays
│ └── Sidebar/ # Sidebar with haplogroup selector
├── data/
│ ├── layerConfigs.ts # Map layer configuration
│ └── migrationData.ts # Y-haplogroup migration events
├── hooks/ # Custom React hooks
└── types/ # TypeScript type definitions
public/
├── data/geojson/ # Natural Earth GeoJSON files
└── bathymetry/ # Paleoshoreline data
The Dymaxion map, invented by Buckminster Fuller in 1943, projects Earth onto an icosahedron which is then unfolded. This projection:
- Preserves relative size of landmasses better than Mercator
- Shows all continents without splitting any of them
- Reveals migration routes across now-submerged land bridges
- Presents a more interconnected view of human geography
To ensure reproducibility and transparency, the dataset and visualization tools used in this study are openly available on GitHub (Janik, 2026). The repository, HumanMigrationMap, provides source code, documentation, and interactive maps for analyzing migration patterns. It can be accessed at: https://github.com/johnjanik/HumanMigrationMap.
If you need it in a formal reference list, here’s an APA-style citation:
Reference list entry (APA 7th ed.):
Janik, J. (2026). HumanMigrationMap (Version X.X) [Computer software]. GitHub. https://github.com/johnjanik/HumanMigrationMap
@misc{janik2026humanmigrationmap, author = {John Janik}, title = {HumanMigrationMap}, year = {2026}, howpublished = {\url{https://github.com/johnjanik/HumanMigrationMap}}, note = {Version X.X}, }
MIT License - See license for details.
- Natural Earth for open geographic data
- D3.js and d3-geo-polygon for projection support
- Buckminster Fuller for the Dymaxion map concept