简体   繁体   English

GEE:如何理解FUNCTION 'ui.Chart.image.series'中的参数'SCALE'?

[英]GEE:how to understand the parameter 'SCALE' in FUNCTION 'ui.Chart.image.series'?

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

在此处输入图片说明

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

在此处输入图片说明

when I set the parameter scale in different values, the chart is different(I mean at the same time while the value is different), so I want to know the meaning of the "scale" parameter and ee.Reducer parameter?当我将参数scale设置为不同的值时,图表是不同的(我的意思是同时而值不同),所以我想知道“scale”参数和ee.Reducer参数的含义? I try to find the meaning in the GEE guide help, but can't understand.我试图在GEE指南帮助中找到含义,但无法理解。

Scale refers to the pixel resolution used to analyse the image.比例是指用于分析图像的像素分辨率。 The larger the scale the more aggregated the pixels will be, thus outputting different results.尺度越大,像素越聚合,从而输出不同的结果。 Say you are analyzing a vegetation index on a plot of land.假设您正在分析一块土地上的植被指数。 If you want to know the max value, analyzing it by pixels of 20 m by 20 m will lead to a different result than if you analysed it in pieces of 1000 m by 1000 m.如果您想知道最大值,以 20 m × 20 m 的像素进行分析将导致与以 1000 m × 1000 m 为单位进行分析的结果不同。 The smaller the resolution, the more accurate the results, but the slower the calculation and vice-versa.分辨率越小,结果越准确,但计算速度越慢,反之亦然。

More info on this here https://developers.google.com/earth-engine/guides/scale此处的更多信息https://developers.google.com/earth-engine/guides/scale

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM