📐 Travel Analysis
League Distance Matrix
Crow-flies distances between every club in a league · All 24 Midlands leagues
Select a League
Choose a level and league above to see the distance matrix
| Club | `; clubs.forEach(c => { // Truncate long names for column headers const short = c.club_name.length > 12 ? c.club_name.substring(0, 11) + '…' : c.club_name; html += `${short} | `; }); html += `|
|---|---|---|
| ${rowClub.club_name} | `; clubs.forEach((colClub, j) => { if (i === j) { html += `— | `; } else { const d = distances[`${i}-${j}`]; const cls = distClass(d, i, j); html += `${d.toFixed(1)} | `; } }); html += `