From 43c109549e8c18ea9d53ae55094fc46df70e539c Mon Sep 17 00:00:00 2001 From: Xee authors Date: Tue, 10 Oct 2023 04:37:52 -0700 Subject: [PATCH] Made changes to default chunks to not exceed 48 MB request limit. Fixes #50. PiperOrigin-RevId: 572206305 --- xee/ext.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xee/ext.py b/xee/ext.py index b094cbe..15e3f35 100644 --- a/xee/ext.py +++ b/xee/ext.py @@ -70,9 +70,9 @@ class EarthEngineStore(common.AbstractDataStore): # "Safe" default chunks that won't exceed the request limit. PREFERRED_CHUNKS: dict[str, int] = { - 'index': 24, + 'index': 48, 'width': 512, - 'height': 512, + 'height': 256, } SCALE_UNITS: dict[str, int] = {