View source: R/read-macam-dta.r
read_macam_dta | R Documentation |
Reads and parses the header of a processed data file as output by the PC program to extract the time and date fields and a user label if present, and then imports wavelengths and spectral energy irradiance values.
read_macam_dta(
file,
date = NULL,
geocode = NULL,
label = NULL,
tz = NULL,
locale = readr::default_locale()
)
file |
character string |
date |
a |
geocode |
A data frame with columns |
label |
character string, but if |
tz |
character Time zone used for interpreting times saved in the file header. |
locale |
The locale controls defaults that vary from place to place. The
default locale is US-centric (like R), but you can use
|
A source_spct
object.
file.name <-
system.file("extdata", "spectrum.DTA",
package = "photobiologyInOut", mustWork = TRUE)
macam.spct <- read_macam_dta(file = file.name)
macam.spct
getWhenMeasured(macam.spct)
getWhatMeasured(macam.spct)
cat(comment(macam.spct))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.