Reputation: 49
I have created an ontology in Protege. Now for my application to have better scalability I like to convert the OWL file to triple store and query the store.
How to convert owl file to triple store?
Upvotes: 4
Views: 3566
Reputation: 25
You can try OWLIM and Stardog. Both are triple store solutions for OWL ontologies.
Upvotes: 1
Reputation: 5485
Strictly speaking, OWL is not RDF. The specification of OWL defines ontologies as a radically different structure than sets of triples. However, all OWL ontologies can be written as RDF graphs, so you can directly store them in a triple store, without any preprocessing (note that any conformant OWL tool MUST be able to serialise ontologies in RDF/XML).
Upvotes: 4