From 48bbf9024fe17f3ab5e1ce22ec32428471def05a Mon Sep 17 00:00:00 2001 From: Diego Ripley Date: Thu, 12 Feb 2026 17:23:52 -0500 Subject: [PATCH] Improve infrastructure map --- content/infrastructure/_index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/infrastructure/_index.md b/content/infrastructure/_index.md index 7cdf903..83e747d 100644 --- a/content/infrastructure/_index.md +++ b/content/infrastructure/_index.md @@ -192,16 +192,16 @@ sidebar: ]; - const width = 960; - const height = 600; + const width = 750; + const height = 400; const svg = d3.select('#map') .attr('width', width) .attr('height', height); const projection = d3.geoNaturalEarth1() - .scale(355) - .center([-30, 50]) + .scale(280) + .center([-75, 65]) .translate([width / 2, height / 2]); const path = d3.geoPath().projection(projection);