File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -35,8 +35,11 @@ def __init__(self, url: _arg_types.String):
35
35
"""Creates a Blob wrapper.
36
36
37
37
Args:
38
- url: Where to fetch the blob on GCS. Must start with "gs://". This must
39
- be a python str or a ComputedObject that returns an ee.String.
38
+ url: Where to fetch the blob on GCS. Must start with "gs://". This must be
39
+ a python str or a ComputedObject that returns an ee.String. The bucket
40
+ metadata must be accessible (check the storage.buckets.get permission)
41
+ and the bucket must be located in the US multi-region, a dual-region
42
+ including US-CENTRAL1, or the US-CENTRAL1 region.
40
43
"""
41
44
self .initialize ()
42
45
Original file line number Diff line number Diff line change @@ -2520,7 +2520,10 @@ def loadGeoTIFF(uri: _arg_types.String) -> Image:
2520
2520
"""Returns an image from a GeoTIFF in Cloud Storage.
2521
2521
2522
2522
Args:
2523
- uri: The Cloud Storage URI of the GeoTIFF to load.
2523
+ uri: The Cloud Storage URI of the GeoTIFF to load. The bucket metadata
2524
+ must be accessible (check the storage.buckets.get permission) and the
2525
+ bucket metadata must be located in the US multi-region, a dual-region
2526
+ including US-CENTRAL1, or the US-CENTRAL1 region.
2524
2527
"""
2525
2528
2526
2529
return apifunction .ApiFunction .call_ ('Image.loadGeoTIFF' , uri )
You can’t perform that action at this time.
0 commit comments