GEE:如何理解功能“ ui.Chart.image.series”中的参数“ SCALE”?

问题描述

print(ui.Chart.image.series(col,geometry,ee.Reducer.mean(),20).setoptions({
title: 'TimeSeries analysis',linewidth: 1,pointSize: 3 }));

enter image description here

print(ui.Chart.image.series(col,200).setoptions({
title: 'TimeSeries analysis',pointSize: 3 }));

enter image description here

当我将参数scale设置为不同的值时,图表是不同的(我的意思是同时值是不同的),所以我想知道“ scale”参数和ee.Reducer的含义参数?我尝试在GEE指南帮助中找到其含义,但无法理解。

解决方法

比例尺是指用于分析图像的像素分辨率。比例尺越大,像素将越聚集,因此输出不同的结果。假设您正在分析一块土地上的植被指数。如果您想知道最大值,则以20 m x 20 m的像素进行分析会得出与以1000 m x 1000 m的片段进行分析时不同的结果。分辨率越小,结果越准确,但计算速度越慢,反之亦然。

此处的更多信息https://developers.google.com/earth-engine/guides/scale