ISOStandardOrderProcess {geometa}R Documentation

ISOStandardOrderProcess

Description

ISOStandardOrderProcess

ISOStandardOrderProcess

Format

R6Class object.

Value

Object of R6Class for modelling an ISO StandardOrderProcess

Super classes

geometa::geometaLogger -> geometa::ISOAbstractObject -> ISOStandardOrderProcess

Public fields

fees

fees [0..1]: character

plannedAvailableDateTime

plannedAvailableDateTime [0..1]: 'POSIXct/POSIXlt'

orderingInstructions

orderingInstructions [0..1]: character

turnaround

turnaround [0..1]: character

Methods

Public methods

Inherited methods

Method new()

Initializes object

Usage
ISOStandardOrderProcess$new(xml = NULL)
Arguments
xml

object of class XMLInternalNode-class


Method setFees()

Set fees

Usage
ISOStandardOrderProcess$setFees(fees, locales = NULL)
Arguments
fees

fees

locales

list of localized texts. Default is NULL


Method setPlannedAvailableDateTime()

Set planned available date time

Usage
ISOStandardOrderProcess$setPlannedAvailableDateTime(dateTime)
Arguments
dateTime

object of class POSIXct


Method setOrderingInstructions()

Set ordering instructions

Usage
ISOStandardOrderProcess$setOrderingInstructions(instructions, locales = NULL)
Arguments
instructions

instructions

locales

list of localized texts. Default is NULL


Method setTurnaround()

Set turnaround

Usage
ISOStandardOrderProcess$setTurnaround(turnaround, locales = NULL)
Arguments
turnaround

turnaround

locales

list of localized texts. Default is NULL


Method clone()

The objects of this class are cloneable with this method.

Usage
ISOStandardOrderProcess$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 <- ISOStandardOrderProcess$new()
  md$setFees("fees")
  md$setPlannedAvailableDateTime(ISOdate(2017,7,5,12,0,0))
  md$setOrderingInstructions("instructions")
  md$setTurnaround("turnaround")
  xml <- md$encode()


[Package geometa version 0.8-0 Index]