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 3 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.
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.
!!! Example
The following example defines the package name {{myPackageName}} and creates a new ontology using this package.
{{{
%%Ontology
@uses: myPackageName
%
%%Package myPackageName
%%Turtle
:System rdf:type owl:Class .
:KnowWE rdf:type :System ;
rdfs:label "KnowWE Wiki" .
%
}}}
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
%
}}}
__Note:__ For this example a file named ''movie-ontology.owl'' needs to be attached to ''this'' page!
!!! See Also
At line 66 added one line
* [Turtle| Doc Turtle]
At line 27 removed one line
* [Turtle| Doc Turtle]
At line 31 removed one line