R/add_weather_descriptions.R

Defines functions add_weather_descriptions

add_weather_descriptions <- function(weather){

  weather %>%
    dplyr::left_join(weather_type_lookup, by = "weather_type") %>%
    dplyr::left_join(visibility_lookup, by = "visibility")

}
neilcharles/meteoR documentation built on May 17, 2020, 3:27 p.m.