当前位置:   article > 正文

Google Earth Engine (GEE) 导出数据到Drive account (Google Drive)目录_gee 导出值到本地

gee 导出值到本地

(一)在https://code.earthengine.google.com/中输入以下代码:

  1. // Load a landsat image and select three bands.
  2. var landsat = ee.Image('LANDSAT/LC08/C01/T1_TOA/LC08_123032_20140515')
  3. .select(['B4', 'B3', 'B2']);
  4. // Create a geometry representing an export region.
  5. var geometry = ee.Geometry.Rectangle([116.2621, 39.8412, 116.4849, 40.01236]);
  6. // Export the image, specifying scale and region.
  7. Export.image.toDrive({
  8. image: landsat,
  9. description: 'imageToDriveExample',
  10. scale: 30,
  11. region: geometry
  12. });

此段代码来源于https://developers.google.com/earth-engine/guides/exporting#configuration-parameters

(二)点击①所在的Run,则会在右边的Tasks中创建一个任务,点击任务名后的RUN

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/在线问答5/article/detail/1010673
推荐阅读
相关标签
  

闽ICP备14008679号