Reputation: 3314
My SPARQL Query returns a set of results, I want to visualize the Query results using an RDF Visualization algorithm, such that the results are related together and also I retrieve some more info about it.
Example:
if My domain is Movie industry, and I query about all movies directed by James Cameron, I get about 10 or 11 results, something like,
'The Terminator'
'Rambo: First Blood Part II'
'Aliens'
'The Abyss'
'Terminator 2: Judgment Day '
'True Lies'
'Titanic'
'Avatar'
I want to make a visualized graph between all the results, showing the main relation "directed by James cameron" and also searching for some other relation through semantic web, try something like this:
The above result came from relFinder where the Entities we compared between are the movies themselves,note that relFinder is semanticWeb-Based.
I am interested on similar algorithms to Generate Queries based on some algorithms to retrieve results to relate to the original Query to give more detailed relations
I also want to know if there's any dotNet libraries to facilitate the process?
Upvotes: 2
Views: 677
Reputation: 28655
There are a number of .Net libraries for RDF and SPARQL that will let you do the querying part but you'll need to find a visualization library that suits your needs and combine the two.
In terms of RDF/SPARQL libraries for .Net you have the choice of the following:
I'm not a visualization expert so you'd have to go research that yourself
Upvotes: 3