I have an RDF file, from which I would like to generate a .dot file. I'd like to create a number of rules to style the nodes and the links between these nodes (such as a specific kind of arrow to represent a marriage relationship).
Here is an example of such a conversion "rule":
<person rdf:about="http://www.something.com/EGAnne"
<j: DateBirth>1981</j: DateBirth>
<j:Profession>Comptable</j:Profession>
<j:Gender>Female</j:Gender>
</j:person>
I want to convert these lines to this result:
a [label = "Anne \ n \ nD.Birth: 1981 \ nProfession: Accounting \ n", shape = circle, fillcolor = "pink" style = "filled", fontsize = "9", fontname = " Arial, bold "];
Then, to represent the marriage between two instances of the class person, the type of arrow will be "odot" and color "goldenrod":
a -> j [arrowhead = "odot" arrowtail = "odot", dir = both, color = "goldenrod"]
How can I automatically generate the .dot file from RDF file, following rules like the one above?