#' ISOIndividual
#'
#' @docType class
#' @importFrom R6 R6Class
#' @export
#' @keywords ISO individual
#' @return Object of \code{\link{R6Class}} for modelling an ISO individual
#' @format \code{\link{R6Class}} object.
#'
#' @references
#' ISO 19115-1:2014 Geographic information — Metadata Part 1: Fundamentals
#'
#' @author Emmanuel Blondel <emmanuel.blondel1@@gmail.com>
#'
ISOIndividual <- R6Class("ISOIndividual",
inherit = ISOAbstractParty,
private = list(
xmlElement = "CI_Individual",
xmlNamespacePrefix = list(
"19115-3" = "CIT"
)
),
public = list(
#'@field positionName positionName
positionName = NULL,
#'@description Initializes object
#'@param xml object of class \link{XMLInternalNode-class}
initialize = function(xml = NULL){
super$initialize(xml = xml)
},
#'@description Set position name
#'@param positionName position name
#'@param locales list of localized texts. Default is \code{NULL}
setPositionName = function(positionName, locales = NULL){
self$positionName = positionName
if(!is.null(locales)){
self$positionName <- self$createLocalisedProperty(positionName, locales)
}
}
)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.