Open samzipper opened 1 year ago
Based on the logic:
utc_time_offset <- raw_data |> dplyr::select(contains("Date")) |> colnames() |> str_sub(start = -5, end = -4) |> as.numeric()
It seems like it is just grabbing the offset relative to GMT, but not the sign. In the example, it is a -5 hr offset, but what would happen if there is a positive offset?
Based on the logic:
It seems like it is just grabbing the offset relative to GMT, but not the sign. In the example, it is a -5 hr offset, but what would happen if there is a positive offset?