GEE错误——Error generating chart: No features contain non-null values of “system:time_start“.

错误问题:

我希望查看多年来不同作物掩模下的 NDVI 异常情况。理想情况下,只需将值作为 csv 导出到 googledrive,但我首先尝试在 Web UI 中查看它。然而它总是超时。看来我应该继续增加比例值以提高处理速度。我还可以在这里做任何其他明显的事情来加快速度吗?

Error generating chart: No features contain non-null values of "system:time_start".

错误解析:

这里的错误出现的的主要原因是因为进行镶嵌后的影像会丢失掉原有的影像 "system:time_start"属性信息,进而造成了无法使用图表函数来展示影像中每一幅影像的结果,因此我们使用指定时间范围内的时序影像图表的时候我们不能进行镶嵌或者融合,我们首先看一下这里的函数:

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 ImageCollection with data to be included in the chart.

regions (

猜你喜欢

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