From 7131655a4ee923b471db84a5dfb37b4c035312f8 Mon Sep 17 00:00:00 2001 From: dabhicusp Date: Fri, 16 Feb 2024 07:10:07 +0000 Subject: [PATCH] Added maxError as a 1 in the bounds for better. --- xee/ext.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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