GEE介绍:​​https://earthengine.google.com/​​ 。

安装python版的GEE环境,报错404。执行的是下述代码:

import ee
ee.Initialize()
image1 = ee.Image('srtm90_v4')
path = image1.getDownloadUrl({
'scale': 30,
'crs': 'EPSG:4326',
'region': '[[-120, 35], [-119, 35], [-119, 34], [-120, 34]]'
})
# 获取下载地址
print(path)

原因是未获得授权。试访问并注册等待人工审核: ​​https://code.earthengine.google.com/​​ 。

GEE(Google Earth Engine) 404_下载地址

参考文档:
​​​https://github.com/google/earthengine-api/issues/27​