-
Notifications
You must be signed in to change notification settings - Fork 8
/
ExampleData.XSYG.Rd
105 lines (89 loc) · 3.08 KB
/
ExampleData.XSYG.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/Luminescence-package.R
\name{ExampleData.XSYG}
\alias{ExampleData.XSYG}
\alias{OSL.SARMeasurement}
\alias{TL.Spectrum}
\title{Example data for a SAR OSL measurement and a TL spectrum using a lexsyg
reader}
\format{
\code{OSL.SARMeasurement}: SAR OSL measurement data
The data contain two elements: (a) \verb{$Sequence.Header} is a
\link{data.frame} with metadata from the measurement,(b)
\code{Sequence.Object} contains an \linkS4class{RLum.Analysis} object
for further analysis.
\code{TL.Spectrum}: TL spectrum data
\linkS4class{RLum.Data.Spectrum} object for further analysis. The
spectrum was cleaned from cosmic-rays using the function
\code{apply_CosmicRayRemoval}. Note that no quantum efficiency calibration
was performed.
}
\source{
\strong{OSL.SARMeasurement}
\tabular{ll}{
Lab: \tab Luminescence Laboratory Giessen\cr
Lab-Code: \tab no code\cr
Location: \tab not specified\cr
Material: \tab Coarse grain quartz on steel cups on lexsyg research reader\cr
Reference: \tab unpublished
}
\strong{TL.Spectrum}
\tabular{ll}{
Lab: \tab Luminescence Laboratory Giessen\cr
Lab-Code: \tab BT753\cr
Location: \tab Dolni Vestonice/Czech Republic\cr
Material: \tab Fine grain polymineral on steel cups on lexsyg research reader\cr
Reference: \tab Fuchs et al., 2013 \cr
Spectrum: \tab Integration time 19 s, channel time 20 s\cr
Heating: \tab 1 K/s, up to 500 deg. C
}
}
\description{
Example data from a SAR OSL measurement and a TL spectrum for package
Luminescence imported from a Freiberg Instruments XSYG file using the
function \link{read_XSYG2R}.
}
\section{Version}{
0.1
}
\examples{
##show data
data(ExampleData.XSYG, envir = environment())
## =========================================
##(1) OSL.SARMeasurement
OSL.SARMeasurement
##show $Sequence.Object
OSL.SARMeasurement$Sequence.Object
##grep OSL curves and plot the first curve
OSLcurve <- get_RLum(OSL.SARMeasurement$Sequence.Object,
recordType="OSL")[[1]]
plot_RLum(OSLcurve)
## =========================================
##(2) TL.Spectrum
TL.Spectrum
##plot simple spectrum (2D)
plot_RLum.Data.Spectrum(TL.Spectrum,
plot.type="contour",
xlim = c(310,750),
ylim = c(0,300),
bin.rows=10,
bin.cols = 1)
##plot 3d spectrum (uncomment for usage)
# plot_RLum.Data.Spectrum(TL.Spectrum, plot.type="persp",
# xlim = c(310,750), ylim = c(0,300), bin.rows=10,
# bin.cols = 1)
}
\references{
Unpublished data measured to serve as example data for that
package. Location origin of sample BT753 is given here:
Fuchs, M., Kreutzer, S., Rousseau, D.D., Antoine, P., Hatte, C., Lagroix,
F., Moine, O., Gauthier, C., Svoboda, J., Lisa, L., 2013. The loess sequence
of Dolni Vestonice, Czech Republic: A new OSL-based chronology of the Last
Climatic Cycle. Boreas, 42, 664--677.
}
\seealso{
\link{read_XSYG2R}, \linkS4class{RLum.Analysis}, \linkS4class{RLum.Data.Spectrum},
\link{plot_RLum}, \link{plot_RLum.Analysis}, \link{plot_RLum.Data.Spectrum}
}
\keyword{datasets}
\keyword{internal}