# ------ 1. MEASUREMENTTRIAL TERM INFORMATION ------
#' Return the information of the term associated with the GBIF MeasurementTrial class
#' @return A \code{DwCTerm} object containing the term information
#' @seealso \code{\link[DwCTerm]{DwCTerm}}
getGBIFMeasurementTrialTerm <- function() {
outValue <- NULL
if("http://purl.org/germplasm/germplasmTerm#/MeasurementTrial" %in% names(GBIFCoreClassList)) {
outValue <- GBIFCoreClassList[["http://purl.org/germplasm/germplasmTerm#/MeasurementTrial"]]$termInfo
} else if("http://purl.org/germplasm/germplasmTerm#/MeasurementTrial" %in% names(GBIFExtClassList)) {
outValue <- GBIFExtClassList[["http://purl.org/germplasm/germplasmTerm#/MeasurementTrial"]]$termInfo
}
outValue
}
# ------ 2. MEASUREMENTTRIAL MEMBER INFORMATION ------
#' Return a list of properties associated with the GBIF MeasurementTrial class
#' @return A \code{list} of \code{DwCTerm} objects, one for each member of the the
#' GBIF MeasurementTrial class
#' @seealso \code{\link[DwCTerm]{DwCTerm}}
getGBIFMeasurementTrialMembers <- function() {
outValue <- NULL
if("http://purl.org/germplasm/germplasmTerm#/MeasurementTrial" %in% names(GBIFCoreClassList)) {
outValue <- GBIFCoreClassList[["http://purl.org/germplasm/germplasmTerm#/MeasurementTrial"]]$compositeTerms
} else if("http://purl.org/germplasm/germplasmTerm#/MeasurementTrial" %in% names(GBIFExtClassList)) {
outValue <- GBIFExtClassList[["http://purl.org/germplasm/germplasmTerm#/MeasurementTrial"]]$compositeTerms
}
outValue
}
# ------ 3. GBIF MEASUREMENTTRIAL CLASS ------
#' R6 class representing a data structure for a GBIF MeasurementTrial augmented data table (based on the Dawrin core)
#'
#' The \code{GBIFMeasurementTrial} class allows for the specification of data tables that comply with the MeasurementTrial
#' \url{http://purl.org/germplasm/germplasmTerm#/MeasurementTrial}{class specification} of GBIF.
GBIFMeasurementTrial <- R6Class("GBIFMeasurementTrial",
inherit = DwCGeneric,
# ====== 3.1. Define private members of the GBIF MeasurementTrial class ======
private = list(
),
public = list(
# ====== 3.2. Define an initialization function for the GBIF MeasurementTrial class ======
#' @description
#' Create a new GBIFMeasurementTrial object
#' @param objectData A \code{data.frame} containing the data to import into the object
#' @param idColumnInfo Either a \code{character} scalar containing the column name of
#' \code{objectData} or an \code{integer} scalar giving the index of the column of
#' \code{objectData} that corresponds to the ID variable. Alternatively, this parameter
#' may be the qualified name of the Darwin core term for which the appropriately mapped column
#' will be used as the ID variable (the possible Darwin core term names can be found by running
#' \code{names(getGBIFMeasurementTrialMembers())})
#' @param nameAutoMap A \code{logical} scalar that if \code{TRUE} maps the columns of \code{objectData}
#' to their respective Darwin core terms based on the column names
#' @param defDateFormat A \code{character} scalar providing the default format for strings denoting dates in the
#' data table. See the \url{https://dwc.tdwg.org/text/#1-introduction}{Darwin Core text guide} for expected values
#' for this string.
#' @param ... A named set of paramaeters corresponding to Darwin core terms associated with the GBIFMeasurementTrial
#' class type. Each is either a \code{character} scalar containing the column name of \code{objectData}
#' or an \code{integer} scalar giving the index of the column of \code{objectData} that corresponds to the
#' term. Mappable terms can be found using: \code{sapply(X = getGBIFMeasurementTrialMembers(), FUN = function(curTerm) { curTerm$getTermName() })}
#' @return A new \code{GBIFMeasurementTrial} object
#' @seealso \code{\link[DwCTerm]{DwCTerm}} \code{\link[getGBIFMeasurementTrialMembers]{getGBIFMeasurementTrialMembers}}
initialize = function(objectData, idColumnInfo, nameAutoMap = FALSE, defDateFormat = "YYYY-MM-DD", ...) {
super$initialize(
classTermInfo = getGBIFMeasurementTrialTerm(),
associatedTerms = getGBIFMeasurementTrialMembers(),
objectData = objectData,
idColumnInfo = idColumnInfo,
nameAutoMap = nameAutoMap,
defDateFormat = defDateFormat,
...
)
invisible(self)
}
)
)
# ------ 4. INITIALISATION FUNCTION ------
#' Initialize a new GBIF MeasurementTrial object
#' @param objectData A \code{data.frame} containing the data to import into the object
#' @param idColumnInfo Either a \code{character} scalar containing the column name of
#' \code{objectData} or an \code{integer} scalar giving the index of the column of
#' \code{objectData} that corresponds to the ID variable. Alternatively, this parameter
#' may be the qualified name of the Darwin core term for which the appropriately mapped column
#' will be used as the ID variable (the possible Darwin core term names can be found by running
#' \code{names(getGBIFMeasurementTrialMembers())})
#' @param nameAutoMap A \code{logical} scalar that if \code{TRUE} maps the columns of \code{objectData}
#' to their respective Darwin core terms based on the column names
#' @param defDateFormat A \code{character} scalar providing the default format for strings denoting dates in the
#' data table. See the \url{https://dwc.tdwg.org/text/#1-introduction}{Darwin Core text guide} for expected values
#' for this string.
#' @param ... A named set of paramaeters corresponding to Darwin core terms associated with the GBIFMeasurementTrial
#' class type. Each is either a \code{character} scalar containing the column name of \code{objectData}
#' or an \code{integer} scalar giving the index of the column of \code{objectData} that corresponds to the
#' term. Mappable terms can be found using: \code{sapply(X = getGBIFMeasurementTrialMembers(), FUN = function(curTerm) { curTerm$getTermName() })}
#' @return A new \code{GBIFMeasurementTrial} object
#' @seealso \code{\link[DwCTerm]{DwCTerm}} \code{\link[getGBIFMeasurementTrialMembers]{getGBIFMeasurementTrialMembers}}
initializeGBIFMeasurementTrial <- function(objectData, idColumnInfo, nameAutoMap = FALSE, defDateFormat = "YYYY-MM-DD", ...) {
GBIFMeasurementTrial$new(objectData = objectData, idColumnInfo = idColumnInfo, nameAutoMap = nameAutoMap, defDateFormat = defDateFormat, ...)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.