Read spectral irradiance file as output by Anders Lindors' model based on libRadTrans for hourly simulation, or measured data from FMI's Brewer spectrometer.
read_fmi2mspct(
file,
scale.factor = 0.001,
geocode = NULL,
what.measured = NULL,
how.measured = NULL,
date.field = 2L,
time.field = 3L,
date.format = "ymd",
time.format = "hms",
tz = NULL,
time.shift.min = 0,
locale = readr::default_locale(),
.skip = 0,
.n_max = -1
)read_fmi2mspct() returns a source_mspct object
containing source_spct objects as members, time.unit
attribute set to "second" and when.measured attribute set to
the date-time values extracted from the file body.
Either a path to a file, a connection, or literal data (either a single string or a raw vector).
numeric A multiplier to be applied to the spectral irradiance values.
A data frame with columns lon and lat used to
set attribute "where.measured".
character string, but if NULL the value of
file is used, and if NA the "what.measured" attribute is not
set.
character string, but if NULL or NA the
"how.measured" attribute is not set.
integer. Word positions in the header line.
character string. One of "ymd", "ydm", "dmy", or "mdy".
character string. One of "hms", "hm".
character Time zone used for interpreting times saved in the file header.
numeric. Time shift with respect to TZ in minutes.
The locale controls defaults that vary from place to place. The
default locale is US-centric (like R), but you can use
locale to create your own locale that controls things
like the default time zone, encoding, decimal mark, big mark, and day/month
names.
Number of lines to skip before reading data.
Maximum number of records to read.