Hi, I have a specific use case to solve. Transform a CSV file to a Turtle file (.ttl).
Here is an example:
CSV file has:
12345, Fred, 2020-01-01, "Foo, Bar"
I would like to then transform this row to:
<http://example.com/12345> rdf:type owl:NamedIndividual ;
a:name "Fred" ;
a:date "2020-01-01";
a:ref "http://example.com/Foo",
"http://example.com/Bar" .
And then repeat for all the lines in the CSV.
Any help appreciated