2019-10-24 22:08:05 +02:00
|
|
|
source("packrat/init.R")
|
|
|
|
|
|
|
|
library("tidyverse")
|
2020-04-02 22:28:19 +02:00
|
|
|
library(readr)
|
2019-10-24 22:08:05 +02:00
|
|
|
|
|
|
|
input <- read.csv(snakemake@input[[1]])
|
|
|
|
sensor_output <- snakemake@output[[1]]
|
|
|
|
timezone_periods <- snakemake@params[["timezone_periods"]]
|
|
|
|
fixed_timezone <- snakemake@params[["fixed_timezone"]]
|
|
|
|
|
2019-10-31 15:05:40 +01:00
|
|
|
split_local_date_time <- function(data){
|
|
|
|
return(data %>%
|
|
|
|
separate(local_date_time, c("local_date","local_time"), "\\s", remove = FALSE) %>%
|
|
|
|
separate(local_time, c("local_hour", "local_minute"), ":", remove = FALSE, extra = "drop") %>%
|
|
|
|
mutate(local_hour = as.numeric(local_hour),
|
|
|
|
local_minute = as.numeric(local_minute),
|
|
|
|
local_day_segment = case_when(local_hour %in% 0:5 ~ "night",
|
|
|
|
local_hour %in% 6:11 ~ "morning",
|
|
|
|
local_hour %in% 12:17 ~ "afternoon",
|
|
|
|
local_hour %in% 18:23 ~ "evening")))
|
|
|
|
}
|
2019-10-24 22:08:05 +02:00
|
|
|
if(!is.null(timezone_periods)){
|
2020-04-02 22:28:19 +02:00
|
|
|
timezones <- read_csv(timezone_periods)
|
2019-10-24 22:08:05 +02:00
|
|
|
tz_starts <- timezones$start
|
|
|
|
output <- input %>%
|
|
|
|
mutate(timezone = findInterval(timestamp / 1000, tz_starts), # Set an interval ID based on timezones' start column
|
|
|
|
timezone = ifelse(timezone == 0, 1, timezone), # Correct the first timezone ID
|
|
|
|
timezone = recode(timezone, !!! timezones$timezone), # Swap IDs for text labels
|
|
|
|
timezone = as.character(timezone)) %>%
|
|
|
|
rowwise() %>%
|
|
|
|
mutate(utc_date_time = as.POSIXct(timestamp/1000, origin="1970-01-01", tz="UTC"),
|
2019-11-06 23:12:06 +01:00
|
|
|
local_date_time = format(utc_date_time, tz = timezone, usetz = T))
|
2019-10-31 15:05:40 +01:00
|
|
|
output <- split_local_date_time(output)
|
2019-10-24 22:08:05 +02:00
|
|
|
write.csv(output, sensor_output)
|
|
|
|
} else if(!is.null(fixed_timezone)){
|
|
|
|
output <- input %>%
|
|
|
|
mutate(utc_date_time = as.POSIXct(timestamp/1000, origin="1970-01-01", tz="UTC"),
|
2019-10-31 15:05:40 +01:00
|
|
|
local_date_time = format(utc_date_time, tz = fixed_timezone, usetz = F))
|
|
|
|
output <- split_local_date_time(output)
|
2020-04-02 22:28:19 +02:00
|
|
|
write_csv(output, sensor_output)
|
2019-10-24 22:08:05 +02:00
|
|
|
}
|