带有Savitzky-Golay过滤器的Google Earth Engine时间序列
该示例显示了如何为要素集合提取图像集合值,如何创建植物索引时间序列数据帧并在其上应用Savitzky-Golay过滤器的示例。
笔记
中实现了此函数的更好版本,作为ee.ImageCollection对象的扩展方法:
import ee , eemont
ee . Authenticate ()
ee . Initialize ()
f1 = ee . Feature ( ee . Geometry . Point ([ 3.984770 , 48.767221 ]). buffer ( 50 ),{ 'ID' : 'A' })
f2 = ee . Feature ( ee . Geometry . Point ([ 4.101367 , 48.748076 ]). buffer ( 50 ),{ '
1