diff --git a/xee/ext.py b/xee/ext.py index b82163e..87072d7 100644 --- a/xee/ext.py +++ b/xee/ext.py @@ -279,11 +279,13 @@ def get_info(self) -> Dict[str, Any]: rpcs.append(('projection', self.projection)) if isinstance(self.geometry, ee.Geometry): - rpcs.append(('bounds', self.geometry.bounds(proj=self.projection))) + rpcs.append(('bounds', self.geometry.bounds(1, proj=self.projection))) else: rpcs.append(( 'bounds', - self.image_collection.first().geometry().bounds(proj=self.projection), + self.image_collection.first() + .geometry() + .bounds(1, proj=self.projection), )) # TODO(#29, #30): This RPC call takes the longest time to compute. This