Google Earth Engine(GEE)——可视化洪水区时间序列工具,可导出视频

一个可视化淹没区域和总结区域变化的时间序列的工具。所有可用的哨兵1号图像的视频可以导出到谷歌硬盘。这是为了调查地表水的面积变化2018 年缅甸洪水。它显示了洪水淹没面积的变化
来自哨兵 1。您可以在控制台中查看面积变化图的时间序列并将图像导出为视频。

这里同样用到了kmeans聚类分析,用于区分洪水区域,另外时序图表也用到一个函数:

ui.Chart.image.seriesByRegion(imageCollection, regions, reducer, bandscalexPropertyseriesProperty)

Generates a Chart from an image collection. Extracts and plots the value of the specified band in each region for each image in the collection. Usually a time series.

从一个图像集合生成一个图表。提取并绘制集合中每张图像的每个区域的指定波段的值。通常是一个时间序列。

  • X-axis = Image labeled by xProperty (default: 'system:time_start').

  • Y-axis = Reducer output.

  • Series = Region labeled by seriesProperty (default: 'system:index').

Returns a chart.

Arguments:

imageCollection (ImageCollection):

An ImageCol

猜你喜欢

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