Description Usage Arguments Details Value Examples
View source: R/satellite_functions.R
Reads in a list of Vaisala Time Series Files and returns a list of data frames named after each model version and formatted to be integrated with a Megaframe.
1 | read_vaisala(vaisala_files)
|
vaisala_files |
A list of strings that provide a path to each Vaisala Timeseries CSV. |
Megaframe format variables: datetime, year, month, ghi, dni, dhi, temp, ws, model
A list of tidy data frames (technically tibbles), named after the Vaisala model version
1 2 3 4 5 6 7 8 | ## Not run:
vaisala_list <- read_vaisala(c('path/to/vaisala123.csv', 'path/to/vaisala213.csv'))
head(vaisala_list$vaisala2.1.3)
vaisala_list <- read_vaisala('vaisala123.csv')
head(vaisala_list$vaisala1.2.3)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.