Parse RDF Files
rdf_parse(
doc,
format = c("guess", "rdfxml", "nquads", "ntriples", "turtle", "jsonld"),
rdf = NULL,
base = getOption("rdf_base_uri", "localhost://"),
...
)
path, URL, or literal string of the rdf document to parse
rdf serialization format of the doc, one of "rdfxml", "nquads", "ntriples", "turtle" or "jsonld". If not provided, will try to guess based on file extension and fall back on rdfxml.
an existing rdf triplestore to extend with triples from the parsed file. Default will create a new rdf object.
the base URI to assume for any relative URIs (blank nodes)
additional parameters (not implemented)
an rdf object, containing the redland world and model objects
# NOT RUN { doc <- system.file("extdata", "dc.rdf", package="redland") rdf <- rdf_parse(doc) # }