Parse weather column to (single) data frame. (DEPRECATED)

flatten_weather(x)

Arguments

x

weather column (NOT name)

Value

data frame

Examples

# NOT RUN {
   result <- get_forecast("Kassel", units = "metric")$list
   weather <- flatten_weather(result$weather)
   weather$description %>% print()
# }