getChecksum | R Documentation |
A checksum is calculated for an object when it is uploaded to DataONE and
is submitted with the object's system metadata. The 'getChecksum'
method retrieves
the checksum from the specified coordinating node
getChecksum(x, ...) ## S4 method for signature 'CNode' getChecksum(x, pid, ...) ## S4 method for signature 'MNode' getChecksum(x, pid, checksumAlgorithm = "SHA-256")
x |
The CNode instance from which the checksum will be retrieved |
... |
(Not yet used) |
pid |
The identifier of the object |
checksumAlgorithm |
The algorithm used to calculate the checksum. Default="SHA-256" |
character the checksum value, with the checksum algorithm as the attribute "algorithm"
D1Node-class{D1Node}
class description.
## Not run: library(dataone) cn <- CNode() mn <- getMNode(cn, "urn:node:KNB") pid <- "doi:10.5063/F1QN64NZ" chksum <- getChecksum(mn, pid) ## End(Not run) ## Not run: pid <- "doi:10.5063/F1QN64NZ" cn <- CNode() pid <- "doi:10.5063/F1QN64NZ" chksum <- getChecksum(cn, pid) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.