Skip to content

Instantly share code, notes, and snippets.

@jdbcode
Created March 18, 2021 19:41
Show Gist options
  • Save jdbcode/ba26a3352c31a9633e019c56982eee11 to your computer and use it in GitHub Desktop.
Save jdbcode/ba26a3352c31a9633e019c56982eee11 to your computer and use it in GitHub Desktop.
[Medium] Code example 02 for the Medium blog on Earth Engine charting guide update
var collection = ee.ImageCollection('MODIS/006/MOD13A2');
var band = 'NDVI';
var where = ee.Geometry.Point([-93.51, 35.76]);
print(ui.Chart.image.doySeriesByYear(collection, band, where));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment