dataone (version 2.2.2)

getFormat: Get information for a single DataONE object format

Description

Get information for a single DataONE object format

Usage

getFormat(x, ...)

# S4 method for CNode getFormat(x, formatId)

Arguments

x

A CNode object instance

...

(Not yet used)

formatId

The formatId to retrieve.

Value

A dataframe of all object formats registered in the DataONE Object Format Vocabulary.

See Also

CNode class description.

Examples

Run this code
# NOT RUN {
library(dataone)
cn <- CNode()
fmt <- getFormat(cn, "eml://ecoinformatics.org/eml-2.1.0")
cat(sprintf("format name: %s\n", fmt$name))
cat(sprintf("format type: %s\n", fmt$type))
cat(sprintf("format Id: %s\n", fmt$id))
# }

Run the code above in your browser using DataLab