R/ISOAbstractFeatureType.R

#' ISOAbstractFeatureType
#'
#' @docType class
#' @importFrom R6 R6Class
#' @export
#' @keywords ISO feature type
#' @return Object of \code{\link{R6Class}} for modelling a ISO abstract feature type
#' @format \code{\link{R6Class}} object.
#'   
#' @references 
#'   - ISO 19115-3 \url{https://schemas.isotc211.org/19110/-/fcc/2.2/fcc/#element_Abstract_FeatureType}
#' 
#' @author Emmanuel Blondel <emmanuel.blondel1@@gmail.com>
#'
ISOAbstractFeatureType <- R6Class("ISOAbstractFeatureType",
   inherit = ISOAbstractObject,
   private = list(
     xmlElement = "Abstract_FeatureType",
     xmlNamespacePrefix = list(
       "19115-3" = "FCC"
     )
   ),
   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.