#' dateIndexToInteger #' #' Transform a (potential) date index into an integer (relative to data) #' #' @param index Date (or integer) index #' @param data Object of class \code{Data} #' #' @export dateIndexToInteger = function(index, data) { #works on integers too: trust input if (is.numeric(index)) index = as.integer(index) if (is.integer(index)) return (index) if (inherits(index, "Date") || is.character(index)) { tryCatch(indexAsDate <- as.Date(index), error=function(e) stop("Unrecognized index format")) #TODO: tz arg to difftime ? integerIndex <- round( as.numeric( difftime(indexAsDate, as.Date(data$getTime(1)[1])) ) ) + 1 if (integerIndex >= 1 && integerIndex <= data$getSize()) return (integerIndex) stop("Date outside data range") } stop("Unrecognized index format") } #' integerIndexToDate #' #' Transform an integer index to date index (relative to data) #' #' @param index Date (or integer) index #' @param data Object of class \code{Data} #' #' @export integerIndexToDate = function(index, data) { #works on dates too: trust input if (is.character(index)) index = as.Date(index) if (is(index,"Date")) return (index) index = index[1] if (is.numeric(index)) index = as.integer(index) if (!is.integer(index)) stop("'index' should be a date or integer") as.Date( data$getTime(index)[1] ) } #' getSimilarDaysIndices #' #' Find similar days indices in the past. #' #' @param index Day index (numeric or date) #' @param data Reference dataset, object output of \code{getData} #' @param limit Maximum number of indices to return #' @param same_season Should the indices correspond to day in same season? #' @param days_in Optional set to intersect with results (NULL to discard) #' #' @export getSimilarDaysIndices = function(index, data, limit, same_season, days_in=NULL) { index = dateIndexToInteger(index, data) # Look for similar days (optionally in same season) i = index - 1 days = c() dt_ref = as.POSIXlt(data$getTime(index)[1]) #first date-time of current day day_ref = dt_ref$wday #1=monday, ..., 6=saturday, 0=sunday month_ref = as.POSIXlt(data$getTime(index)[1])$mon+1 #month in 1...12 while (i >= 1 && length(days) < limit) { dt = as.POSIXlt(data$getTime(i)[1]) if ((is.null(days_in) || i %in% days_in) && .isSameDay(dt$wday, day_ref)) { if (!same_season || .isSameSeason(dt$mon+1, month_ref)) days = c(days, i) } i = i - 1 } return ( days ) } # isSameSeason # # Check if two months fall in the same "season" (defined by estimated pollution rate) # # @param month month index to test # @param month_ref month to compare to # .isSameSeason = function(month, month_ref) { if (month_ref %in% c(11,12,1,2)) #~= mid-polluted return (month %in% c(11,12,1,2)) if (month_ref %in% c(3,4,9,10)) #~= high-polluted return (month %in% c(3,4,9,10)) return (month %in% c(5,6,7,8)) #~= non polluted } # isSameDay # # Monday=Tuesday=Wednesday=Thursday ; Friday, Saturday, Sunday: specials # # @param day day index to test # @param day_ref day index to compare to # .isSameDay = function(day, day_ref) { if (day_ref == 0) return (day==0) if (day_ref <= 4) return (day <= 4) return (day == day_ref) } #' getNoNA2 #' #' Get indices in data of no-NA series followed by no-NA, within [first,last] range. #' #' @param data Object of class Data #' @param first First index (included) #' @param last Last index (included) #' #' @export getNoNA2 = function(data, first, last) { (first:last)[ sapply(first:last, function(i) !any( is.na(data$getCenteredSerie(i)) | is.na(data$getCenteredSerie(i+1)) ) ) ] }