pivot_format | R Documentation |
pivot_format
pivot_format
R6Class
object.
Object of R6Class
for modelling a mapping format
id
id
pkg
pkg
reader
reader
checker
checker
constructor
constructor
new()
Initializes pivot format. Method is used to instantiate a pivot_format, given a unique id
,
the name of package used (for information only). A format is then defined by
string expressions (using sprintf
formatting) to read metadata properties
(reader
), one for checking existence of properties (checker
), and an
expression to create metadata objects (constructor
). In case the constructor
is NULL, then no conversion to this metadata format will be possible.
pivot_format$new(id, pkg, reader = NULL, checker = NULL, constructor = NULL)
id
id
pkg
pkg
reader
reader
checker
checker
constructor
constructor
clone()
The objects of this class are cloneable with this method.
pivot_format$clone(deep = FALSE)
deep
Whether to make a deep clone.
Emmanuel Blondel <emmanuel.blondel1@gmail.com>
#example on how geometa format is defined as pivot format
pivot_format$new(
id = "geometa", pkg = "geometa",
reader = "%s[[%s]]", checker = "!is.null(%s[[%s]])",
constructor = "ISOMetadata$new"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.