Announcement: All noncommercial projects registered to use Earth Engine beforeApril 15, 2025 mustverify noncommercial eligibility to maintain access. If you have not verified by September 26, 2025, your access may be on hold.

ee.Date.fromYMD

  • Theee.Date.fromYMD method returns a Date object given the year, month, and day.

  • This method takes integer values foryear,month, andday as required arguments.

  • An optionaltimeZone argument can be provided as a String, defaulting to UTC if not specified.

Returns a Date given year, month, day.

UsageReturns
ee.Date.fromYMD(year, month, day,timeZone)Date
ArgumentTypeDetails
yearIntegerThe year, 2013, for example.
monthIntegerThe month, 3, for example.
dayIntegerThe day, 15, for example.
timeZoneString, default: nullThe time zone (e.g., 'America/Los_Angeles'); defaults to UTC.

Examples

Code Editor (JavaScript)

print('Date with default UTC',ee.Date.fromYMD(2021,4,30));print('Date with time zone specified',ee.Date.fromYMD(2021,4,30,'America/Los_Angeles'));

Python setup

See the Python Environment page for information on the Python API and usinggeemap for interactive development.

importeeimportgeemap.coreasgeemap

Colab (Python)

display('Date with default UTC:',ee.Date.fromYMD(2021,4,30))display('Date with time zone specified:',ee.Date.fromYMD(2021,4,30,'America/Los_Angeles'))

Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2024-07-13 UTC.