ISOGeometricObjects

ISOGeometricObjects

Format

R6Class object.

Value

Object of R6Class for modelling an ISO GeometricObjects

References

ISO 19115:2003 - Geographic information -- Metadata

Author

Emmanuel Blondel <emmanuel.blondel1@gmail.com>

Super classes

geometa::geometaLogger -> geometa::ISOAbstractObject -> ISOGeometricObjects

Public fields

geometricObjectType

geometricObjectType

geometricObjectCount

geometricObjectCount

Methods

Inherited methods


Method new()

Initializes object

Usage

ISOGeometricObjects$new(xml = NULL)

Arguments

xml

object of class XMLInternalNode-class


Method setGeometricObjectType()

Set geometric object type

Usage

ISOGeometricObjects$setGeometricObjectType(geometricObjectType)

Arguments

geometricObjectType

object of class ISOGeometricObjectType or any character among values returned by ISOGeometricObjectType$values()


Method setGeometricObjectCount()

Set geometric object count

Usage

ISOGeometricObjects$setGeometricObjectCount(geometricObjectCount)

Arguments

geometricObjectCount

object of class integer


Method clone()

The objects of this class are cloneable with this method.

Usage

ISOGeometricObjects$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Examples

  md <- ISOGeometricObjects$new()
  md$setGeometricObjectType("surface")
  md$setGeometricObjectCount(5L)
  xml <- md$encode()
#> [geometa][INFO] Object 'ISOGeometricObjects' is VALID according to ISO 19139 XML schemas!