4

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?

Ben Companjen
  • 1,417
  • 10
  • 24
user1285191
  • 49
  • 1
  • 2

3 Answers3

4

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).

Antoine Zimmermann
  • 5,314
  • 18
  • 36
1

owl is also RDF , and you can use jena to load it into TDB

Wang Ruiqi
  • 804
  • 6
  • 19
1

You can try OWLIM and Stardog. Both are triple store solutions for OWL ontologies.

zhlsk
  • 25
  • 4