ISOProcessStep
Object of R6Class
for modelling an ISO ProcessStep
R6Class
object.
description
[character
] process step description
rationale
[character
] rationale
dateTime
[POSIXt
] dateTime of the process ste
processor
[ISOResponsibleParty
] party responsible of the process step
new(xml)
This method is used to instantiate an ISOProcessStep
setDescription(description, locales)
Sets the process step description. Locale names can be specified as list
with the locales
argument.
setRationale(rationale, locales)
Sets the process step rationale. Locale names can be specified as list
with the locales
argument.
setDateTime(dateTime)
Sets the date time
Adds a processor (object of class ISOResponsibleParty
)
Deletes a processor
Adds a source (object of class ISOSource
)
Deletes a source
ISO 19115:2003 - Geographic information -- Metadata
# NOT RUN {
ps <- ISOProcessStep$new()
ps$setDescription("description")
ps$setRationale("rationale")
ps$setDateTime( ISOdate(2015, 1, 1, 23, 59, 59))
rp <- ISOResponsibleParty$new()
rp$setIndividualName("someone") #and more responsible party properties..
ps$addProcessor(rp)
xml <- ps$encode()
# }
Run the code above in your browser using DataLab