赞
踩
(一)在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
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。