read_PSL2R | R Documentation |
Imports PSL files produced by a SUERC portable OSL reader into R.
read_PSL2R(
file,
drop_bg = FALSE,
as_decay_curve = TRUE,
smooth = FALSE,
merge = FALSE,
verbose = TRUE,
...
)
file |
character (required):
path and file name of the PSL file. If input is a |
drop_bg |
logical (with default):
|
as_decay_curve |
logical (with default):
Portable OSL Reader curves are often given as cumulative light sum curves.
Use |
smooth |
logical (with default):
|
merge |
logical (with default):
|
verbose |
logical (with default): enable/disable output to the terminal. |
... |
currently not used. |
This function provides an import routine for the SUERC portable OSL Reader PSL format (measurement data and sequence). PSL files are just plain text and can be viewed with any text editor. Due to the formatting of PSL files this import function relies heavily on regular expression to find and extract all relevant information. See note.
Returns an S4 RLum.Analysis object containing RLum.Data.Curve objects for each curve.
0.1.1
Burow, C., Kreutzer, S., 2025. read_PSL2R(): Import PSL files to R. Function version 0.1.1. In: Kreutzer, S., Burow, C., Dietze, M., Fuchs, M.C., Schmidt, C., Fischer, M., Friedrich, J., Mercier, N., Philippe, A., Riedesel, S., Autzen, M., Mittelstrass, D., Gray, H.J., Galharret, J., Colombo, M., Steinbuch, L., Boer, A.d., 2025. Luminescence: Comprehensive Luminescence Dating Data Analysis. R package version 1.0.1. https://r-lum.github.io/Luminescence/
Because this function relies heavily on regular expressions to parse
PSL files it is currently only in beta status. If the routine fails to import
a specific PSL file please report to <christoph.burow@gmx.net>
so the
function can be updated.
Christoph Burow, University of Cologne (Germany), Sebastian Kreutzer, Institut of Geography, Heidelberg University (Germany) , RLum Developer Team
RLum.Analysis, RLum.Data.Curve, RLum.Data.Curve
# (1) Import PSL file to R
file <- system.file("extdata", "DorNie_0016.psl", package = "Luminescence")
psl <- read_PSL2R(file, drop_bg = FALSE, as_decay_curve = TRUE, smooth = TRUE, merge = FALSE)
print(str(psl, max.level = 3))
plot(psl, combine = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.