| ISOProcessStep | R Documentation |
ISOProcessStep
ISOProcessStep
R6Class object.
Object of R6Class for modelling an ISO ProcessStep
geometa::geometaLogger -> geometa::ISOAbstractObject -> ISOProcessStep
descriptiondescription: character
rationalerationale [0..1]: character
dateTimedateTime [0..1]: POSIXct/POSIXt
processorprocessor [0..*]: ISOResponsibleParty
sourcesource [0..*]: ISOSource
geometa::geometaLogger$ERROR()geometa::geometaLogger$INFO()geometa::geometaLogger$WARN()geometa::ISOAbstractObject$addFieldAttrs()geometa::ISOAbstractObject$addListElement()geometa::ISOAbstractObject$checkMetadataStandardCompliance()geometa::ISOAbstractObject$contains()geometa::ISOAbstractObject$createLocalisedProperty()geometa::ISOAbstractObject$decode()geometa::ISOAbstractObject$delListElement()geometa::ISOAbstractObject$encode()geometa::ISOAbstractObject$getClass()geometa::ISOAbstractObject$getClassName()geometa::ISOAbstractObject$getNamespaceDefinition()geometa::ISOAbstractObject$isDocument()geometa::ISOAbstractObject$isFieldInheritedFrom()geometa::ISOAbstractObject$print()geometa::ISOAbstractObject$save()geometa::ISOAbstractObject$setAttr()geometa::ISOAbstractObject$setCodeList()geometa::ISOAbstractObject$setCodeListValue()geometa::ISOAbstractObject$setCodeSpace()geometa::ISOAbstractObject$setHref()geometa::ISOAbstractObject$setId()geometa::ISOAbstractObject$setIsNull()geometa::ISOAbstractObject$setValue()geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()geometa::ISOAbstractObject$validate()geometa::ISOAbstractObject$wrapBaseElement()new()Initializes object
ISOProcessStep$new(xml = NULL)
xmlobject of class XMLInternalNode-class
setDescription()Set description
ISOProcessStep$setDescription(description, locales = NULL)
descriptiondescription
localeslist of localized texts. Default is NULL
setRationale()Set rationale
ISOProcessStep$setRationale(rationale, locales = NULL)
rationalerationale
localeslist of localized texts. Default is NULL
setDateTime()Set date time
ISOProcessStep$setDateTime(dateTime)
dateTimeobject of class POSIXct
addProcessor()Adds processor
ISOProcessStep$addProcessor(processor)
processorobject of class ISOResponsibleParty
TRUE if added, FALSE otherwise
delProcessor()Deletes processor
ISOProcessStep$delProcessor(processor)
processorobject of class ISOResponsibleParty
TRUE if deleted, FALSE otherwise
addSource()Adds source
ISOProcessStep$addSource(source)
sourceobject of class ISOSource
TRUE if added, FALSE otherwise
delSource()Deletes source
ISOProcessStep$delSource(source)
sourceobject of class ISOSource
TRUE if deleted, FALSE otherwise
clone()The objects of this class are cloneable with this method.
ISOProcessStep$clone(deep = FALSE)
deepWhether to make a deep clone.
Emmanuel Blondel <emmanuel.blondel1@gmail.com>
- ISO 19139 https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_LI_ProcessStep
- ISO 19115-3 https://schemas.isotc211.org/19115/-3/mrl/2.0/mrl/#element_LI_ProcessStep
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()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.