Change the time zone, and restore it afterwards.
Usage
with_timezone(tz, code)
local_timezone(tz, .local_envir = parent.frame())
Details
with_timezone()
runs the code with the specified time zone and
resets it afterwards.
local_timezone()
changes the time zone for the caller
execution environment.
See also
withr
for examples
Examples
Sys.time()
#> [1] "2024-10-28 14:34:37 UTC"
with_timezone("Europe/Paris", print(Sys.time()))
#> [1] "2024-10-28 15:34:37 CET"
with_timezone("America/Los_Angeles", print(Sys.time()))
#> [1] "2024-10-28 07:34:37 PDT"
fun1 <- function() {
local_timezone("CET")
print(Sys.time())
}
fun2 <- function() {
local_timezone("America/Los_Angeles")
print(Sys.time())
}
Sys.time()
#> [1] "2024-10-28 14:34:37 UTC"
fun1()
#> [1] "2024-10-28 15:34:37 CET"
fun2()
#> [1] "2024-10-28 07:34:37 PDT"
Sys.time()
#> [1] "2024-10-28 14:34:37 UTC"