ISOFormat {geometa}R Documentation

ISOFormat

Description

ISOFormat

ISOFormat

Format

R6Class object.

Value

Object of R6Class for modelling an ISOFormat

Super classes

geometa::geometaLogger -> geometa::ISOAbstractObject -> ISOFormat

Public fields

name

name : CharacterString

version

version : CharacterString

amendmentNumber

amendmentNumber [0..1] : CharacterString

specification

specification [0..1] : CharacterString

fileDecompressionTechnique

fileDecompressionTechnique [0..1] : CharacterString

FormatDistributor

FormatDistributor [0..*]: ISODistributor

Methods

Public methods

Inherited methods

Method new()

Initializes object

Usage
ISOFormat$new(xml = NULL)
Arguments
xml

object of class XMLInternalNode-class


Method setName()

Set name

Usage
ISOFormat$setName(name, locales = NULL)
Arguments
name

name

locales

list of localized names. Default is NULL


Method setVersion()

Set version

Usage
ISOFormat$setVersion(version)
Arguments
version

version


Method setAmendmentNumber()

Set amendment number

Usage
ISOFormat$setAmendmentNumber(amendmentNumber)
Arguments
amendmentNumber

amendment number


Method setSpecification()

Set specification

Usage
ISOFormat$setSpecification(specification, locales = NULL)
Arguments
specification

specification

locales

list of localized specifications. Default is NULL


Method setFileDecompressionTechnique()

Set file decompression technique

Usage
ISOFormat$setFileDecompressionTechnique(technique)
Arguments
technique

technique


Method addDistributor()

Adds distributor

Usage
ISOFormat$addDistributor(distributor)
Arguments
distributor

object of class ISODistributor

Returns

TRUE if added, FALSE otherwise


Method delDistributor()

Deletes distributor

Usage
ISOFormat$delDistributor(distributor)
Arguments
distributor

object of class ISODistributor

Returns

TRUE if deleted, FALSE otherwise


Method clone()

The objects of this class are cloneable with this method.

Usage
ISOFormat$clone(deep = FALSE)
Arguments
deep

Whether to make a deep clone.

Author(s)

Emmanuel Blondel <emmanuel.blondel1@gmail.com>

References

ISO 19115:2003 - Geographic information – Metadata

Examples

 md <- ISOFormat$new()
 md$setName("name")
 md$setVersion("1.0")
 md$setAmendmentNumber("2")
 md$setSpecification("specification")
 

[Package geometa version 0.8-0 Index]