The OWL API is a Java API and reference implementation for creating, manipulating and serializing OWL ontologies.
-1
votes
1answer
23 views
Iterate Sql.result set
I need to create OWL class from the first table name if cardinality 1:1 and OWL class from the second table name. If cardinality 1:* and one of tables describes object properties, create OWL object ...
1
vote
0answers
37 views
Querying anonymous classes in OWL API with Manchester Syntax
I'm using OWL API for reasoning over ontology created in Protege. I'm dealing with OWL API Example DL query: ...
0
votes
0answers
18 views
Fact++ JNI java.lang.UnsatisfiedLinkError: FaCTPlusPlus.initMethodsFieldsIDs()V exception
I wanted to use Fact++ via OWL API. I tried to use libFaCTPlusPlusJNI.so. But it gives me the following exception.
Exception in thread "main" ...
0
votes
2answers
25 views
Convert OWL axiom to Manchester syntax
Is there a way to Convert an OWL axiom to Manchester Syntax? I know that the OWL-API will allow you to parse a sentence in Manchester Syntax into OWL functional syntax, but I need to do exactly the ...
0
votes
1answer
51 views
OWL Class Expression for Data Property
In my ontology, I have an individual that has this data property
hasName "somaName"^^string,
however, when i'm building a class expression and sending to the reasoner for get the instances, I'm ...
0
votes
1answer
63 views
Using OWL API to query BBC Wildlife Ontology
Is it possible to use the OWL API to query this ontology, http://www.bbc.co.uk/ontologies/wildlife/2010-11-04.shtml, I'm getting a huge confusion about it. Its mention its in RDF, my confusion is, it ...
0
votes
1answer
56 views
Writing OWLObjectPropertyExpression on OWL Ontology using OWL API
I'm trying to write an OWLObjectPropertyExpression on OWL Ontology object. If I had an OWL Class I use something like the following:
OWLOntologyManager managerWriter = ...
0
votes
1answer
39 views
Couldn't Load OWL file using OWLAPI
I’m trying to load .owl file using owlapi thorough net beans to insert individual and its data properties using the code listed in owlapi documentation but it couldn't load the file, but when I ...
0
votes
1answer
60 views
OWL-API getting an ontology from the OWLOntologyManager
Is there a "simple" way to get a certain ontology from the OWLOntologyManager? I loaded a ontology and the depencies with the manager and i can access a HasSet with OWLOntologyManager.getOntologies() ...
0
votes
1answer
125 views
How to add an individual to a class using OWL API?
I wand to add an individual to a class, and I referenced the doc in OWL API official site.
Here is my code.
public void addIndividualsToClass(String className, String indName) throws ...
0
votes
1answer
62 views
Handling data value restrictions in dl query
I am trying to run a DL Query using the OWL API, using the DL Query ...
1
vote
1answer
79 views
OWL API build failed with ANT
I download OWL API 3.2.4 from http://owlapi.sourceforge.net/download.html
and build it with ANT.
There are some errors show on the terminal:
$ ant
Buildfile: /home/yichu/owlapi-3.2.4/build.xml
...
2
votes
1answer
163 views
How to define a owl:imports with OWL API v3?
I am using OWL API 3.
I created a new ontology, but I do not understand how to associate a owl:imports with the ontology.
I used IRImappers but they did not work.
Thank you for the help.