Created
March 18, 2021 19:41
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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