ee.Date.fromYMD
Returns a Date given year, month, day.
Usage | Returns | ee.Date.fromYMD(year, month, day, timeZone) | Date |
Argument | Type | Details | year | Integer | The year, 2013, for example. |
month | Integer | The month, 3, for example. |
day | Integer | The day, 15, for example. |
timeZone | String, default: null | The 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 using
geemap
for interactive development.
import ee
import geemap.core as geemap
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 the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-07-13 UTC.
[null,null,["Last updated 2024-07-13 UTC."],[[["`ee.Date.fromYMD` creates a Date object from year, month, and day inputs."],["The function accepts optional `timeZone` argument to specify the time zone, defaulting to UTC if not provided."],["You can use this function in both JavaScript and Python environments within Google Earth Engine."]]],[]]