-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Description
Hello
Thank you for a great package, you've saved me some major headaches in dealing with daylight savings time.
I've come across an instance where date_round and date_ceiling either throw an error or jump an hour when next to a daylight savings boundary, even when the timezone is correctly specified in the POSIXct object. Presumably this is due to the datetimes being coerced to naive format and dropping the timezone? Is there a way around this?
library(clock)
#> Warning: package 'clock' was built under R version 4.2.3
# Times rollback an hour when daylight savings comes off (NZ in Southern hemisphere)
x <- zoned_time_parse_abbrev(
c("2022-04-03 01:59:59 NZDT", "2022-04-03 02:59:59 NZDT", "2022-04-03 02:59:59 NZST")
, zone = "Pacific/Auckland") |>
as.POSIXct()
# This is the result I'd expect
xts::align.time(x, 60) - x
#> Time differences in secs
#> [1] 1 1 1
# But these are off by an hour
## Same results using date_ceiling
date_round(x, "minute")
#> Error in `as_zoned_time()`:
#> ! Ambiguous time due to daylight saving time at location 1.
#> ℹ Resolve ambiguous time issues by specifying the `ambiguous` argument.
#> Backtrace:
#> ▆
#> 1. ├─clock::date_round(x, "minute")
#> 2. ├─clock:::date_round.POSIXt(x, "minute")
#> 3. │ └─clock:::date_time_rounder(...)
#> 4. │ ├─base::as.POSIXct(x, zone, nonexistent = nonexistent, ambiguous = ambiguous)
#> 5. │ └─clock:::as.POSIXct.clock_naive_time(...)
#> 6. │ ├─clock::as_zoned_time(...)
#> 7. │ └─clock:::as_zoned_time.clock_naive_time(x, zone = tz, nonexistent = nonexistent, ambiguous = ambiguous)
#> 8. │ └─clock:::as_zoned_sys_time_from_naive_time_with_reference_cpp(...)
#> 9. └─clock (local) `<fn>`(1L, `<env>`)
#> 10. └─clock:::stop_clock(message, call = call, class = "clock_error_ambiguous_time")
#> 11. └─rlang::abort(message, ..., call = call, class = c(class, "clock_error"))
date_round(x, "minute", ambiguous = "earliest") - x
#> Time differences in secs
#> [1] 1 3601 1
date_round(x, "minute", ambiguous = "latest") - x
#> Time differences in secs
#> [1] 3601 3601 1
date_round(x, "minute", ambiguous = "NA") - x
#> Time differences in secs
#> [1] NA 3601 1
# Also struggles where daylight savings starts
y <- zoned_time_parse_abbrev(
c("2022-09-25 01:59:59 NZST")
, zone = "Pacific/Auckland") |>
as.POSIXct()
xts::align.time(y, 60) - y
#> Time difference of 1 secs
date_round(y, "minute")
#> Error in `as_zoned_time()`:
#> ! Nonexistent time due to daylight saving time at location 1.
#> ℹ Resolve nonexistent time issues by specifying the `nonexistent` argument.
#> Backtrace:
#> ▆
#> 1. ├─clock::date_round(y, "minute")
#> 2. ├─clock:::date_round.POSIXt(y, "minute")
#> 3. │ └─clock:::date_time_rounder(...)
#> 4. │ ├─base::as.POSIXct(x, zone, nonexistent = nonexistent, ambiguous = ambiguous)
#> 5. │ └─clock:::as.POSIXct.clock_naive_time(...)
#> 6. │ ├─clock::as_zoned_time(...)
#> 7. │ └─clock:::as_zoned_time.clock_naive_time(x, zone = tz, nonexistent = nonexistent, ambiguous = ambiguous)
#> 8. │ └─clock:::as_zoned_sys_time_from_naive_time_with_reference_cpp(...)
#> 9. └─clock (local) `<fn>`(1L, `<env>`)
#> 10. └─clock:::stop_clock(message, call = call, class = "clock_error_nonexistent_time")
#> 11. └─rlang::abort(message, ..., call = call, class = c(class, "clock_error"))
# But can overcome using the nonexistent option
date_round(y, "minute", nonexistent = "roll-forward") - y
#> Time difference of 1 secs
sessionInfo()
#> R version 4.2.2 (2022-10-31 ucrt)
#> Platform: x86_64-w64-mingw32/x64 (64-bit)
#> Running under: Windows 10 x64 (build 19045)
#>
#> Matrix products: default
#>
#> locale:
#> [1] LC_COLLATE=English_New Zealand.utf8 LC_CTYPE=English_New Zealand.utf8
#> [3] LC_MONETARY=English_New Zealand.utf8 LC_NUMERIC=C
#> [5] LC_TIME=English_New Zealand.utf8
#>
#> attached base packages:
#> [1] stats graphics grDevices utils datasets methods base
#>
#> other attached packages:
#> [1] clock_0.7.0
#>
#> loaded via a namespace (and not attached):
#> [1] lattice_0.20-45 fansi_1.0.4 zoo_1.8-11 utf8_1.2.3
#> [5] tzdb_0.4.0 digest_0.6.31 withr_2.5.0 grid_4.2.2
#> [9] lifecycle_1.0.3 reprex_2.0.2 evaluate_0.20 pillar_1.8.1
#> [13] rlang_1.1.1 cli_3.6.1 rstudioapi_0.14 fs_1.6.1
#> [17] xts_0.13.0 vctrs_0.6.3 rmarkdown_2.20 tools_4.2.2
#> [21] glue_1.6.2 xfun_0.37 yaml_2.3.7 fastmap_1.1.1
#> [25] compiler_4.2.2 htmltools_0.5.4 knitr_1.42Created on 2023-07-31 with reprex v2.0.2
Metadata
Metadata
Assignees
Labels
No labels