View source: R/read-oopi-file.r
read_oo_pidata | R Documentation |
Reads and parses the header of a raw data file as output by the server running on a Raspberry Pi board to extract the whole header remark field. The time field is retrieved and decoded. The company formerly named Ocean Optics is now called Ocean Insight.
read_oo_pidata(
file,
date = NULL,
geocode = NULL,
label = NULL,
tz = NULL,
locale = readr::default_locale(),
npixels = Inf,
spectrometer.sn = "FLMS00673"
)
file |
character string |
date |
a |
geocode |
A data frame with columns |
label |
character string, but if |
tz |
character Time zone is not saved to the file. |
locale |
The locale controls defaults that vary from place to place. The
default locale is US-centric (like R), but you can use
|
npixels |
integer Number of pixels in spectral data. |
spectrometer.sn |
character The serial number of the spectrometer needs to be supplied by the user as it is not included in the file header. |
A raw_spct object.
The header in these files has very little information.
The file contains a time in milliseconds but as the Raspberry Pi board
contains no real-time clock, it seems to default to number of milliseconds
since the Pi was switched on. The user may wish to supply the date-time as
an argument, but if no argument is passed to date
this
attribute is set to the file modification date obtained with file.mtime()
.
This date-time gives an upper limit to the real time of measurement as in
some operating systems it is reset when the file is copied or even without
any good apparent reason. The user may need to supply the number of pixels
in the array although the default of npixels = Inf
usually works
and triggers no warnings.
https://www.oceanoptics.com/ https://www.raspberrypi.org/
file.name <-
system.file("extdata", "spectrum.pi",
package = "photobiologyInOut", mustWork = TRUE)
oopi.spct <- read_oo_pidata(file = file.name)
oopi.spct
getWhenMeasured(oopi.spct)
getWhatMeasured(oopi.spct)
cat(comment(oopi.spct))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.