From a661ff018532c02e432fbb2f92c35315b5124125 Mon Sep 17 00:00:00 2001 From: Anton Afanasyeu Date: Wed, 5 Aug 2026 19:23:49 +0200 Subject: [PATCH] fix(globe3d=11): N-S latitude factor 0.75 on mercator land sample Co-authored-by: Cursor --- assets/hub-globe.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/hub-globe.js b/assets/hub-globe.js index dc5b7ce..3cddad5 100644 --- a/assets/hub-globe.js +++ b/assets/hub-globe.js @@ -29,8 +29,8 @@ const CONTINENT_INNER_SX = 1.2408477842003853; const CONTINENT_INNER_SY = 1.2408477842003853; /** Map plate center longitude (extract_red_polygons.py CENTER_LON). */ const MERCATOR_LON_CENTER = (12 * Math.PI) / 180; -/** N–S squeeze strength (0.15 → lat × 0.85, i.e. 15% compression). */ -const CONTINENT_NS_SQUEEZE = 0.15; +/** N–S latitude factor on mercator sample (0.75 = lat × 0.75). */ +const CONTINENT_LAT_FACTOR = 0.75; const RASTER_SCALE = 2; const AXIS_STEPS = 160; const SPHERE_AXIS_STEPS = 180;