ontology.ttl 84.7 KB
Newer Older
OnToologyUser's avatar
OnToologyUser committed
                                             rdfs:label "Temporal entity"@en .


OnToologyUser's avatar
OnToologyUser committed
###  http://www.w3.org/ns/sosa/Platform
<http://www.w3.org/ns/sosa/Platform> rdf:type owl:Class ;
                                     rdfs:comment "A Platform is an entity that hosts other entities, particularly Sensors, Actuators, Samplers, and other Platforms (definition taken from http://www.w3.org/ns/sosa/Platform)"@en ;
                                     rdfs:isDefinedBy <http://www.w3.org/ns/sosa/> ;
                                     rdfs:label "Platform"@en .


###  http://www.w3.org/ns/ssn/Deployment
<http://www.w3.org/ns/ssn/Deployment> rdf:type owl:Class ;
                                      rdfs:isDefinedBy <http://www.w3.org/ns/ssn/> ;
                                      rdfs:label "Deployment"@en .


###  http://www.w3.org/ns/ssn/System
<http://www.w3.org/ns/ssn/System> rdf:type owl:Class ;
                                  rdfs:comment "System is a unit of abstraction for pieces of infrastructure that implement Procedures. A System may have components, its subsystems, which are other Systems. (Definition taken from http://www.w3.org/ns/ssn/System)"@en ;
                                  rdfs:isDefinedBy <http://www.w3.org/ns/ssn/> ;
                                  rdfs:label "System"@en .


OnToologyUser's avatar
OnToologyUser committed
###  http://xmlns.com/foaf/0.1/Agent
<http://xmlns.com/foaf/0.1/Agent> rdf:type owl:Class ;
                                  rdfs:subClassOf [ rdf:type owl:Restriction ;
                                                    owl:onProperty <http://xmlns.com/foaf/0.1/member> ;
                                                    owl:someValuesFrom <http://xmlns.com/foaf/0.1/Agent>
                                                  ] ;
                                  rdfs:label "Agent"@en .


###  http://xmlns.com/foaf/0.1/Person
<http://xmlns.com/foaf/0.1/Person> rdf:type owl:Class ;
                                   rdfs:subClassOf <http://xmlns.com/foaf/0.1/Agent> .


###  https://schema.org/Organization
<https://schema.org/Organization> rdf:type owl:Class ;
                                  rdfs:subClassOf <http://xmlns.com/foaf/0.1/Agent> ;
                                  rdfs:label "Organization"@en .


OnToologyUser's avatar
OnToologyUser committed
###  https://w3id.org/def/saref4agri#Deployment
:Deployment rdf:type owl:Class ;
            rdfs:subClassOf <http://www.w3.org/ns/ssn/Deployment> ,
                            [ rdf:type owl:Restriction ;
                              owl:onProperty <http://www.w3.org/ns/ssn/deployedOnPlatform> ;
                              owl:someValuesFrom <http://www.w3.org/ns/sosa/Platform>
                            ] ,
                            [ rdf:type owl:Restriction ;
                              owl:onProperty <http://www.w3.org/ns/ssn/deployedSystem> ;
                              owl:someValuesFrom <http://www.w3.org/ns/ssn/System>
                            ] ,
                            [ rdf:type owl:Restriction ;
                              owl:onProperty :hasDeploymentPeriod ;
                              owl:someValuesFrom <http://www.w3.org/2006/time#TemporalEntity>
                            ] ,
                            [ rdf:type owl:Restriction ;
                              owl:onProperty :isDeployedAtSpace ;
                              owl:someValuesFrom <http://www.opengis.net/ont/geosparql#SpatialObject>
                            ] ;
            rdfs:comment "Deployment"@en ,
                         "The scenario, including temporal and spatial information, in which the systems and devices are installed."@en .


OnToologyUser's avatar
OnToologyUser committed
###  https://w3id.org/def/saref4agri#Pluviometer
:Pluviometer rdf:type owl:Class ;
             rdfs:subClassOf <https://w3id.org/saref#Sensor> ;
             rdfs:label "A sensor that measures the rain fall."@en ,
                        "Pluviometer"@en .


###  https://w3id.org/def/saref4agri#SoilTensiometer
:SoilTensiometer rdf:type owl:Class ;
                 rdfs:subClassOf <https://w3id.org/saref#Sensor> ;
                 rdfs:label "A sensor that measures the soil moisture."@en ,
                            "Soil tensiometer"@en .


###  https://w3id.org/def/saref4agri#WateringGun
:WateringGun rdf:type owl:Class ;
             rdfs:subClassOf <https://w3id.org/saref#Actuator> ;
             rdfs:label "An actuator to irrigate an space."@en ,
                        "Watering gun"@en .


###  https://w3id.org/def/saref4agri#WeatherStation
:WeatherStation rdf:type owl:Class ;
                rdfs:subClassOf <https://w3id.org/saref#Sensor> ;
                rdfs:label "A sensor o system that measure weather conditions."@en ,
                           "Weather station"@en .


OnToologyUser's avatar
OnToologyUser committed
###  https://w3id.org/saref#Actuator
<https://w3id.org/saref#Actuator> rdf:type owl:Class ;
                                  rdfs:subClassOf <https://w3id.org/saref#Device> ;
                                  rdfs:isDefinedBy <https://w3id.org/saref#> ;
                                  rdfs:label "Actuator"@en .


OnToologyUser's avatar
OnToologyUser committed
###  https://w3id.org/saref#Command
<https://w3id.org/saref#Command> rdf:type owl:Class ;
                                 rdfs:subClassOf [ rdf:type owl:Restriction ;
                                                   owl:onProperty <https://w3id.org/saref#actsUpon> ;
                                                   owl:allValuesFrom <https://w3id.org/saref#State>
                                                 ] ,
                                                 [ rdf:type owl:Restriction ;
                                                   owl:onProperty <https://w3id.org/saref#isCommandOf> ;
                                                   owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
                                                   owl:onClass <https://w3id.org/saref#Function>
                                                 ] ,
                                                 [ rdf:type owl:Restriction ;
                                                   owl:onProperty <https://w3id.org/saref#hasDescription> ;
                                                   owl:maxCardinality "1"^^xsd:nonNegativeInteger
                                                 ] ;
                                 rdfs:comment "A directive that a device must support to perform a certain function. A command may act upon a state, but does not necessarily act upon a state. For example, the ON command acts upon the ON/OFF state, but the GET command does not act upon any state, it simply gives a directive to retrieve a certain value. We propose here a list of commands that are relevant for the purpose of SAREF, but this list can be extended." ;
                                 rdfs:label "Command" .


###  https://w3id.org/saref#Device
OnToologyUser's avatar
OnToologyUser committed
<https://w3id.org/saref#Device> rdf:type owl:Class ;
OnToologyUser's avatar
OnToologyUser committed
                                rdfs:subClassOf <http://www.w3.org/ns/ssn/System> ;
OnToologyUser's avatar
OnToologyUser committed
                                rdfs:isDefinedBy <https://w3id.org/saref#> ;
                                rdfs:label "Device"@en .
OnToologyUser's avatar
OnToologyUser committed
###  https://w3id.org/saref#FeatureOfInterest
<https://w3id.org/saref#FeatureOfInterest> rdf:type owl:Class ;
                                           rdfs:subClassOf [ rdf:type owl:Restriction ;
                                                             owl:onProperty <https://w3id.org/saref#hasProperty> ;
                                                             owl:allValuesFrom <https://w3id.org/saref#Property>
                                                           ] ,
                                                           [ rdf:type owl:Restriction ;
                                                             owl:onProperty <https://w3id.org/saref#isFeatureOfInterestOf> ;
                                                             owl:allValuesFrom <https://w3id.org/saref#Measurement>
                                                           ] ;
                                           rdfs:comment <https://w3id.org/saref#> ;
                                           rdfs:label "Feature of interest"@en .


OnToologyUser's avatar
OnToologyUser committed
###  https://w3id.org/saref#Function
<https://w3id.org/saref#Function> rdf:type owl:Class ;
                                  rdfs:subClassOf [ rdf:type owl:Restriction ;
                                                    owl:onProperty <https://w3id.org/saref#hasCommand> ;
                                                    owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
                                                    owl:onClass <https://w3id.org/saref#Command>
                                                  ] ;
                                  rdfs:comment "The functionality necessary to accomplish the task for which a Device is designed. A device can be designed to perform more than one function. Functions can be structured in categories (subclasses) that reflect different points of view, for example, considering the specific application area for which a function can be used (e.g., light, temperature, motion, heat, power, etc.), or the capability that a function can support (e.g., receive, reply, notify, etc.), and so forth. " ;
                                  rdfs:label "Function" .


###  https://w3id.org/saref#Humidity
<https://w3id.org/saref#Humidity> rdf:type owl:Class ;
                                  rdfs:subClassOf <https://w3id.org/saref#Property> ;
                                  rdfs:comment "A saref:Property related to some measurements that are characterized by a certain value that is measured in a humidity unit" ;
OnToologyUser's avatar
OnToologyUser committed
                                  rdfs:label "Humidiy"@en ,
                                             "Humidity" .
OnToologyUser's avatar
OnToologyUser committed


###  https://w3id.org/saref#Measurement
<https://w3id.org/saref#Measurement> rdf:type owl:Class ;
                                     rdfs:subClassOf [ rdf:type owl:Restriction ;
OnToologyUser's avatar
OnToologyUser committed
                                                       owl:onProperty <https://w3id.org/saref#hasFeatureOfInterest> ;
                                                       owl:allValuesFrom <https://w3id.org/saref#FeatureOfInterest>
OnToologyUser's avatar
OnToologyUser committed
                                                     ] ,
                                                     [ rdf:type owl:Restriction ;
                                                       owl:onProperty <https://w3id.org/saref#isMeasuredIn> ;
                                                       owl:allValuesFrom <https://w3id.org/saref#UnitOfMeasure>
                                                     ] ,
                                                     [ rdf:type owl:Restriction ;
                                                       owl:onProperty <https://w3id.org/saref#relatesToProperty> ;
                                                       owl:allValuesFrom <https://w3id.org/saref#Property>
                                                     ] ,
                                                     [ rdf:type owl:Restriction ;
                                                       owl:onProperty <https://w3id.org/saref#isMeasuredIn> ;
                                                       owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
                                                       owl:onClass <https://w3id.org/saref#UnitOfMeasure>
                                                     ] ,
                                                     [ rdf:type owl:Restriction ;
                                                       owl:onProperty <https://w3id.org/saref#relatesToProperty> ;
                                                       owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
                                                       owl:onClass <https://w3id.org/saref#Property>
                                                     ] ,
                                                     [ rdf:type owl:Restriction ;
                                                       owl:onProperty <https://w3id.org/saref#hasTimestamp> ;
                                                       owl:allValuesFrom xsd:dateTime
                                                     ] ,
                                                     [ rdf:type owl:Restriction ;
                                                       owl:onProperty <https://w3id.org/saref#hasValue> ;
                                                       owl:cardinality "1"^^xsd:nonNegativeInteger
                                                     ] ,
                                                     [ rdf:type owl:Restriction ;
                                                       owl:onProperty <https://w3id.org/saref#hasValue> ;
                                                       owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
                                                       owl:onDataRange xsd:float
                                                     ] ;
                                     owl:disjointWith <https://w3id.org/saref#Property> ,
                                                      <https://w3id.org/saref#UnitOfMeasure> ;
                                     rdfs:comment "Represents the measured value made over a property. It is also linked to the unit of measure in which the value is expressed and the timestamp of the measurement."@en ;
                                     rdfs:isDefinedBy <https://w3id.org/saref#> ;
                                     rdfs:label "Measurement"@en .


###  https://w3id.org/saref#Property
<https://w3id.org/saref#Property> rdf:type owl:Class ;
                                  rdfs:subClassOf [ rdf:type owl:Restriction ;
                                                    owl:onProperty <https://w3id.org/saref#isControlledByDevice> ;
                                                    owl:allValuesFrom <https://w3id.org/saref#Device>
                                                  ] ,
                                                  [ rdf:type owl:Restriction ;
                                                    owl:onProperty <https://w3id.org/saref#isMeasuredByDevice> ;
                                                    owl:allValuesFrom <https://w3id.org/saref#Device>
                                                  ] ,
OnToologyUser's avatar
OnToologyUser committed
                                                  [ rdf:type owl:Restriction ;
                                                    owl:onProperty <https://w3id.org/saref#isPropertyOf> ;
                                                    owl:allValuesFrom <https://w3id.org/saref#FeatureOfInterest>
                                                  ] ,
OnToologyUser's avatar
OnToologyUser committed
                                                  [ rdf:type owl:Restriction ;
                                                    owl:onProperty <https://w3id.org/saref#relatesToMeasurement> ;
                                                    owl:allValuesFrom <https://w3id.org/saref#Measurement>
                                                  ] ;
                                  owl:disjointWith <https://w3id.org/saref#UnitOfMeasure> ;
                                  rdfs:comment "An aspect of an entity that can be observable by a sensor."@en ,
                                               "Anything that can be sensed, measured or controlled in households, common public buildings or offices. We propose here a list of properties that are relevant for the purpose of SAREF, but this list can be extended." ;
                                  rdfs:isDefinedBy <https://w3id.org/saref#> ;
                                  rdfs:label "Property"@en ,
                                             "Property" .


OnToologyUser's avatar
OnToologyUser committed
###  https://w3id.org/saref#Sensor
<https://w3id.org/saref#Sensor> rdf:type owl:Class ;
                                rdfs:subClassOf <https://w3id.org/saref#Device> ;
                                rdfs:isDefinedBy <https://w3id.org/saref#> ;
                                rdfs:label "Sensor"@en .


OnToologyUser's avatar
OnToologyUser committed
###  https://w3id.org/saref#State
<https://w3id.org/saref#State> rdf:type owl:Class ;
                               rdfs:comment "The state in which a device can be found, e.g, ON/OFF/STANDBY, or ONLINE/OFFLINE. We propose here a list of states that are relevant for the purpose of SAREF, but this list can be extended." ;
                               rdfs:label "State" .


###  https://w3id.org/saref#Task
<https://w3id.org/saref#Task> rdf:type owl:Class ;
                              rdfs:subClassOf [ rdf:type owl:Restriction ;
                                                owl:onProperty <https://w3id.org/saref#isAccomplishedBy> ;
                                                owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
                                                owl:onClass <https://w3id.org/saref#Device>
                                              ] ;
                              rdfs:comment "The goal for which a device is designed (from a user perspective). For example, a washing machine is designed for the task of washing. We propose here a list of tasks that are relevant for the purpose of SAREF, but this list can be extended." ;
                              rdfs:label "Task" .


###  https://w3id.org/saref#Temperature
<https://w3id.org/saref#Temperature> rdf:type owl:Class ;
                                     rdfs:subClassOf <https://w3id.org/saref#Property> ;
                                     rdfs:comment "A saref:Property related to some measurements that are characterized by a certain value that is measured in a temperature unit (degree_Celsius, degree_Fahrenheit, or degree_kelvin)" ;
OnToologyUser's avatar
OnToologyUser committed
                                     rdfs:label "Temperature"@en ,
                                                "Temperature" .
OnToologyUser's avatar
OnToologyUser committed


###  https://w3id.org/saref#Time
<https://w3id.org/saref#Time> rdf:type owl:Class ;
OnToologyUser's avatar
OnToologyUser committed
                              rdfs:subClassOf <https://w3id.org/saref#Property> ;
OnToologyUser's avatar
OnToologyUser committed
                              rdfs:comment "A saref:Property that allows to specify the time concept in terms of instants or intervals according to the imported W3C Time ontology." ;
                              rdfs:label "Time" .


###  https://w3id.org/saref#UnitOfMeasure
<https://w3id.org/saref#UnitOfMeasure> rdf:type owl:Class ;
                                       rdfs:comment "The unit of measure is a standard for measurement of a quantity, such as a Property. For example,  Power is a property and Watt is a unit of power that represents a definite predetermined power: when we say 10 Watt, we actually mean 10 times the definite predetermined power called \"watt\". Our definition is based on the definition of unit of measure in the Ontology of units of Measure (OM). We propose here a list of some units of measure that are relevant for the purpose of the Smart Appliances ontology, but this list can be extended."@en ,
                                                    "The unit of measure is a standard for measurement of a quantity, such as a Property. For example,  Power is a property and Watt is a unit of power that represents a definite predetermined power: when we say 10 Watt, we actually mean 10 times the definite predetermined power called \"watt\". Our definition is based on the definition of unit of measure in the Ontology of units of Measure (OM). We propose here a list of some units of measure that are relevant for the purpose of SAREF, but this list can be extended, also using some other ontologies rather than the Ontology of units of Measure (OM)." ;
                                       rdfs:isDefinedBy <http://www.wurvoc.org/vocabularies/om-1.6/Unit_of_measure> ,
                                                        <https://w3id.org/saref#> ;
                                       rdfs:label "Unit of measure"@en ,
                                                  "Unit of measure" .


OnToologyUser's avatar
OnToologyUser committed
#################################################################
#    Individuals
#################################################################

###  http://dbpedia.org/resource/DBM
<http://dbpedia.org/resource/DBM> rdf:type owl:NamedIndividual ,
                                           <https://w3id.org/saref#UnitOfMeasure> ;
                                  rdfs:label "decibel-milliwatts"@en .


###  http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsius
<http://www.ontology-of-units-of-measure.org/resource/om-2/degreeCelsius> rdf:type owl:NamedIndividual ,
                                                                                   <https://w3id.org/saref#UnitOfMeasure> ;
                                                                          rdfs:label "degree Celsius"@en .


###  http://www.ontology-of-units-of-measure.org/resource/om-2/millibar
<http://www.ontology-of-units-of-measure.org/resource/om-2/millibar> rdf:type owl:NamedIndividual ,
                                                                              <https://w3id.org/saref#UnitOfMeasure> ;
                                                                     rdfs:label "millibar"@en .


###  http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre
<http://www.ontology-of-units-of-measure.org/resource/om-2/millimetre> rdf:type owl:NamedIndividual ,
                                                                                <https://w3id.org/saref#UnitOfMeasure> ;
                                                                       rdfs:label "millimetre"@en .


###  http://www.ontology-of-units-of-measure.org/resource/om-2/millivolt
<http://www.ontology-of-units-of-measure.org/resource/om-2/millivolt> rdf:type owl:NamedIndividual ,
                                                                               <https://w3id.org/saref#UnitOfMeasure> ;
                                                                      rdfs:label "millivolt"@en .


OnToologyUser's avatar
OnToologyUser committed
###  https://w3id.org/def/saref4agri#AirTemperature
:AirTemperature rdf:type owl:NamedIndividual ,
                         <https://w3id.org/saref#Temperature> ;
                rdfs:label "Air temperature"@en .


###  https://w3id.org/def/saref4agri#AmbientHumidity
:AmbientHumidity rdf:type owl:NamedIndividual ,
                          <https://w3id.org/saref#Humidity> ;
                 rdfs:label "Ambient huidity"@en .


###  https://w3id.org/def/saref4agri#IrrigationWater
:IrrigationWater rdf:type owl:NamedIndividual ,
                          <https://w3id.org/saref#Property> ;
                 rdfs:label "Irrigation water"@en .


###  https://w3id.org/def/saref4agri#PlantGrowthStage
:PlantGrowthStage rdf:type owl:NamedIndividual ,
                           <https://w3id.org/saref#Property> ;
                  rdfs:label "Plant growth stage"@en .


###  https://w3id.org/def/saref4agri#Precipitation
:Precipitation rdf:type owl:NamedIndividual ,
                        <https://w3id.org/saref#Property> ;
               rdfs:label "Precipitation"@en .


###  https://w3id.org/def/saref4agri#SoilMoisture
:SoilMoisture rdf:type owl:NamedIndividual ,
                       <https://w3id.org/saref#Property> ;
              rdfs:label "Soil moisture"@en .


###  https://w3id.org/def/saref4agri#SoilTemperature
:SoilTemperature rdf:type owl:NamedIndividual ,
                          <https://w3id.org/saref#Temperature> ;
                 rdfs:label "Soil temperature"@en .


OnToologyUser's avatar
OnToologyUser committed
#################################################################
#    Annotations
#################################################################

<http://www.w3.org/2003/01/geo/wgs84_pos#location> rdfs:comment """The relation between something and the point, 
 or other geometrical thing in space, where it is.  For example, the realtionship between
 a radio tower and a Point with a given lat and long.
 Or a relationship between a park and its outline as a closed arc of points, or a road and
 its location as a arc (a sequence of points).
 Clearly in practice there will be limit to the accuracy of any such statement, but one would expect
 an accuracy appropriate for the size of the object and uses such as mapping .
 """ ;
                                                   rdfs:label "location"@en .


OnToologyUser's avatar
OnToologyUser committed
###  Generated by the OWL API (version 5.1.9) https://github.com/owlcs/owlapi/