-
Notifications
You must be signed in to change notification settings - Fork 22
Fix Issue #153; add missing labels #156
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
c878b17
bfc7de6
f23e4d1
3786333
cc654f6
d0a6725
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,98 +4,108 @@ | |
<!ENTITY owl "http://www.w3.org/2002/07/owl#"> | ||
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#"> | ||
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#"> | ||
<!ENTITY xs "http://www.w3.org/2001/XMLSchema#"> | ||
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#"> | ||
]> | ||
<rdf:RDF | ||
xmlns="https://ontologies.semanticarts.com/o/gistIoT#" | ||
xmlns:gist="https://ontologies.semanticarts.com/gist/" | ||
xmlns:owl="http://www.w3.org/2002/07/owl#" | ||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | ||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" | ||
xmlns:xs="http://www.w3.org/2001/XMLSchema#"> | ||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"> | ||
|
||
<owl:Ontology rdf:about="https://ontologies.semanticarts.com/o/gistIoT"> | ||
<rdfs:comment rdf:datatype="&xs;string">gist Internet of Things. This is meant to be the minimal covering concepts for IoT</rdfs:comment> | ||
<rdfs:comment rdf:datatype="&xs;string">gistIoT</rdfs:comment> | ||
<rdfs:comment rdf:datatype="&xsd;string">gist Internet of Things. This is meant to be the minimal covering concepts for IoT</rdfs:comment> | ||
<rdfs:comment rdf:datatype="&xsd;string">gistIoT</rdfs:comment> | ||
<owl:imports rdf:resource="https://ontologies.semanticarts.com/o/gistNetworkX.x.x"/> | ||
<owl:versionIRI rdf:resource="https://ontologies.semanticarts.com/o/gistIoTX.x.x"/> | ||
<owl:versionInfo rdf:datatype="&xs;string">Created with e6Tools Graphical OWL Editor from S:\_SemanticArts\Offerings\gist\_daveGistGit\gist\gistNetworkIoTx.x.x.vsd Page:IoT</owl:versionInfo> | ||
<gist:license rdf:datatype="&xs;string">https://creativecommons.org/licenses/by-sa/3.0/</gist:license> | ||
<owl:versionInfo rdf:datatype="&xsd;string">Created with e6Tools Graphical OWL Editor from S:\_SemanticArts\Offerings\gist\_daveGistGit\gist\gistNetworkIoTx.x.x.vsd Page:IoT</owl:versionInfo> | ||
<gist:license rdf:datatype="&xsd;string">https://creativecommons.org/licenses/by-sa/3.0/</gist:license> | ||
</owl:Ontology> | ||
|
||
<owl:AnnotationProperty rdf:about="&rdfs;label"> | ||
</owl:AnnotationProperty> | ||
|
||
<owl:Class rdf:about="&gist;Actuator"> | ||
<rdfs:subClassOf rdf:resource="&gist;Equipment"/> | ||
<rdfs:label rdf:datatype="&xs;string">Actuator</rdfs:label> | ||
<rdfs:comment rdf:datatype="&xs;string">A device that can affect the real world via a message interface</rdfs:comment> | ||
<rdfs:label rdf:datatype="&xsd;string">Actuator</rdfs:label> | ||
<rdfs:comment rdf:datatype="&xsd;string">A device that can affect the real world via a message interface</rdfs:comment> | ||
</owl:Class> | ||
|
||
<owl:Class rdf:about="&gist;Category"> | ||
</owl:Class> | ||
|
||
<owl:Class rdf:about="&gist;Controller"> | ||
<rdfs:label rdf:datatype="&xs;string">Controller</rdfs:label> | ||
<rdfs:comment rdf:datatype="&xs;string">A device that takes messsages or signals from a sensor and decides through algorithms whether and which actuator to fire via messages</rdfs:comment> | ||
<owl:intersectionOf rdf:parseType="Collection"> | ||
<rdf:Description rdf:about="&gist;Equipment"> | ||
</rdf:Description> | ||
<owl:Restriction> | ||
<owl:onProperty rdf:resource="&gist;categorizedBy"/> | ||
<owl:someValuesFrom rdf:resource="&gist;ControllerType"/> | ||
</owl:Restriction> | ||
<owl:Restriction> | ||
<owl:onProperty rdf:resource="&gist;respondsTo"/> | ||
<owl:someValuesFrom rdf:resource="&gist;Sensor"/> | ||
</owl:Restriction> | ||
<owl:Restriction> | ||
<owl:onProperty rdf:resource="&gist;directs"/> | ||
<owl:someValuesFrom rdf:resource="&gist;Actuator"/> | ||
</owl:Restriction> | ||
</owl:intersectionOf> | ||
<rdfs:label rdf:datatype="&xsd;string">Controller</rdfs:label> | ||
<rdfs:comment rdf:datatype="&xsd;string">A device that takes messsages or signals from a sensor and decides through algorithms whether and which actuator to fire via messages</rdfs:comment> | ||
<owl:equivalentClass> | ||
<owl:Class> | ||
<owl:intersectionOf rdf:parseType="Collection"> | ||
<rdf:Description rdf:about="&gist;Equipment"> | ||
</rdf:Description> | ||
<owl:Restriction> | ||
<owl:onProperty rdf:resource="&gist;categorizedBy"/> | ||
<owl:someValuesFrom rdf:resource="&gist;ControllerType"/> | ||
</owl:Restriction> | ||
<owl:Restriction> | ||
<owl:onProperty rdf:resource="&gist;directs"/> | ||
<owl:someValuesFrom rdf:resource="&gist;Actuator"/> | ||
</owl:Restriction> | ||
<owl:Restriction> | ||
<owl:onProperty rdf:resource="&gist;respondsTo"/> | ||
<owl:someValuesFrom rdf:resource="&gist;Sensor"/> | ||
</owl:Restriction> | ||
</owl:intersectionOf> | ||
</owl:Class> | ||
</owl:equivalentClass> | ||
</owl:Class> | ||
|
||
<owl:Class rdf:about="&gist;ControllerType"> | ||
<rdfs:subClassOf rdf:resource="&gist;Category"/> | ||
<rdfs:label rdf:datatype="&xsd;string">Controller type</rdfs:label> | ||
</owl:Class> | ||
|
||
<owl:Class rdf:about="&gist;Equipment"> | ||
</owl:Class> | ||
|
||
<owl:Class rdf:about="&gist;MessageDefinition"> | ||
<rdfs:subClassOf rdf:resource="&gist;SchemaMetaData"/> | ||
<rdfs:label rdf:datatype="&xs;string">Message Definition</rdfs:label> | ||
<rdfs:comment rdf:datatype="&xs;string">Each pulse from a Sensor is reflected in a message, as well as each instruction to an Actuator</rdfs:comment> | ||
<rdfs:label rdf:datatype="&xsd;string">Message Definition</rdfs:label> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. gist has always used xs not xsd. Making this change should not be done here. It should be first put up as an issue to discuss, and if approved, make the change across all files. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The serializer changed it. Or protege. I fought with it for a while, but then decided to do the format change as 1 commit, and the real fixes next, as otherwise I was at an impasse. The reformat should be a 1 time thing if we use the same serializer going forward. |
||
<rdfs:comment rdf:datatype="&xsd;string">Each pulse from a Sensor is reflected in a message, as well as each instruction to an Actuator</rdfs:comment> | ||
</owl:Class> | ||
|
||
<owl:Class rdf:about="&gist;PhenomenaType"> | ||
<rdfs:subClassOf rdf:resource="&gist;Category"/> | ||
<rdfs:label rdf:datatype="&xs;string">Phenomena Type</rdfs:label> | ||
<rdfs:comment rdf:datatype="&xs;string">The things that a sensor can sense, such as light, heat, current, moisture, etc.</rdfs:comment> | ||
<rdfs:label rdf:datatype="&xsd;string">Phenomena Type</rdfs:label> | ||
<rdfs:comment rdf:datatype="&xsd;string">The things that a sensor can sense, such as light, heat, current, moisture, etc.</rdfs:comment> | ||
</owl:Class> | ||
|
||
<owl:Class rdf:about="&gist;PhysicalActionType"> | ||
<rdfs:subClassOf rdf:resource="&gist;Category"/> | ||
<rdfs:label rdf:datatype="&xs;string">Physical Action Type</rdfs:label> | ||
<rdfs:comment rdf:datatype="&xs;string">The effects to be realized in the real world, such as lifting a garage door, turning off a valve, dropping cadmium rods, etc.</rdfs:comment> | ||
<rdfs:label rdf:datatype="&xsd;string">Physical Action Type</rdfs:label> | ||
<rdfs:comment rdf:datatype="&xsd;string">The effects to be realized in the real world, such as lifting a garage door, turning off a valve, dropping cadmium rods, etc.</rdfs:comment> | ||
</owl:Class> | ||
|
||
<owl:Class rdf:about="&gist;SchemaMetaData"> | ||
</owl:Class> | ||
|
||
<owl:Class rdf:about="&gist;Sensor"> | ||
<rdfs:subClassOf rdf:resource="&gist;Equipment"/> | ||
<rdfs:label rdf:datatype="&xs;string">Sensor</rdfs:label> | ||
<rdfs:comment rdf:datatype="&xs;string">A device that can detect something and report it. Light sensors, temperature sensors,</rdfs:comment> | ||
<rdfs:label rdf:datatype="&xsd;string">Sensor</rdfs:label> | ||
<rdfs:comment rdf:datatype="&xsd;string">A device that can detect something and report it. Light sensors, temperature sensors,</rdfs:comment> | ||
</owl:Class> | ||
|
||
<owl:ObjectProperty rdf:about="&gist;accepts"> | ||
<rdfs:label rdf:datatype="&xs;string">Accepts</rdfs:label> | ||
<rdfs:comment rdf:datatype="&xs;string">The types of input messages that will be allowed</rdfs:comment> | ||
<rdfs:label rdf:datatype="&xsd;string">Accepts</rdfs:label> | ||
<rdfs:comment rdf:datatype="&xsd;string">The types of input messages that will be allowed</rdfs:comment> | ||
</owl:ObjectProperty> | ||
|
||
<owl:ObjectProperty rdf:about="&gist;categorizedBy"> | ||
</owl:ObjectProperty> | ||
|
||
<owl:ObjectProperty rdf:about="&gist;directs"> | ||
<rdfs:label rdf:datatype="&xs;string">Directs</rdfs:label> | ||
<rdfs:comment rdf:datatype="&xs;string">The set of actuators that a controller can affect</rdfs:comment> | ||
<rdfs:label rdf:datatype="&xsd;string">Directs</rdfs:label> | ||
<rdfs:comment rdf:datatype="&xsd;string">The set of actuators that a controller can affect</rdfs:comment> | ||
</owl:ObjectProperty> | ||
|
||
<owl:AnnotationProperty rdf:about="&gist;license"> | ||
|
@@ -105,13 +115,13 @@ | |
</owl:ObjectProperty> | ||
|
||
<owl:ObjectProperty rdf:about="&gist;respondsTo"> | ||
<rdfs:label rdf:datatype="&xs;string">Responds to</rdfs:label> | ||
<rdfs:comment rdf:datatype="&xs;string">The set of sensors that a controller is attached to</rdfs:comment> | ||
<rdfs:label rdf:datatype="&xsd;string">Responds to</rdfs:label> | ||
<rdfs:comment rdf:datatype="&xsd;string">The set of sensors that a controller is attached to</rdfs:comment> | ||
</owl:ObjectProperty> | ||
|
||
<owl:ObjectProperty rdf:about="&gist;viableRange"> | ||
<rdfs:label rdf:datatype="&xs;string">Viable Range</rdfs:label> | ||
<rdfs:comment rdf:datatype="&xs;string">The area over which the sensor can sense (might be a small geospatial area or a specific wire in a circuit)</rdfs:comment> | ||
<rdfs:label rdf:datatype="&xsd;string">Viable Range</rdfs:label> | ||
<rdfs:comment rdf:datatype="&xsd;string">The area over which the sensor can sense (might be a small geospatial area or a specific wire in a circuit)</rdfs:comment> | ||
</owl:ObjectProperty> | ||
|
||
</rdf:RDF> | ||
</rdf:RDF> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change is a bit confusing, but on careful inspection, on each commit, its fine.