ISOContact
ISOContact
R6Class
object.
Object of R6Class
for modelling an ISO Contact
- ISO 19139 https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_CI_Contact
- ISO 19115-3 https://schemas.isotc211.org/19115/-3/cit/2.0/cit/#element_CI_Contact
geometa::geometaLogger
-> geometa::ISOAbstractObject
-> ISOContact
phone
phone
address
address
onlineResource
online resource
hoursOfService
hours of service
contactInstructions
contact instructions
contactType
contact type
Inherited methods
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
ISOContact$new(xml = NULL)
xml
object of class XMLInternalNode-class
setOnlineResource()
Set online resource (with ISO 19139)
onlineResource
online resource, object of class ISOOnlineResource
addOnlineResource()
Adds online resource (with ISO 19115-3)
onlineResource
online resource, object of class ISOOnlineResource
delOnlineResource()
Deletes online resource (with ISO 19115-3)
onlineResource
online resource, object of class ISOOnlineResource
addHoursOfService()
Adds hours of service (with ISO 19115-3)
hoursOfService
object of class character
delHoursOfService()
Deletes hours of service (with ISO 19115-3)
hoursOfService
object of class character
md <- ISOContact$new()
phone <- ISOTelephone$new()
phone$setVoice("myphonenumber")
phone$setFacsimile("myfacsimile")
md$setPhone(phone)
address <- ISOAddress$new()
address$setDeliveryPoint("theaddress")
address$setCity("thecity")
address$setPostalCode("111")
address$setCountry("France")
address$setEmail("someone@theorg.org")
md$setAddress(address)
res <- ISOOnlineResource$new()
res$setLinkage("http://www.somewhereovertheweb.org")
res$setName("somename")
md$setOnlineResource(res)
xml <- md$encode()
#> [geometa][INFO] Object 'ISOContact' is VALID according to ISO 19139 XML schemas!