[TASK] Add a ton of event classes, fix up abox with simulation.

This commit is contained in:
JPT
2016-10-09 14:10:23 +02:00
parent 038a6a85bc
commit bdf7191c18
6 changed files with 225 additions and 10 deletions
+29
View File
@@ -30,6 +30,35 @@
<simontology:isCarModel rdf:resource="http://example.org/carSim/objects/CarModel#0"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="http://example.org/carSim/objects/Car#4">
<rdf:type rdf:resource="http://example.org/carSim/carSimulationOntology#Car"/>
<simontology:isCarModel rdf:resource="http://example.org/carSim/objects/CarModel#2"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="http://example.org/carSim/objects/Car#5">
<rdf:type rdf:resource="http://example.org/carSim/carSimulationOntology#Car"/>
<simontology:isCarModel rdf:resource="http://example.org/carSim/objects/CarModel#2"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="http://example.org/carSim/objects/Car#6">
<rdf:type rdf:resource="http://example.org/carSim/carSimulationOntology#Car"/>
<simontology:isCarModel rdf:resource="http://example.org/carSim/objects/CarModel#0"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="http://example.org/carSim/objects/Car#7">
<rdf:type rdf:resource="http://example.org/carSim/carSimulationOntology#Car"/>
<simontology:isCarModel rdf:resource="http://example.org/carSim/objects/CarModel#1"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="http://example.org/carSim/objects/Car#8">
<rdf:type rdf:resource="http://example.org/carSim/carSimulationOntology#Car"/>
<simontology:isCarModel rdf:resource="http://example.org/carSim/objects/CarModel#1"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="http://example.org/carSim/objects/Car#9">
<rdf:type rdf:resource="http://example.org/carSim/carSimulationOntology#Car"/>
<simontology:isCarModel rdf:resource="http://example.org/carSim/objects/CarModel#0"/>
</owl:NamedIndividual>
<!-- Car Model data -->
+78 -2
View File
@@ -2,6 +2,7 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
<!-- Classes -->
<rdf:Description rdf:about="http://example.org/carSim/carSimulationOntology#Car">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
</rdf:Description>
@@ -23,7 +24,7 @@
<rdfs:subClassOf rdf:resource="http://example.org/carSim/carSimulationOntology#Event"/>
</rdf:Description>
<rdf:Description rdf:about="http://example.org/carSim/carSimulationOntology#CarAirbagEvent">
<rdf:Description rdf:about="http://example.org/carSim/carSimulationOntology#CarAirbagTriggeredEvent">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdfs:subClassOf rdf:resource="http://example.org/carSim/carSimulationOntology#CarEvent"/>
</rdf:Description>
@@ -33,6 +34,12 @@
<rdfs:subClassOf rdf:resource="http://example.org/carSim/carSimulationOntology#CarEvent"/>
</rdf:Description>
<rdf:Description rdf:about="http://example.org/carSim/carSimulationOntology#CarCheckEngineEvent">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdfs:subClassOf rdf:resource="http://example.org/carSim/carSimulationOntology#CarEvent"/>
</rdf:Description>
<rdf:Description rdf:about="http://example.org/carSim/carSimulationOntology#CarUserEvent">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdfs:subClassOf rdf:resource="http://example.org/carSim/carSimulationOntology#CarEvent"/>
@@ -49,6 +56,76 @@
</rdf:Description>
<rdf:Description rdf:about="http://example.org/carSim/carSimulationOntology#CarHandbrakeEngageEvent">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdfs:subClassOf rdf:resource="http://example.org/carSim/carSimulationOntology#CarEvent"/>
</rdf:Description>
<rdf:Description rdf:about="http://example.org/carSim/carSimulationOntology#CarHandbrakeReleaseEvent">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdfs:subClassOf rdf:resource="http://example.org/carSim/carSimulationOntology#CarEvent"/>
</rdf:Description>
<rdf:Description rdf:about="http://example.org/carSim/carSimulationOntology#CarLockEvent">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdfs:subClassOf rdf:resource="http://example.org/carSim/carSimulationOntology#CarEvent"/>
</rdf:Description>
<rdf:Description rdf:about="http://example.org/carSim/carSimulationOntology#CarUnlockEvent">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdfs:subClassOf rdf:resource="http://example.org/carSim/carSimulationOntology#CarEvent"/>
</rdf:Description>
<rdf:Description rdf:about="http://example.org/carSim/carSimulationOntology#CarStrongAcceleratingEvent">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdfs:subClassOf rdf:resource="http://example.org/carSim/carSimulationOntology#CarEvent"/>
</rdf:Description>
<rdf:Description rdf:about="http://example.org/carSim/carSimulationOntology#CarStrongBrakingEvent">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdfs:subClassOf rdf:resource="http://example.org/carSim/carSimulationOntology#CarEvent"/>
</rdf:Description>
<rdf:Description rdf:about="http://example.org/carSim/carSimulationOntology#CarStandingEvent">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdfs:subClassOf rdf:resource="http://example.org/carSim/carSimulationOntology#CarEvent"/>
</rdf:Description>
<rdf:Description rdf:about="http://example.org/carSim/carSimulationOntology#CarMovingEvent">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdfs:subClassOf rdf:resource="http://example.org/carSim/carSimulationOntology#CarEvent"/>
</rdf:Description>
<rdf:Description rdf:about="http://example.org/carSim/carSimulationOntology#CarWearEvent">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdfs:subClassOf rdf:resource="http://example.org/carSim/carSimulationOntology#CarEvent"/>
</rdf:Description>
<rdf:Description rdf:about="http://example.org/carSim/carSimulationOntology#CarEngineWearEvent">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdfs:subClassOf rdf:resource="http://example.org/carSim/carSimulationOntology#CarWearEvent"/>
</rdf:Description>
<rdf:Description rdf:about="http://example.org/carSim/carSimulationOntology#CarBrakeWearEvent">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdfs:subClassOf rdf:resource="http://example.org/carSim/carSimulationOntology#CarWearEvent"/>
</rdf:Description>
<rdf:Description rdf:about="http://example.org/carSim/carSimulationOntology#CarHandbrakeWearEvent">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdfs:subClassOf rdf:resource="http://example.org/carSim/carSimulationOntology#CarWearEvent"/>
</rdf:Description>
<rdf:Description rdf:about="http://example.org/carSim/carSimulationOntology#CarTireWearEvent">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdfs:subClassOf rdf:resource="http://example.org/carSim/carSimulationOntology#CarWearEvent"/>
</rdf:Description>
<!-- Attributes -->
<rdf:Description rdf:about="http://example.org/carSim/carSimulationOntology#isOfCarModel">
<rdfs:domain rdf:resource="http://example.org/carSim/carSimulationOntology#Car"/>
<rdfs:range rdf:resource="http://example.org/carSim/carSimulationOntology#CarModel"/>
@@ -85,5 +162,4 @@
<rdfs:range rdf:resource="http://example.org/carSim/carSimulationOntology#Event"/>
</rdf:Description>
</rdf:RDF>