views:

96

answers:

2

The W3 has a RDF validator that plots the RDF graph. Do you know a similar utility desktop side ?

Forgot to say. I'm on a mac.

+1  A: 

For example, raptor has the rapper command line utility that can parse various RDF syntaxes and output DOT to be plotted with GraphViz.

(Disclosure: I'm a committer in the raptor project.)

laalto
+1  A: 

Like laalto said GraphViz is the typical thing to use and many RDF APIs have support built in for generating DOT to be plotted with ut

For example the API I develop (dotNetRDF) has a GraphVizWriter class that you can use to generate DOT files which you can then turn into images in your desired format with the dot.exe command line utility which is part of GraphViz

Though seeing as you're on a Mac my API is probably not much use to you personally - but regardless GraphViz is definitely the way to go.

RobV