mcimisannual {cimis}R Documentation

Retrieve annual weather data from multiple stations over multiple years.

Description

This function will get weather data from multiple stations over multiple years and return in it a tidy data frame.

Usage

mcimisannual(stationlist, yearlist, label = "none", ...)

Arguments

stationlist A list of stations.
yearlist A list of years
label One of "none", "station", and "name" which will add a label of nothing useless, the station number, and the station name, respectively.
... Additional parameters to cimisannual, most likely, period and units.

Details

Keepfile = FALSE is highly not recommended, especially for hourly measurements, as a new connection is opened for each station-year combination.

Value

A dataframe

Author(s)

Greg Hirson <ghirson@ucdavis.edu>

See Also

cimisannual

Examples

w <- mcimisannual(station = c("006", "077"), year = 2000:2002,
         label = "name")

head(w)
tail(w)

[Package cimis version 0.1-3 Index]