| ISODigitalTransferOptions | R Documentation |
ISODigitalTransferOptions
ISODigitalTransferOptions
R6Class object.
Object of R6Class for modelling an ISO DigitalTransferOptions
geometa::geometaLogger -> geometa::ISOAbstractObject -> ISODigitalTransferOptions
unitsOfDistributionunitsOfDistribution [0..1]: character
transferSizetransferSize [0..1]: integer
onLineonLine [0..*]: ISOOnlineResource
offLineoffLine [0..1]: MD_Medium
distributionFormatdistributionFormat [0..*]: ISOFormat (=> ISO 19115-3)
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
ISODigitalTransferOptions$new(xml = NULL)
xmlobject of class XMLInternalNode-class
setUnitsOfDistribution()Set units of distribution
ISODigitalTransferOptions$setUnitsOfDistribution(unit)
unitunit
setTransferSize()Set transfer size
ISODigitalTransferOptions$setTransferSize(transferSize)
transferSizetransfer size
addOnlineResource()Adds online resource
ISODigitalTransferOptions$addOnlineResource(onlineResource)
onlineResourceobject of class ISOOnlineResource
TRUE if added, FALSE otherwise
setOnlineResource()Sets online resource
ISODigitalTransferOptions$setOnlineResource(onlineResource)
onlineResourceobject of class ISOOnlineResource
TRUE if added, FALSE otherwise
delOnlineResource()Deletes online resource
ISODigitalTransferOptions$delOnlineResource(onlineResource)
onlineResourceobject of class ISOOnlineResource
TRUE if deleted, FALSE otherwise
addOfflineResource()Adds offline resource
ISODigitalTransferOptions$addOfflineResource(offlineResource)
offlineResourceobject of class ISOMedium
TRUE if added, FALSE otherwise
setOfflineResource()Sets offline resource
ISODigitalTransferOptions$setOfflineResource(offlineResource)
offlineResourceobject of class ISOMedium
TRUE if added, FALSE otherwise
delOfflineResource()Deletes offline resource
ISODigitalTransferOptions$delOfflineResource(offlineResource)
offlineResourceobject of class ISOMedium
TRUE if deleted, FALSE otherwise
addDistributionFormat()Adds distribution format
ISODigitalTransferOptions$addDistributionFormat(distributionFormat)
distributionFormatobject of class ISOFormat
TRUE if added, FALSE otherwise
delDistributionFormat()Deletes distribution format
ISODigitalTransferOptions$delDistributionFormat(distributionFormat)
distributionFormatobject of class ISOFormat
TRUE if deleted, FALSE otherwise
clone()The objects of this class are cloneable with this method.
ISODigitalTransferOptions$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_MD_DigitalTransferOptions
- ISO 19115-3 https://schemas.isotc211.org/19115/-3/mrd/1.0/mrd/#element_MD_DigitalTransferOptions
md <- ISODigitalTransferOptions$new()
or <- ISOOnlineResource$new()
or$setLinkage("http://somelink")
or$setName("name")
or$setDescription("description")
or$setProtocol("WWW:LINK-1.0-http--link")
md$addOnlineResource(or)
xml <- md$encode()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.