Luminescence (version 0.8.6)

RLum.Data.Image-class: Class "RLum.Data.Image"

Description

Class for representing luminescence image data (TL/OSL/RF). Such data are for example produced by the function read_SPE2R

Usage

# S4 method for RLum.Data.Image
show(object)

# S4 method for RLum.Data.Image set_RLum(class, originator, .uid, .pid, recordType = "Image", curveType = NA_character_, data = raster::brick(raster::raster(matrix())), info = list())

# S4 method for RLum.Data.Image get_RLum(object, info.object)

# S4 method for RLum.Data.Image names_RLum(object)

Arguments

object

get_RLum, names_RLum (required): an object of class '>RLum.Data.Image

class

set_RLum; character: name of the RLum class to create

originator

set_RLum; character (automatic): contains the name of the calling function (the function that produces this object); can be set manually.

.uid

set_RLum; character (automatic): sets an unique ID for this object using the internal C++ function create_UID.

.pid

set_RLum; character (with default): option to provide a parent id for nesting at will.

recordType

set_RLum; character: record type (e.g. "OSL")

curveType

set_RLum; character: curve type (e.g. "predefined" or "measured")

data

set_RLum; matrix: raw curve data. If data is of type RLum.Data.Image this can be used to re-construct the object.

info

set_RLum; list: info elements

info.object

get_RLum; character: name of the info object to returned

Value

set_RLum

Returns an object from class RLum.Data.Image

get_RLum

  1. Returns the data object (raster::brick)

  2. only the info object if info.object was set.

names_RLum

Returns the names of the info elements

Methods (by generic)

  • show: Show structure of RLum.Data.Image object

  • set_RLum: Construction method for RLum.Data.Image object. The slot info is optional and predefined as empty list by default..

  • get_RLum: Accessor method for RLum.Data.Image object. The argument info.object is optional to directly access the info elements. If no info element name is provided, the raw image data (RasterBrick) will be returned.

  • names_RLum: Returns the names info elements coming along with this curve object

Slots

recordType

Object of class character containing the type of the curve (e.g. "OSL image", "TL image")

curveType

Object of class character containing curve type, allowed values are measured or predefined

data

Object of class raster::brick containing images (raster data).

info

Object of class list containing further meta information objects

Objects from the Class

Objects can be created by calls of the form set_RLum("RLum.Data.Image", ...).

Class version

0.4.0

How to cite

Kreutzer, S. (2018). RLum.Data.Image-class(): Class 'RLum.Data.Image'. In: Kreutzer, S., Burow, C., Dietze, M., Fuchs, M.C., Schmidt, C., Fischer, M., Friedrich, J. (2018). Luminescence: Comprehensive Luminescence Dating Data Analysis. R package version 0.8.6. https://CRAN.R-project.org/package=Luminescence

See Also

'>RLum, '>RLum.Data, plot_RLum, read_SPE2R

Examples

Run this code
# NOT RUN {
showClass("RLum.Data.Image")

##create empty RLum.Data.Image object
set_RLum(class = "RLum.Data.Image")

# }

Run the code above in your browser using DataCamp Workspace