R/ISOLength.R

#' ISOLength
#'
#' @docType class
#' @importFrom R6 R6Class
#' @export
#' @keywords ISO measure length
#' @return Object of \code{\link{R6Class}} for modelling an ISO Length measure
#' @format \code{\link{R6Class}} object.
#' 
#' @references
#'  ISO/TS 19103:2005 Geographic information -- Conceptual schema language
#' 
#' @author Emmanuel Blondel <emmanuel.blondel1@@gmail.com>
#'
ISOLength <- R6Class("ISOLength",
    inherit = ISOMeasure,
    private = list(
      xmlElement = "Length",
      xmlNamespacePrefix = "GCO"
    ),
    public = list(
      
      #'@description Initializes object
      #'@param xml object of class \link{XMLInternalNode-class}
      #'@param value value
      #'@param uom uom symbol of unit of measure used
      #'@param useUomURI use uom URI. Default is \code{FALSE}
      initialize = function(xml = NULL, value, uom, useUomURI = FALSE){
        super$initialize(
          xml = xml,
          value = value,
          uom = uom,
          useUomURI = useUomURI
        )
      }
    )                        
)

Try the geometa package in your browser

Any scripts or data that you put into this service are public.

geometa documentation built on Oct. 29, 2022, 1:06 a.m.