| eml_view {EML} | R Documentation |
View an EML
eml_view(eml_path, ...)
eml_path |
Path to the EML one wants to view |
... |
additional arguments to |
The function needs the listviewer package which you can install from CRAN
via install.packages("listviewer")). The function uses listviewer::jsonedit
which gives a crude but useful viewing of the EML
Nothing, the EML is viewed in the Viewer.
f <- system.file("xsd/test", "eml-datasetWithUnits.xml", package = "EML")
eml_view(f)
f <- system.file("xsd/test", "eml.xml", package = "EML")
eml_view(f)
f <- system.file("xsd/test", "eml-sample.xml", package = "EML")
eml_view(f)
f <- system.file("xsd/test", "eml-datasetWithCitation.xml", package = "EML")
eml_view(f)
f <- system.file("examples", "example-eml-2.1.0.xml", package = "EML")
eml_view(f)