Google Earth Engine(GEE)——重采样后的精度有没有提升?分辨率有没有变化?

有关上一次有朋友问到30米分辨重采样后的精度如何,这里我们进行分析一下:上次的文章链接:

(1101条消息) Google Earth Engine(GEE)——Landsat卫星影像重采样提高分辨率_此星光明2021年博客之星云计算Top3的博客-CSDN博客_gee重采样

// 加载加利福尼亚州旧金山上空的 Landsat 图像。
var landsat = ee.Image('LANDSAT/LC08/C01/T1_TOA/LC08_044034_20160323').select(['B2', 'B3', 'B4', 'B5', 'B6', 'B7', 'B10', 'B11']);
 var scale = landsat.projection().nominalScale();

// 设置影像参数
Map.setCenter(-122.37383, 37.6193, 15);
var visParams = {bands: ['B4', 'B3', 'B2'], max: 0.3};
 print("landsat.nominalScale()",scale)
// 使用默认的最近邻重采样显示 Landsat 影像。
// 当为代码编辑器地图重新投影到墨卡托时。
Map.addLayer(landsat, visParams, 'o

猜你喜欢

转载自blog.csdn.net/qq_31988139/article/details/124817988