ee.Date.update
Create a new Date by setting one or more of the units of the given Date to a new value. If a timeZone is given the new value(s) is interpreted in that zone.
Usage | Returns |
---|
Date.update(year, month, day, hour, minute, second, timeZone) | Date |
Argument | Type | Details |
---|
this: date | Date | |
year | Integer, default: null | |
month | Integer, default: null | |
day | Integer, default: null | |
hour | Integer, default: null | |
minute | Integer, default: null | |
second | Number, default: null | |
timeZone | String, default: null | The time zone (e.g., 'America/Los_Angeles'); defaults to UTC. |
Examples
var date = ee.Date('2021-4-30T07:15:31.24');
print('Updated year and minute components of the input date',
date.update({
year: 2010,
minute: 59
})
);
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
date = ee.Date('2021-4-30T07:15:31.24')
display(
'Updated year and minute components of the input date:',
date.update(year=2010, minute=59)
)
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."],[[["The `Date.update()` function modifies specific components (year, month, day, hour, minute, second) of an existing Earth Engine `Date` object."],["The function accepts optional arguments for each date/time component, using the provided values to update the original date."],["If a `timeZone` is specified, the new date/time components are interpreted within that time zone, otherwise defaulting to UTC."],["`Date.update()` returns a new `Date` object with the modifications, leaving the original date unchanged."]]],[]]