Converting SQUIDs back to timestamps and dates/times
unsquiding.Rd
Converting SQUIDs back to timestamps and dates/times
Examples
exampleSQUID <-
squids::squids();
### Timestamp (second since UNIX Epoch,
### 1970-01-01, 00:00:00 UTC)
squids::squids_to_timestamp(
exampleSQUID
);
#> [1] 1749068339
squids::squids_to_datetime(
exampleSQUID
);
#> [1] "2025-06-04 20:18:58 UTC"
### In Central European Time
squids::squids_to_datetime(
exampleSQUID,
tz = "CET"
);
#> [1] "2025-06-04 22:18:58 CEST"