R/ISOProcessParameter.R

#' ISOProcessParameter
#'
#' @docType class
#' @importFrom R6 R6Class
#' @export
#' @keywords ISO process parameter
#' @return Object of \code{\link{R6Class}} for modelling an ISO process parameter
#' @format \code{\link{R6Class}} object.
#'   
#' @references 
#'   - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/mrl/2.0/mrl/#element_LE_ProcessParameter}
#' 
#' @author Emmanuel Blondel <emmanuel.blondel1@@gmail.com>
#'
ISOProcessParameter <- R6Class("ISOProcessParameter",
  inherit = ISOAbstractParameter,
  private = list(
    xmlElement = "LE_ProcessParameter",
    xmlNamespacePrefix = list(
      "19115-3" = "MRL"
    )
  ),
  public = list(
    
    #'@description Initializes object
    #'@param xml object of class \link{XMLInternalNode-class}
    initialize = function(xml = NULL){
      super$initialize(xml = xml)
    }
  )                        
)
eblondel/geometa documentation built on Oct. 10, 2024, 4:46 p.m.