Learn R Programming

geometa (version 0.6-2)

ISORelativeInternalPositionalAccuracy: ISORelativeInternalPositionalAccuracy

Description

ISORelativeInternalPositionalAccuracy

Usage

ISORelativeInternalPositionalAccuracy

Arguments

Value

Object of R6Class for modelling an ISORelativeInternalPositionalAccuracy

Format

R6Class object.

Inherited methods

from ISODataQualityAbstractElement

Methods

new(xml)

This method is used to instantiate an ISORelativeInternalPositionalAccuracy

References

ISO 19115:2003 - Geographic information -- Metadata

Examples

Run this code
# NOT RUN {
  #encoding
  dq <- ISORelativeInternalPositionalAccuracy$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