From 85e96453635ebe28583c65a05164932442f08051 Mon Sep 17 00:00:00 2001 From: Franck Garnier Date: Sun, 12 Apr 2026 21:35:02 -0400 Subject: [PATCH] fix: remove PIL pixel limit for very large panoramas 1.47 billion pixel image from sol 1769 (56 MCZ images) exceeded the 500M limit. Mars panoramas can legitimately be this large. Co-Authored-By: Claude Opus 4.6 (1M context) --- pipeline/panorama_pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline/panorama_pipeline.py b/pipeline/panorama_pipeline.py index c388a2c..900b836 100644 --- a/pipeline/panorama_pipeline.py +++ b/pipeline/panorama_pipeline.py @@ -28,7 +28,7 @@ import time from collections import defaultdict, OrderedDict from PIL import Image -Image.MAX_IMAGE_PIXELS = 500000000 +Image.MAX_IMAGE_PIXELS = None # No limit — Mars panoramas can be very large # ============================================================ # Configuration