ISOBrowseGraphic: ISOBrowseGraphic

ISOBrowseGraphicR Documentation

ISOBrowseGraphic

Description

ISOBrowseGraphic

ISOBrowseGraphic

Format

R6Class object.

Value

Object of R6Class for modelling an ISO BrowseGraphic

Super classes

geometa::geometaLogger -> geometa::ISOAbstractObject -> ISOBrowseGraphic

Public fields

fileName

file name

fileDescription

file description

fileType

file type

Methods

Public methods

Inherited methods

Method new()

Initializes object

Usage
ISOBrowseGraphic$new(
  xml = NULL,
  fileName = NULL,
  fileDescription = NULL,
  fileType = NULL
)
Arguments
xml

object of class XMLInternalNode-class

fileName

file name

fileDescription

file description

fileType

file type


Method setFileName()

Set file name

Usage
ISOBrowseGraphic$setFileName(fileName, locales = NULL)
Arguments
fileName

file name

locales

a list of localized names. Default is NULL


Method setFileDescription()

Set file description

Usage
ISOBrowseGraphic$setFileDescription(fileDescription, locales = NULL)
Arguments
fileDescription

file description

locales

a list of localized descriptions. Default is NULL


Method setFileType()

Set file type

Usage
ISOBrowseGraphic$setFileType(fileType, locales = NULL)
Arguments
fileType

file type

locales

a list of localized types. Default is NULL


Method clone()

The objects of this class are cloneable with this method.

Usage
ISOBrowseGraphic$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 <- ISOBrowseGraphic$new(
  fileName = "http://wwww.somefile.org/png",
  fileDescription = "Map Overview",
  fileType = "image/png"
 )
 xml <- md$encode()


geometa documentation built on Oct. 29, 2022, 1:06 a.m.