fromDOY#
- classmethod geetools.DateAccessor.fromDOY(doy, year)#
Create a date from a day of year and a year.
- Parameters:
- Returns:
The date as a
ee.Dateobject.- Return type:
Examples
import ee, geetools from geetools.utils import initialize_documentation initialize_documentation() d = ee.Date.geetools.fromDOY(1, 2020) d.format("YYYY-MM-DD").getInfo()
'2020-01-01'