mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-04 00:04:03 -04:00
25 lines
902 B
Plaintext
25 lines
902 B
Plaintext
{
|
|
"name": "set_timezone",
|
|
"type": "function",
|
|
"groups": ["Conversions", "Date and Time"],
|
|
"description": "Sets the timezone object associated with a datetime value, without changing the date or time components. This function can be used to replace the timezone for a datetime.",
|
|
"arguments": [{
|
|
"arg": "datetime",
|
|
"description": "datetime value"
|
|
},
|
|
{
|
|
"arg": "timezone",
|
|
"description": "new timezone for datetime"
|
|
}],
|
|
"examples": [
|
|
{
|
|
"expression": "set_timezone(to_datetime('2012-05-04 12:50:00+3'), timezone_from_id('UTC+10'))",
|
|
"returns": "datetime 2012-05-04 12:50:00 (UTC+10)"
|
|
},
|
|
{
|
|
"expression": "set_timezone(make_datetime(2020,1,1,10,0,0), timezone_from_id('Australia/Darwin'))",
|
|
"returns": "Datetime of 2020-01-01 10:00:00 with associated timezone 'Australia/Darwin'"
|
|
}],
|
|
"tags": ["time", "zone", "date", "datetime", "offset", "utc"]
|
|
}
|