ISOContact
ISOContact
ISOContact class
R6Class
object.
Object of R6Class
for modelling an ISO Contact
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()
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
Emmanuel Blondel emmanuel.blondel1@gmail.com
geometa::geometaLogger
-> geometa::ISOAbstractObject
-> ISOContact
phone
: phone
address
: address
onlineResource
: online resource
hoursOfService
: hours of service
contactInstructions
: contact instructions
contactType
: contact type
new()
Initializes object
ISOContact$new(xml = NULL)
xml
: object of class XMLInternalNode-class
setPhone()
Set phone (with ISO 19139)
ISOContact$setPhone(phone)
phone
: object of class ISOTelephone
addPhone()
Adds phone (with ISO 19115-3)
ISOContact$addPhone(phone)
phone
: object tof class ISOTelephone
TRUE
if added, FALSE
otherwise
delPhone()
Deletes phone (with ISO 19115-3)
ISOContact$delPhone(phone)
phone
: object tof class ISOTelephone
TRUE
if deleted, FALSE
otherwise
setAddress()
Set address (with ISO 19139)
ISOContact$setAddress(address)
address
: object of class ISOAddress
addAddress()
Adds address (with ISO 19115-3)
ISOContact$addAddress(address)
address
: object of class ISOAddress
TRUE
if added, FALSE
otherwise
delAddress()
Deletes address (with ISO 19115-3)
ISOContact$delAddress(address)
address
: object of class ISOAddress
TRUE
if deleted, FALSE
otherwise
setOnlineResource()
Set online resource (with ISO 19139)
ISOContact$setOnlineResource(onlineResource)
onlineResource
: online resource, object of class ISOOnlineResource
addOnlineResource()
Adds online resource (with ISO 19115-3)
ISOContact$addOnlineResource(onlineResource)
onlineResource
: online resource, object of class ISOOnlineResource
TRUE
if added, FALSE
otherwise
delOnlineResource()
Deletes online resource (with ISO 19115-3)
ISOContact$delOnlineResource(onlineResource)
onlineResource
: online resource, object of class ISOOnlineResource
TRUE
if deleted, FALSE
otherwise
addHoursOfService()
Adds hours of service (with ISO 19115-3)
ISOContact$addHoursOfService(hoursOfService)
hoursOfService
: object of class character
TRUE
if added, FALSE
otherwise
delHoursOfService()
Deletes hours of service (with ISO 19115-3)
ISOContact$delHoursOfService(hoursOfService)
hoursOfService
: object of class character
TRUE
if deleted, FALSE
otherwise
setContactInstructions()
Set contact instructions
ISOContact$setContactInstructions(contactInstructions, locales = NULL)
contactInstructions
: contact instructions
locales
: list of localized editions. Default is NULL
setContactType()
Set contact type
ISOContact$setContactType(contactType, locales = NULL)
contactType
: contact type
locales
: list of localized editions. Default is NULL
clone()
The objects of this class are cloneable with this method.
ISOContact$clone(deep = FALSE)
deep
: Whether to make a deep clone.