Plot NDVI time series data on a chart¶

NDVI collection is created. From the original data (1998 to 2013) two months of summer 2000 are selected

In [ ]:
coll = inter.ImageCollection("NDVI")
coll = coll.filterOnDate(2000,6,1,2000,8,31)

Create the map

In [ ]:
map = Map(center=[48, 5],zoom=5)
map

NDVI data is plotted in a chart

In [ ]:
inter.identifyNDVI(map,coll,180)
In [ ]: