How to create an ontology from raw data (CSV)?

前端 未结 1 1911
南笙
南笙 2020-12-17 03:40

I am modelling university data using an OWL ontology with relevant classes, object properties, etc. I have the university data lying in a simple text file (say CSV). I want

相关标签:
1条回答
  • 2020-12-17 04:11

    If I understood your question, you have an ontology that represents a university model and you want to create owl instances using the data set which is in the form of CSV. Please correct me if you need something else.

    The answer to your first question is Yes.

    There are multiple ways to solve this problem.

    1. CSV data can be converted to RDF using available libraries with the help of Jena. here is the link link ; And here is the more detailed answer : link

    2. This can also be done using XSLT, write an xsl to convert the data from csv to owl individuals. And append those owl individuals to ontology using OWL API.

    3. If you are using Protege to build the ontologies, Protege provides a plugin to import CSV data. Link

    4. There are few other ways also.

    All the above 3 approaches are used by many people and there is no one particular standard for solving this problem. You can choose an approach as per your requirement.

    0 讨论(0)
提交回复
热议问题