Skip to content

Commit

Permalink
FIX: Avoid EE initialization within cubo (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
davemlz committed Aug 19, 2024
1 parent 514a5cc commit fa58dc6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cubo/cubo.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,8 @@ def create(
)

# Initialize Google Earth Engine with the high volume endpoint
ee.Initialize(opt_url="https://earthengine-highvolume.googleapis.com")
# User must do this before using cubo
# ee.Initialize(opt_url="https://earthengine-highvolume.googleapis.com")

# Get BBox values in latlon
west = bbox_latlon["coordinates"][0][0][0]
Expand Down

0 comments on commit fa58dc6

Please sign in to comment.