planner {rwunderground}R Documentation

Weather summary based on historical information between the specified dates

Description

Weather summary based on historical information between the specified dates

Usage

planner(location, use_metric = FALSE, start_date = "0501",
  end_date = "0531", key = get_api_key(), raw = FALSE, message = TRUE)

Arguments

location

location set by set_location

use_metric

Metric or imperial units

start_date

Start date as MMDD

end_date

End date as MMDD

key

weather underground API key

raw

if TRUE return raw httr object

message

if TRUE print out requested URL

Value

tbl_df

Examples

## Not run: 
planner(set_location(territory = "Hawaii", city = "Honolulu"),
        start_date = "0101", end_date = "0131")
planner(set_location(territory = "Washington", city = "Seattle"),
        start_date = "01201", end_date = "1231")
planner(set_location(territory = "Louisiana", city = "New Orleans"),
        start_date = "0501", end_date = "0531")

## End(Not run)

[Package rwunderground version 0.1.8 Index]