Learn R Programming

geometa (version 0.6-2)

ISOThematicClassificationCorrectness: ISOThematicClassificationCorrectness

Description

ISOThematicClassificationCorrectness

Usage

ISOThematicClassificationCorrectness

Arguments

Value

Object of R6Class for modelling an ISOThematicClassificationCorrectness

Format

R6Class object.

Inherited methods

from ISODataQualityAbstractElement

Methods

new(xml)

This method is used to instantiate an ISOThematicClassificationCorrectness

References

ISO 19115:2003 - Geographic information -- Metadata

Examples

Run this code
# NOT RUN {
  #encoding
  dq <- ISOThematicClassificationCorrectness$new()
  dq$addNameOfMeasure("measure")
  metaId <- ISOMetaIdentifier$new(code = "measure-id")
  dq$setMeasureIdentification(metaId)
  dq$setMeasureDescription("description")
  dq$setEvaluationMethodDescription("method description")
  dq$setEvaluationMethodType("indirect")
  dq$setDateTime(ISOdate(2015,1,1,12,10,49))
  spec <- ISOCitation$new()
  spec$setTitle("specification title")
  spec$setAlternateTitle("specification alternate title")
  d <- ISODate$new()
  d$setDate(ISOdate(2015, 1, 1, 1))
  d$setDateType("publication")
  spec$addDate(d)
  dq$setEvaluationProcedure(spec)
  result <- ISOConformanceResult$new()
  result$setSpecification(spec)
  result$setExplanation("some explanation about the conformance")
  result$setPass(TRUE)
  dq$addResult(result)
  xml <- dq$encode()
  
# }

Run the code above in your browser using DataLab