ISODigitalTransferOptions | R Documentation |
ISODigitalTransferOptions
ISODigitalTransferOptions
R6Class
object.
Object of R6Class
for modelling an ISO DigitalTransferOptions
geometa::geometaLogger
-> geometa::ISOAbstractObject
-> ISODigitalTransferOptions
unitsOfDistribution
unitsOfDistribution [0..1]: character
transferSize
transferSize [0..1]: integer
onLine
onLine [0..*]: ISOOnlineResource
offLine
offLine [0..1]: MD_Medium
distributionFormat
distributionFormat [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)
xml
object of class XMLInternalNode-class
setUnitsOfDistribution()
Set units of distribution
ISODigitalTransferOptions$setUnitsOfDistribution(unit)
unit
unit
setTransferSize()
Set transfer size
ISODigitalTransferOptions$setTransferSize(transferSize)
transferSize
transfer size
addOnlineResource()
Adds online resource
ISODigitalTransferOptions$addOnlineResource(onlineResource)
onlineResource
object of class ISOOnlineResource
TRUE
if added, FALSE
otherwise
setOnlineResource()
Sets online resource
ISODigitalTransferOptions$setOnlineResource(onlineResource)
onlineResource
object of class ISOOnlineResource
TRUE
if added, FALSE
otherwise
delOnlineResource()
Deletes online resource
ISODigitalTransferOptions$delOnlineResource(onlineResource)
onlineResource
object of class ISOOnlineResource
TRUE
if deleted, FALSE
otherwise
addOfflineResource()
Adds offline resource
ISODigitalTransferOptions$addOfflineResource(offlineResource)
offlineResource
object of class ISOMedium
TRUE
if added, FALSE
otherwise
setOfflineResource()
Sets offline resource
ISODigitalTransferOptions$setOfflineResource(offlineResource)
offlineResource
object of class ISOMedium
TRUE
if added, FALSE
otherwise
delOfflineResource()
Deletes offline resource
ISODigitalTransferOptions$delOfflineResource(offlineResource)
offlineResource
object of class ISOMedium
TRUE
if deleted, FALSE
otherwise
addDistributionFormat()
Adds distribution format
ISODigitalTransferOptions$addDistributionFormat(distributionFormat)
distributionFormat
object of class ISOFormat
TRUE
if added, FALSE
otherwise
delDistributionFormat()
Deletes distribution format
ISODigitalTransferOptions$delDistributionFormat(distributionFormat)
distributionFormat
object of class ISOFormat
TRUE
if deleted, FALSE
otherwise
clone()
The objects of this class are cloneable with this method.
ISODigitalTransferOptions$clone(deep = FALSE)
deep
Whether 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.