R/getCurrentSeasonalPeakHourData.R

Defines functions getCurrentSeasonalPeakHourData

Documented in getCurrentSeasonalPeakHourData

#' Get Current Seasonal Peak Hour Data
#' 
#' May need to add \code{config = httr::config(ssl.verifypeer = FALSE)} if SSL cert cant be found.
#' 
#' @param user user account
#' @param password password
#' @param out.tz output timezone.
#' @param ... passed to httr functions.
#' @importFrom lubridate mdy_hms
#' @importFrom httr GET authenticate accept_json config
#' @importFrom RJSONIO fromJSON
#' @export
getCurrentSeasonalPeakHourData <- function(user = getOption(x = "ISO_NE_USER"), password = getOption(x = "ISO_NE_PASSWORD"), 
                                           out.tz = "America/New_York", ...){
  
  json <- get_path(path = "/seasonalpeakhourdata/current", user = user, password = password, ...)
  
  dat <- do.call(what = "rbind", 
                 lapply(json$SeasonalPeakHoursData$SeasonalPeakHourData, 
                        FUN = function(x) as.data.frame(x = x, stringsAsFactors = FALSE)))
  
  dat$BeginDate <- lubridate::ymd_hms(dat$BeginDate, tz = out.tz)
  
  return(dat)
  
}
noahbullock/rISONE documentation built on May 23, 2019, 9:29 p.m.