GEE学习笔记:在GEE中下载Sentinel-2影像

这里介绍如何下载Sentinel-2影像

实验区域:北京市

时间:2019-04-01至2019-10-31

var roi = table;  //table为自己上传的矢量边界

//去云
function maskS2clouds(image) {
  var qa = image.select('QA60');
  // Bits 10 and 11 are clouds and cirrus, respectively.
  var cloudBitMask = 1 << 10;
  var cirrusBitMask = 1 << 11;
  // Both flags should be set to zero, indicating clear conditions.
  var mask = qa.bitwiseAnd(cloudBitMask).eq(0)
      .and(qa.bitwiseAnd(cirrusBitMask).eq(0));
  return image.updateMask(mask).divide(10000);
}

//按条件筛选影像
var dataset = ee.ImageCollection('COPERNICUS/S2')
                  .filterBounds(roi)
                  .filterDate('2019-04-01', '2019-10-31')
                  .filter(ee.Filter.lt('CLOUDY_PIXEL_PERCENTAGE', 10))
                  .map(maskS2clouds)
                  .median()
                  .clip(roi);
     
var rgbVis = {
  min: 0.0,
  max: 0.3,
  bands: ['B4', 'B3', 'B2'],
};

Map.addLayer(dataset, rgbVis, 'dataset');
Map.centerObject(roi,7)

//显示roi
var styling = {color:"red",fillColor:"00000000"};
Map.addLayer(roi.style(styling),{},"boundary")

//导出数据
Export.image.toDrive({
  image: dataset,
  description: 'sentinel-2',
  crs: "EPSG:4326",
  scale: 10,
  region: roi,
  maxPixels: 1e13,
  folder: 'sentinel-2'
});




注:在导出数据时,设置"crs"为“EPSG:4326”,即设置导出的影像坐标系为WGS84

GEE中的显示结果:

在【Tasks】下点击RUN,等待上传Google云端硬盘,时间可能会久点,耐心等待。

GEE学习笔记:在GEE中下载Sentinel-2影像_第1张图片

 上传完成后,会显示一个对号,点击【Open in Drive】,找到文件下载即可。

GEE学习笔记:在GEE中下载Sentinel-2影像_第2张图片

 GEE学习笔记:在GEE中下载Sentinel-2影像_第3张图片

你可能感兴趣的:(GEE学习笔记,遥感,数据下载,Sentinel-2,GEE,编程)