Google Earth Engine (GEE) 导出数据到Drive account (Google Drive)目录

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

// Load a landsat image and select three bands.
var landsat = ee.Image('LANDSAT/LC08/C01/T1_TOA/LC08_123032_20140515')
  .select(['B4', 'B3', 'B2']);

// Create a geometry representing an export region.
var geometry = ee.Geometry.Rectangle([116.2621, 39.8412, 116.4849, 40.01236]);

// Export the image, specifying scale and region.
Export.image.toDrive({
  image: landsat,
  description: 'imageToDriveExample',
  scale: 30,
  region: geometry
});

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

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

Google Earth Engine (GEE) 导出数据到Drive account (Google Drive)目录_第1张图片

在弹出的对话框中再点击Run,则可将(一)中选择的图像传至Google云端硬盘。

Google Earth Engine (GEE) 导出数据到Drive account (Google Drive)目录_第2张图片

(三)在云端硬盘中查看保存的数据:打开https://www.google.com/,先点击右上方①所在图标,再点击“云端硬盘”

Google Earth Engine (GEE) 导出数据到Drive account (Google Drive)目录_第3张图片

即可查看所保存的图像。右键即可下载。

Google Earth Engine (GEE) 导出数据到Drive account (Google Drive)目录_第4张图片

(四)后记:也可点击左侧“新建”按钮来新建文件夹(命名为“D”),然后在Export.image.toDrive代码部分添加一个folder: 'D',即可将文件存储到“D”这个子文件夹中。

// Export the image, specifying scale and region.
Export.image.toDrive({
  image: landsat,
  description: 'imageToDriveExample',
  folder: 'D',
  scale: 30,
  region: geometry
});

(五)参考

1、GEE中把文件导出到Google Drive的子目录:https://blog.csdn.net/shi_weihappy/article/details/89948654

2、如何打开google云端硬盘:https://jingyan.baidu.com/article/b0b63dbf8744590a4930707b.html

3、GEE入门:https://blog.csdn.net/weixin_43360896/article/details/108242247

4、GEE编辑器概述:https://developers.google.com/earth-engine/guides/playground

你可能感兴趣的:(数据处理,google,earth,图像处理)