[TASK] Update ontology

This commit is contained in:
Jan Philipp Timme 2016-08-12 16:01:31 +02:00
parent db9ddeca80
commit 2e14b614f9
1 changed files with 38 additions and 38 deletions

View File

@ -1,5 +1,5 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<rdf:RDF xmlns="http://simontology.org/#" <rdf:RDF xmlns="http://simontology.org#"
xml:base="http://simontology.org" xml:base="http://simontology.org"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:owl="http://www.w3.org/2002/07/owl#"
@ -7,36 +7,14 @@
xmlns:myexample="http://myexample.org/#" xmlns:myexample="http://myexample.org/#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:simontology="http://simontology.org/#" xmlns:simontology="http://simontology.org/#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:simobjects="http://simobjects.org/">
<owl:Ontology rdf:about="http://simontology.org"> <owl:Ontology rdf:about="http://simontology.org">
<rdfs:comment xml:lang="de">Beispielhafte Ontologie für die Autosimulation</rdfs:comment> <rdfs:comment xml:lang="de">Beispielhafte Ontologie für die Autosimulation</rdfs:comment>
</owl:Ontology> </owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://simontology.org/#maximumMotorRPM -->
<owl:AnnotationProperty rdf:about="http://simontology.org/#maximumMotorRPM"/>
<!-- http://simontology.org/#maximumTirePressure -->
<owl:AnnotationProperty rdf:about="http://simontology.org/#maximumTirePressure"/>
<!-- <!--
/////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////
// //
@ -126,6 +104,25 @@
<!-- http://simontology.org#hasName -->
<owl:DatatypeProperty rdf:about="http://simontology.org#hasName">
<rdfs:domain rdf:resource="http://simontology.org/Car"/>
<rdfs:domain rdf:resource="http://simontology.org/Driver"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:DatatypeProperty>
<!-- http://simontology.org#hasPhoneNumber -->
<owl:DatatypeProperty rdf:about="http://simontology.org#hasPhoneNumber">
<rdfs:domain rdf:resource="http://simontology.org/Driver"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:DatatypeProperty>
<!-- http://simontology.org/#handbrakeEngaged --> <!-- http://simontology.org/#handbrakeEngaged -->
<owl:DatatypeProperty rdf:about="http://simontology.org/#handbrakeEngaged"> <owl:DatatypeProperty rdf:about="http://simontology.org/#handbrakeEngaged">
@ -319,25 +316,28 @@
<!-- http://simobjects.org/Max --> <!-- http://simobjects.org/Car#0 -->
<owl:NamedIndividual rdf:about="http://simobjects.org/Max"> <owl:NamedIndividual rdf:about="http://simobjects.org/Car#0">
<rdf:type rdf:resource="http://simontology.org/Driver"/> <rdf:type rdf:resource="http://simontology.org/Car"/>
<simontology:hasDriverLicense rdf:datatype="http://www.w3.org/2001/XMLSchema#string">B</simontology:hasDriverLicense> <simontology:isDrivenBy rdf:resource="http://simobjects.org/Driver#0"/>
<simobjects:maximumMotorRPM rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3500</simobjects:maximumMotorRPM>
<simobjects:maximumTirePressure rdf:datatype="http://www.w3.org/2001/XMLSchema#double">3.5</simobjects:maximumTirePressure>
<simontology:minimumMotorRPM rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">800</simontology:minimumMotorRPM>
<simontology:minimumTirePressure rdf:datatype="http://www.w3.org/2001/XMLSchema#double">2.9</simontology:minimumTirePressure>
<simontology:requiresDriverLicense rdf:datatype="http://www.w3.org/2001/XMLSchema#string">B</simontology:requiresDriverLicense>
</owl:NamedIndividual> </owl:NamedIndividual>
<!-- http://simobjects.org/Volvo --> <!-- http://simobjects.org/Driver#0 -->
<owl:NamedIndividual rdf:about="http://simobjects.org/Volvo"> <owl:NamedIndividual rdf:about="http://simobjects.org/Driver#0">
<rdf:type rdf:resource="http://simontology.org/Car"/> <rdf:type rdf:resource="http://simontology.org/Driver"/>
<simontology:isDrivenBy rdf:resource="http://simobjects.org/Max"/> <simontology:drives rdf:resource="http://simobjects.org/Car#0"/>
<simontology:minimumMotorRPM rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">800</simontology:minimumMotorRPM> <hasName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Max</hasName>
<simontology:minimumTirePressure rdf:datatype="http://www.w3.org/2001/XMLSchema#double">2.9</simontology:minimumTirePressure> <hasPhoneNumber rdf:datatype="http://www.w3.org/2001/XMLSchema#string">+49 12345</hasPhoneNumber>
<simontology:requiresDriverLicense rdf:datatype="http://www.w3.org/2001/XMLSchema#string">B</simontology:requiresDriverLicense> <simontology:hasDriverLicense rdf:datatype="http://www.w3.org/2001/XMLSchema#string">B</simontology:hasDriverLicense>
<simontology:maximumMotorRPM rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">4500</simontology:maximumMotorRPM>
<simontology:maximumTirePressure rdf:datatype="http://www.w3.org/2001/XMLSchema#double">3.5</simontology:maximumTirePressure>
</owl:NamedIndividual> </owl:NamedIndividual>
</rdf:RDF> </rdf:RDF>