Learn R Programming

geometa (version 0.6-2)

ISOStandardOrderProcess: ISOStandardOrderProcess

Description

ISOStandardOrderProcess

Usage

ISOStandardOrderProcess

Arguments

Value

Object of R6Class for modelling an ISO StandardOrderProcess

Format

R6Class object.

Fields

fees

[character]

plannedAvailableDateTime

[POSIXt] the datetime

orderingInstructions

[character] ordering instructions

turnaround

[character] turnaround

Methods

new(xml)

This method is used to instantiate an ISOStandardOrderProcess

setFees(fees, locales)

Sets fees, object of class character. Locale names can be specified as list with the locales argument.

setPlannedAvailableDateTime(dateTime)

Sets planned available datetime, object of class c('POSIXct','POSIXlt')

setOrderingInstructions(instructions, locales)

Sets ordering instructions, object of class character. Locale names can be specified as list with the locales argument.

setTurnaround(turnaround, locales)

Sets turnaround, object of class character. Locale names can be specified as list with the locales argument.

References

ISO 19115:2003 - Geographic information -- Metadata

Examples

Run this code
# NOT RUN {
  md <- ISOStandardOrderProcess$new()
  md$setFees("fees")
  md$setPlannedAvailableDateTime(ISOdate(2017,7,5,12,0,0))
  md$setOrderingInstructions("instructions")
  md$setTurnaround("turnaround")
  xml <- md$encode()

# }

Run the code above in your browser using DataLab