This page (revision-24) was last changed on 10-Feb-2017 10:50 by Albrecht Striffler

This page was created on 25-Oct-2013 10:38 by Jochen Reutelshöfer

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
24 10-Feb-2017 10:50 2 KB Albrecht Striffler to previous
23 10-Feb-2017 10:49 2 KB Albrecht Striffler to previous | to last
22 21-May-2014 16:03 2 KB Joba Baumeister to previous | to last
21 21-May-2014 16:00 2 KB Joba Baumeister to previous | to last

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 1 changed one line
!!! Creating an Ontology
[{TableOfContents }]
At line 3 removed one line
An ontology is created in a similar way as a d3web knowledge base using the ''knowledgebase'' markup.
At line 5 changed 2 lines
{{{
%%knowledgebase
!!! Definition
At line 6 added 5 lines
An ontology is created in a similar way as a d3web knowledge base using the ''ontology'' markup.
{{{
%%Ontology
@uses: myPackageName
At line 11 changed one line
A more detailed description of this markup can be found on the page [Doc KnowledgeFormalization].
For the name {{myPackageName}} please use the name of the [package|Doc Package] that you used for the ontology definitions.
At line 16 added one line
At line 18 changed 4 lines
Ontology entities newly created within the wiki are created under the so-called local namespace, that is the URL referring to the wiki installation URL.
The abbreviation of the local namespace always is ''lns'', i.e. the abbreviated identifier of the local concept Person is ''lns:Person''.
When using ontology entities from the local namespace the namespace prefix can entirely be omitted.
The following markups can be used to create ontology entities (under local namespace if the namespace prefix is omitted):
Ontology entities newly created within the wiki are created in the ontology repository under the so-called local namespace, that is the URL referring to the wiki installation URL.
On the wiki pages, the local namespace (''lns'') is ommitted.
At line 23 removed 5 lines
* [Class| Doc Class]
* [Individual| Doc Individual]
* [ObjectProperty| Doc ObjectProperty]
* [Relation| Doc Relation]
* [Turtle| Doc Turtle]
At line 26 added 4 lines
!!! Example
The following example defines the package name {{myPackageName}} and creates a new ontology using this package.
At line 30 changed one line
%%class Person
%%Ontology
@uses: myPackageName
%
At line 32 changed one line
%%Individual Ms. MoneyPenny
%%Package myPackageName
At line 34 changed 2 lines
%%relation "Ms. MoneyPenny" rdf:type Person
}}}
%%Turtle
:System rdf:type owl:Class .
At line 37 changed one line
%%knowledgebase
:KnowWE rdf:type :System ;
rdfs:label "KnowWE Wiki" .
%
}}}
At line 45 added 10 lines
On the same page, the [Turtle|Doc Turtle] markup is used to define an owl:Class {{System}} (in the local namespace) and an instance of {{System}} with the name {{KnowWE}}. Additionally, the label "KnowWE Wiki" is defined.
!!!Importing existing ontologies into a KnowWE ontology
By attaching an ontology-file to this page (containing the ontology in any standard ontology format) an ontology can be imported into the KnowWE ontology repository as follows:
{{{
%%Ontology
@import: movie-ontology.owl
At line 56 added one line
}}}
At line 41 removed one line
%%class Person
At line 43 changed one line
%%Individual Ms. MoneyPenny
__Note:__ For this example a file named ''movie-ontology.owl'' needs to be attached to ''this'' page!
At line 45 removed one line
%%relation "Ms. MoneyPenny" rdf:type Person
At line 62 added one line
!!! See Also
At line 64 added one line
The following markups can be used to create ontology entities (under local namespace if the namespace prefix is omitted):
At line 66 added 6 lines
* [Turtle| Doc Turtle]
* [Class| Doc Class]
* [Individual| Doc Individual]
* [ObjectProperty| Doc ObjectProperty]
* [Relation| Doc Relation]
At line 51 removed one line