From 3059d53d117d968eb9042b1fbe9e7428a1082b25 Mon Sep 17 00:00:00 2001 From: Maurice Date: Mon, 30 Mar 2026 10:19:17 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20use=2050m=20resolution=20GeoJSON=20for?= =?UTF-8?q?=20Atlas=20=E2=80=94=20show=20smaller=20countries=20=E2=80=94?= =?UTF-8?q?=20closes=20#115?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Switch from ne_110m to ne_50m Natural Earth dataset so small countries like Seychelles, Maldives, Monaco etc. are visible in the Atlas view and visited countries status. --- client/src/pages/AtlasPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/pages/AtlasPage.tsx b/client/src/pages/AtlasPage.tsx index 59723d2..1687dfc 100644 --- a/client/src/pages/AtlasPage.tsx +++ b/client/src/pages/AtlasPage.tsx @@ -179,7 +179,7 @@ export default function AtlasPage(): React.ReactElement { // Load GeoJSON world data (direct GeoJSON, no conversion needed) useEffect(() => { - fetch('https://raw.githubusercontent.com/nvkelso/natural-earth-vector/master/geojson/ne_110m_admin_0_countries.geojson') + fetch('https://raw.githubusercontent.com/nvkelso/natural-earth-vector/master/geojson/ne_50m_admin_0_countries.geojson') .then(r => r.json()) .then(geo => { // Dynamically build A2→A3 mapping from GeoJSON