本程序原理很简单,主要就是选定指定的研究区进行NDVI6-8年的时序分析,并求出指定时序范围内的的值。当然再计算每月的过程中,我们肯定会用到map循环遍历每一年月份的图表,通过使用linearfit来计算斜率,通过选择指定阈值范围内的斜率来计算不同范围内的像素值。这里可以差异化加载不同阈值范围内的影像,也就是分段表示不同颜色。
这里再设定图表的时候,我们因为时间时默认的所以我们这里可以通过设定一个函数将时间转化为指定格式的标准时间。
文中所使用的主要函数:
ui.Chart.image.series(imageCollection, region, reducer, scale, xProperty)
Generates a Chart from an ImageCollection. Plots derived values of each band in a region across images. Usually a time series.
- X-axis: Image, labeled by xProperty value.
- Y-axis: Band value.
- Series: Band names.
Returns a chart.
Arguments:
imageCollection (ImageCollection):
An ImageCollection with data to be included in the chart.
region (Feature|FeatureCollection|Geometry):
The region to reduce.
reduce