Skip to content

Commit

Permalink
Made changes to default chunks to not exceed 48 MB request limit.
Browse files Browse the repository at this point in the history
Fixes #50.

PiperOrigin-RevId: 572206305
  • Loading branch information
Xee authors committed Oct 10, 2023
1 parent f870e23 commit 43c1095
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xee/ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -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] = {
Expand Down

0 comments on commit 43c1095

Please sign in to comment.