Error when loading geoTIFF #6
-
Hello, I am getting this error when loading the geoTIFF. What is the issue? Also, I don't believe this changes anything, but there is an added comma after the band values within the vis variable.
EEException: Image.loadGeoTIFF: Failed to load the GeoTIFF at 'gs://pdd-stac/disasters/hurricane-harvey/0831/20170831_172754_101c_3B_AnalyticMS.tif#1519335766223629': The overview at index 1 with dimensions (2770, 1307) is not a power-of-two reduction of the image with dimensions (8310, 3919). |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
I get the same problem. Have you found a solution by chance? |
Beta Was this translation helpful? Give feedback.
-
It seems the Google Cloud bucket hosting the sample file is no longer accessible. Try the following example instead. import geemap
Map = geemap.Map()
URL = 'gs://gcp-public-data-landsat/LC08/01/001/002/LC08_L1GT_001002_20160817_20170322_01_T2/LC08_L1GT_001002_20160817_20170322_01_T2_B5.TIF'
image = geemap.load_GeoTIFF(URL)
vis = {
"min": 0,
"max": 20000,
}
Map.addLayer(image, vis, 'Cloud GeoTIFF')
Map.centerObject(image, 6)
Map |
Beta Was this translation helpful? Give feedback.
It seems the Google Cloud bucket hosting the sample file is no longer accessible. Try the following example instead.