From 21ed7ea4a2b394e9a36f94b215214f1154d00973 Mon Sep 17 00:00:00 2001 From: Numira Date: Mon, 30 Mar 2026 10:03:11 +0200 Subject: [PATCH] Change GeoJSON fetch URL to 110m resolution Updated GeoJSON data source to use 110m resolution. --- 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 1687dfc..59723d2 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_50m_admin_0_countries.geojson') + fetch('https://raw.githubusercontent.com/nvkelso/natural-earth-vector/master/geojson/ne_110m_admin_0_countries.geojson') .then(r => r.json()) .then(geo => { // Dynamically build A2→A3 mapping from GeoJSON