R/wu_all.R

Defines functions wu_all

Documented in wu_all

#' weatherr
#'
#' This function gives the current and four day weather forecast using the Weather Underground API
#' @param wu_all
#' @keywords weather, forecast
#' @export
#' @examples
#' wu_all()

# combine output from other WU functions

wu_all <- function(city='Minneapolis', state='MN'){
  wu_current(city, state)
  wu_4day(city, state)
  }
sbha/weatherr documentation built on May 7, 2019, 3:32 p.m.