Time zones

club_start_chicago <- ymd_hms("2024-03-08 13:00:00", tz = "America/Chicago")
force_tz(club_start_chicago, "Europe/Rome") # Only do this to fix mistakes
## [1] "2024-03-08 13:00:00 CET"
with_tz(club_start_chicago, "UTC")
## [1] "2024-03-08 19:00:00 UTC"
with_tz(club_start_chicago, "Europe/Rome")
## [1] "2024-03-08 20:00:00 CET"
with_tz(club_start_chicago, "Australia/Sydney")
## [1] "2024-03-09 06:00:00 AEDT"