SAREF4ENVI ontology and semantics
Introduction
The present document is the technical specification of SAREF4ENVI, an extension of SAREF [1] for the environment domain. The extension was created in collaboration with domain experts in the field of light pollution currently working in the STARS4ALL European H2020 project (http://www.stars4all.eu/index.php/lpi/). The STARS4ALL project is composed by partners such as Universidad Politécnica de Madrid, Universidad Complutense de Madrid, ESCP Europe, Leibniz Institute of Freshwater Ecology and Inland Fisheries, Instituto de Astrofísica de Canarias, University of Southampton, Europan Crowdfunding Network, and CEFRIEL (Società Consortile a Responsabilita Limitata).
SAREF4ENVI has two main aims: on the one hand, to be the basis for enabling the use of SAREF in the environment domain and, on the other hand, to exemplify how to enable interoperability between environmental devices in cooperation.
SAREF4ENVI is an OWL-DL ontology that extends SAREF with 32 classes (24 defined in SAREF4ENVI and 7 reused from the time, SAREF and geo ontologies), 24 object properties (22 defined in SAREF4ENVI and 2 reused from the SAREF and geo ontologies), 13 data type properties (9 defined in SAREF4ENVI and 4 reused from the SAREF ontology), and 24 individuals (9 defined in SAREF4ENVI and 12 reused from the OM ontology). SAREF4ENVI focuses on extending SAREF for photometers to solve the lack of interoperability between sensors that can measure and share information about light pollution. Such extension involves the following use cases (more details can be found in ETSI TR 103 411 [i.1]):
- Use case 1: Monitor light pollution in a city, through the data collected by photometers about the magnitude of the light emitted in a given area.
- Use case 2: Adjust lampposts light intensity due to high pollution, after identifying the most contaminating lampposts and therefore the areas where more energy is being thrown away.
- Use case 3: Register a photometer, in which a new collection of photometers is incorporated into an existing sensor network.
The prefixes and namespaces used in SAREF4ENVI and along this document are listed in Table 1.
Prefix | Namespace |
---|---|
dct | http://purl.org/dc/terms/ |
owl | http://www.w3.org/2002/07/owl# |
rdf | http://www.w3.org/1999/02/22-rdf-syntax-ns# |
rdfs | http://www.w3.org/2000/01/rdf-schema# |
s4envi | https://saref.etsi.org/saref4envi/ |
saref | https://saref.etsi.org/core/ |
time | http://www.w3.org/2006/time# |
vann | http://purl.org/vocab/vann/ |
wgs84 | http://www.w3.org/2003/01/geo/wgs84_pos# |
xml | http://www.w3.org/XML/1998/namespace |
xsd | http://www.w3.org/2001/XMLSchema# |
SAREF4ENVI
General overview
A graphical overview of the SAREF4ENVI ontology is provided in Figure 1.
In such figure, grey rectangles are used to denote classes created in the ontology while white rectangles denote reused classes. For all the entities, it is indicated whether they are defined in the extension or in other ontologies by the prefix included before their identifier, that is, if the element is defined in SAREF4ENVI there is no prefix added and if the element is reused from another ontology it is indicated by a prefix according to Table 1.
Arrows are used represent properties between classes and to represent some RDF, RDF-S and OWL constructs, more precisely:
- Plain arrows with white triangles represent the
rdfs:subClassOf
relation between two classes. The origin of the arrow is the class to be declared as subclass of the class at the destination of the arrow. - Dashed arrows between two classes indicate a local restriction in the origin class, i.e. that the object property can be instantiated between the classes in the origin and the destination of the arrow. The identifier of the object property is indicated within the arrow.
- Dashed arrows with identifiers between stereotype signs (i.e. "<< >>") refer to OWL constructs that are applied to some ontology elements, that is, they can be applied to classes or properties depending on the OWL construct being used.
- Dashed arrows with no identifier are used to represent the
rdf:type
relation, indicating that the element in the origin of the arrow is an instance of the class in the destination of the arrow.
Datatype properties are denoted by rectangles attached to the classes, in an UML-oriented way. Dashed boxes represent local restrictions in the class, i.e. datatype properties that can be applied to the class it is attached to.
Individuals are denoted by grey rectangles (or white ones in the case of being reused from other ontologies) in which the identifier is underlined.
The representation of additional property axioms (functional, inverse functional, transitive, and symmetric) that are being used in the diagram is shown in the legend of Figure 1.
Clause 4.2.2 to clause 4.2.7 describe the different parts of the SAREF4ENVI extension describing the different conceptual modules of the ontology.

Physical Object Hierarchy
In SAREF4ENVI, the SAREF ontology has been extended with various elements to describe different physical objects, devices, and their characteristics.
Apart from extending the saref:Device
class with the s4envi:Device
class, a hierarchy has been defined also including the classes s4envi:PhysicalObject
, s4envi:System
and s4envi:Actuator
in the upper levels. In order to represent sensors from the light pollution domain, the classes s4envi:Photometer
and s4envi:TESS
(a specific type of photometer) have been included extending the hierarchy. Such classes are organized in the hierarchy shown in Figure 2.

Devices and Measurements
Devices and measurements are depicted in Figure 3. This model represents an n-ary pattern that allows users to relate different measurements from a given sensor for different properties measured in different units. That is, the saref:Measurement
class aims at describing a measurement of a physical quantity (using the saref:hasValue
property) for a given saref:Property
and according to a given saref:UnitOfMeasure
.
This pattern enables to differentiate between properties and the measurements made for such properties and to store measurements for a concrete property in different units of measurement.
Furthermore, it allows adding a timestamp (using the saref:hasTimeStamp
property) to identify when the measurement applies to the property, which can be used either for single measurements or for series of measurements (e.g. measurement streams).
It is worth noting that this modelling was included in SAREF 2.0 after the SAREF4ENVI extension was developed. This pattern was first included in the SAREF4ENVI and SAREF4BLDG extensions and then proposed to be extrapolated to SAREF 2.0; this explains why the prefix used for this part of the model refers to SAREF instead of to SAREF4ENVI. However, as its origin is in the SAREF4ENVI and SAREF4BLDG extensions requirements and models, the explanations are kept in the present document.

Table 2 summarizes the restrictions that characterize a saref:Measurement
.
Property | Definition |
---|---|
saref:hasTimestamp only xsd:dateTime | The timestamp of a measurement is represented only by xsd:dateTime. |
saref:hasValue exactly 1 xsd:float | A measurement should have exactly one value represented using xsd:float. |
saref:hasValue only xsd:float | The value of a measurement is represented only by xsd:float. |
saref:isMeasuredIn exactly 1 saref:UnitOfMeasure | A measurement should have exactly one unit of measurement which should be instance of saref:UnitOfMeasure. |
saref:isMeasuredIn only saref:UnitOfMeasure | The unit of measurement of a measurement is represented only by instances of the class saref:UnitOfMeasure. |
saref:relatesToProperty exactly 1 saref:Property | A measurement should be related exactly to one property which should be instance of saref:Property. |
saref:relatesToProperty only saref:Property | The property to which a measurement is related to is represented only by instances of the class saref:Property. |
Table 3 summarizes the restrictions that characterize a saref:Sensor
.
Property | Definition |
---|---|
saref:makesMeasurement only saref:Measurement | The measurement made by a sensor is represented only by instances of the class saref:Measurement. |
saref:measuresProperty only saref:Property | The property measured by a sensor is represented only by instances of the class saref:Property. |
Devices
Figure 4 represents the s4envi:Device
class which is extended from saref:Device
; therefore, the new class inherits the properties defined in the SAREF ontology for saref:Device
, such as saref:hasManufacturer
. In addition, the class has been complemented with the properties s4envi:hasFrequencyMeasurement
and s4envi:hasTransmissionPeriod
in order to model the frequency with which a device makes measurements and its period for transmitting such measurements. Both relationships are represented by n-ary relationships modelled by the classes s4envi:FrequencyMeasurement
and s4envi:PeriodMeasurement
, which are subclasses of saref:Measurement
. The specific value for the frequency and the period is indicated by the datatype property saref:hasValue
, which is inherited from the class saref:Measurement.
As the temporal units of measurement are already defined in SAREF by means of the class time:TemporalUnit,
there has been no need for defining new units for s4envi:PeriodMeasurement
. However, new units of measurement are needed to represent frequencies; therefore, saref:UnitOfMeasure
class has been extended with the class s4envi:FrequencyUnit
, including the main instances from the OM units of measurement ontology to measure frequency, such as om:hertz
, om:reciprocal_second-time
, om:reciprocal_hour
, om:reciprocal_day
, and om:reciprocal_year
. It is worth noting that the user is free to use other units of measurement if required.
Finally, s4envi:Actuator
has been added according to the domain expert requirements in order to represent devices that can act (s4envi:affectsProperty
) over properties as shown in Figure 4.

Table 4 summarizes the restrictions that characterize a s4envi:Device
.
Property | Definition |
---|---|
saref:hasManufacturer only xsd:string | Manufacturers of the device are represented only by xsd:string. |
s4envi:hasFrequencyMeasurement only s4envi:FrequencyMeasurement | The frequency of a device for making measurements is represented only by instances of s4envi:FrequencyMeasurement. |
s4envi:hasRevisionNumber max 1 xsd:string | A device can have one revision number at most. |
s4envi:hasRevisionNumber only xsd:string | The revision number of a device is represented only by xsd:string. |
s4envi:hasTransmissionPeriod only s4envi:PeriodMeasurement | The transmission period of a device is represented only by instances of s4envi:PeriodMeasurement. |
s4envi:hasVersion max 1 xsd:string | A device can have one version at most. |
s4envi:hasVersion only xsd:string | The version of a device is represented only by xsd:string. |
s4envi:isContainedin only s4envi:PhysicalObject | A device can be contained in entities represented only by instances of s4envi:PhysicalObject. |
Table 5 summarizes the restrictions that characterize a s4envi:FrequencyMeasurement
.
Property | Definition |
---|---|
saref:isMeasuredIn exactly 1 s4envi:FrequencyUnit | A frequency measurement should have exactly one unit of measurement which should be instance of saref:FrequencyUnit. |
saref:relatesToProperty value s4envi:Frequency | A frequency measurement relates to a property represented by the instance s4envi:Frequency. |
Table 6 summarizes the restrictions that characterize a s4envi:PeriodMeasurement.
Property | Definition |
---|---|
saref:isMeasuredIn exactly 1 time:TemporalUnit | A period measurement should have exactly one unit of measurement which should be instance of saref:TemporalUnit. |
saref:relatesToProperty value s4envi:Period | A period measurement relates to a property represented by the instance s4envi:Period. |
Table 7 summarizes the restrictions that characterize a s4envi:Actuator
.
Property | Definition |
---|---|
s4envi:affectsProperty only saref:Property | An actuator affects entities represented only by instances of saref:Property. |
Systems and Physical Objects
As already observed in Figure 2, according to the requirements extracted from uses cases and domain experts, it was necessary to include more general information about systems and physical objects, which are superclasses of devices, in order to provide a general framework for representing communications, componency, and digital representations. This section focuses on these additional classes included in SAREF4ENVI that model how to access physical objects and their components.
Figure 5 represents the class s4envi:System
and its properties. It can observed that a system can be composed of other systems and this is represented by the property s4envi:hasComponent
and its inverse s4envi:isComponentOf
. A system can also be connected to other systems, represented by the s4envi:isConnectedTo
property.
The communication protocol and interface that a system might use are represented by the classes s4envi:CommunicationProtocol
and s4envi:CommunicationInterface
, respectively.

Table 8 summarizes the restrictions that characterize a s4envi:System.
Property | Definition |
---|---|
s4envi:hasComponent only s4envi:System | A system can have as components entities represented only by instances of s4envi:System. |
s4envi:isComponentOf only s4envi:System | A system can be component of entities represented only by instances of s4envi:System. |
s4envi:isConnectedTo only s4envi:System | A system can be connected to entities represented only by instances of s4envi:System. |
s4envi:usesCommunicationInterface only s4envi:CommunicationInterface | A system uses communication interfaces represented only by instances of s4envi:CommunicationInterface. |
s4envi:usesCommunicationProtocol only s4envi:CommunicationProtocol | A system uses communication protocols represented only by instances of s4envi:CommunicationProtocol. |
Table 9 summarizes the restrictions that characterize a s4envi:CommunicationInterface
.
Property | Definition |
---|---|
s4envi:hasVersion max 1 xsd:string | A communication interface can have one version at most. |
s4envi:hasVersion only xsd:string | The version of a communication interface is represented only by xsd:string. |
The model represented in Figure 6 supports the representation of services that allow the access to digital representations of a given physical object (e.g. devices, sensors, etc.). The main entity in this model is s4envi:PhysicalObject
that represents a general class for devices and systems and any other entity with a physical representation in order to make the model extensible to other domains. Such object can have digital representations (s4envi:DigitalRepresention
) that can be accessed through services (saref:Service
).
In addition, the digital representation can be linked back to the physical object that it encapsulates by means of the property s4envi:encapsulates
, defined as inverse of s4envi:hasDigitalRepresentation
. It is worth noting that s4envi:hasDigitalRepresentation
is defined as inverse functional since a digital representation can encapsulate only one object.
Finally, the relation between a physical object and its location is represented by the reused property geo:location
. In addition, s4envi:PhysicalObject
is declared to be subclass of geo:SpatialThing
.

Table 10 summarizes the restrictions that characterize a s4envi:DigitalRepresentation.
Property | Definition |
---|---|
s4envi:encapsulates only s4envi:PhysicalObject | A digital representation encapsulates objects represented only by instances of s4envi:PhysicalObject. |
s4envi:hasCreationDate max 1 xsd:dateTime | A digital representation can have one creation date at most. |
s4envi:hasCreationDate only xsd:dateTime | The value of a creation date is represented only by xsd:dateTime. |
hasDescription only xsd:string | The value of a description is represented only by xsd:string. |
s4envi:hasIdentifier max 1 xsd:string | A digital representation can have one identifier at most. |
s4envi:hasIdentifier only xsd:string | The value of an identifier is represented only by xsd:string. |
saref:hasName only xsd:string | The value of a name is represented only by xsd:string. |
s4envi:hasTag only xsd:string | The value of a tag is represented only by xsd:string. |
s4envi:isAccesibleThrough only saref:Service | A digital representation is accessible through entities represented only by instances of saref:Service. |
Table 11 summarizes the restrictions that characterize a s4envi:PhysicalObject
.
Property | Definition |
---|---|
s4envi:contains only s4envi:PhysicalObject | A physical object contains entities represented only by instances of s4envi:PhysicalObject. |
saref:hasDescription only xsd:string | The value of a description is represented only by xsd:string. |
s4envi:hasDigitalRepresentation only s4envi:DigitalRepresentation | A physical object has a digital representation represented only by instances of s4envi:DigitalRepresentation. |
geo:location only geo:SpatialThing | A physical object can be located only at entities represented by instances of geo:SpatialThing. |
Photometers
A photometer, in general, is an instrument that measures light intensity or optical properties of solutions or surfaces. In general a s4envi:Photometer
is an entity that observes some s4envi:LightProperty
, in a way of paraphrasing the axiom shown in Figure 7. In such figure, it can also be observed that a particular case of photometer is a s4envi:TESS
(Telescope Encoder and Sky Sensor). It is worth noting that other particular photometers could be added by extending the s4envi:Photometer
class when reusing this extension.
Furthermore, Figure 7 also shows the main light properties that can be observed by a photometer. These properties are represented as instances, for example s4envi:Luminiscence
, of the class s4envi:LightProperty
.

Table 12 summarizes the restrictions that characterize a s4envi:Photometer.
Property | Definition |
---|---|
saref:measuresProperty some s4envi:LightProperty | A photometer should measure some entity represented by an instance of the class s4envi:LightProperty. |
Lampposts, Light Points and Light
Figure 8 represents the model to represent lampposts and their possible light points using the classes s4envi:Lamppost
and s4envi:LightPoint
. It can also be indicated that a lamppost can have one or more light points by using the s4envi:hasLightPoint
object property.
In this model both lampost and light points are allowed to be agents that project light (represented by the property s4envi:projectsLight
). In this sense, one lamppost could directly project light or in a more complex scenario a lamppost could have different light points being these light points in charge of projecting the light.
Finally, s4envi:LightPoint
has been defined as subclass of geo:Point
as it is a point located in a given space and it can inherit the mechanism to express its latitude, altitude and longitude from geo:Point
.

Table 13 summarizes the restrictions that characterize a s4envi:Lamppost
.
Property | Definition |
---|---|
s4envi:hasLightPoint only s4envi:LightPoint | A lamppost has as light points entities represented only by instances of s4envi:LightPoint. |
s4envi:hasShield only xsd:boolean | The value of a whether a lamppost has a shield is represented only by xsd:boolean. |
s4envi:projectsLight only s4envi:Light | A lamppost projects lights that are represented only by instances of s4envi:Light. |
Table 14 summarizes the restrictions that characterize a s4envi:LightPoint
.
Property | Definition |
---|---|
geo:location only geo:SpatialThing | A light point can be located only at entities represented by instances of geo:SpatialThing. |
s4envi:projectsLight only s4envi:Light | A light point projects lights that are represented only by instances of s4envi:Light. |
The model depicted in Figure 9 represents the light characteristics. It can be observed that a light is projected in a certain angle, in a given direction and from a given height, represented by the properties s4envi:hasProjectionAngle
(datatype property), s4envi:isProjectedInDirection
(object property) and s4envi:isProjectedFromHeight
(object property), respectively.
The angle is represented by a float indicating the degrees of the cone of light that the light emits. Besides, the direction can be represented by instances of the class s4envi:CompassDirection
that could represent values such as North, South, Northwest, etc.
The height from which a light is projected is modelled as a subclass of saref:Measurement
, namely s4envi:HeightMeasurement
, as in this case it is necessary to indicate the value of such measure, inherited from saref:Measurement
, and the unit of measurement used. That is, an n-ary pattern is used here.
The colour of the light emitted is represented by the objet property s4envi:hasColor
and its values should be instantiated as individuals of the class s4envi:Color
. Similarly, the geometry of a light can be indicated by means of the s4envi:hasGeometry
object property and its values would belong to the class s4envi:Geometry
.
Finally, it could be indicated whether a light has a flash by using the s4envi:hasFlash
datatype property.

Table 15 summarizes the restrictions that characterize a s4envi:Light
.
Property | Definition |
---|---|
s4envi:hasColor only s4envi:Color | A light can have a colour represented only by instances of s4envi:Color. |
s4envi:hasFlash only xsd:boolean | The value of a whether a light has flash is represented only by xsd:boolean. |
s4envi:hasGeometry only s4envi:Geometry | A light can have a geometry represented only by instances of s4envi:Geometry. |
s4envi:hasProjectionAngle only xsd:float | The value of the projection angle of a light is represented only by xsd:float. |
s4envi:isProjectedFromHeight only s4envi:HeightMeasurement | The height from which a light is projected is represented only by instances of the class s4envi:HeightMeasurement. |
s4envi:isProjectedInDirection only s4envi:CompassDirection | The direction in which a light is projected is represented only by instances of the class s4envi:ComprassDirection. |
Observations about SAREF4ENVI
In the following, several observations about potential uses of the SAREF4ENVI ontology are listed.
First of all, it is worth reminding here that a TESS is an example of a particular photometer, other photometers could be included by extending the class s4envi:Photometer
.
In addition, in order to include other physical objects or devices related to environmental measurements in other use cases, the different classes included in the ontology could be extended. For example, s4envi:Photometer
should be extended to represent CO2 sensors; in that case, the saref:Property
hierarchy should be extended with the properties that CO2 sensors might measure following the guidelines presented in this extension.
Ontology Reference
Classes
- s4envi:Actuator
- s4envi:Color
- s4envi:CommunicationInterface
- s4envi:CommunicationProtocol
- s4envi:CompassDirection
- s4envi:Device
- s4envi:DigitalRepresentation
- s4envi:FrequencyMeasurement
- s4envi:FrequencyUnit
- s4envi:Geometry
- s4envi:HeightMeasurement
- s4envi:Lamppost
- s4envi:LengthUnit
- s4envi:Light
- s4envi:LightPoint
- s4envi:LightProperty
- s4envi:PeriodMeasurement
- s4envi:Photometer
- s4envi:PhysicalObject
- s4envi:System
- s4envi:TESS
s4envi:Actuator — Actuator top Classes ToC
Device that can act over at least one property.
- has super-classes
-
s4envi:affectsProperty only
saref:Property
s4envi:Device
s4envi:Color — Color top Classes ToC
Color of the emitted light. It might be indicated by named colors or using other type of color values like hexadecimal for RGB, color temperature, etc.
s4envi:CommunicationInterface — Communication interface top Classes ToC
An interface defines which primitive operations and services the lower layer makes available to the upper one, when referring to network layers. (Definition adapted from "Tanenbaum, A. S. (2003). Computer networks, 4-th edition. ed: Prentice Hall.")
s4envi:CommunicationProtocol — Communication protocol top Classes ToC
A protocol is an agreement between the communicating parties on how communication is to proceed. (Definition taken from "Tanenbaum, A. S. (2003). Computer networks, 4-th edition. ed: Prentice Hall.")
s4envi:CompassDirection — Compass direction top Classes ToC
The four cardinal directions or cardinal points are the directions of north, east, south, and west, commonly denoted by their initials: N, E, S, W. East and west are at right angles to north and south, with east being in the clockwise direction of rotation from north and west being directly opposite east. Intermediate points between the four cardinal directions form the points of the compass. (definition taken from https://en.wikipedia.org/wiki/Cardinal_direction)
s4envi:Device — Device top Classes ToC
A thing made or adapted for a particular purpose, especially a piece of mechanical or electronic equipment. For example ‘a measuring device’ (definition taken from https://en.oxforddictionaries.com/definition/device). In this ontology it refers to the devices for environmental purposes.
- has super-classes
-
s4envi:hasFrequencyMeasurement only
s4envi:FrequencyMeasurement
s4envi:hasTransmissionPeriod only s4envi:PeriodMeasurement
s4envi:isContainedIn only s4envi:PhysicalObject
saref:hasManufacturer only xsd:string
s4envi:hasRevisionNumber only xsd:string
s4envi:hasVersion only xsd:string
s4envi:hasRevisionNumber max 1 xsd:string
s4envi:hasVersion max 1 xsd:string
saref:Device
s4envi:System - has sub-classes
-
s4envi:Actuator
s4envi:Lamppost
s4envi:DigitalRepresentation — Digital representation top Classes ToC
A digital representation encapsulates a physical object accessible via Web services
- has super-classes
-
s4envi:encapsulates only
s4envi:PhysicalObject
s4envi:isAccesibleThrough only saref:Service
saref:hasDescription only xsd:string
s4envi:hasCreationDate only xsd:dateTime
s4envi:hasIdentifier only xsd:string
s4envi:hasTag only xsd:string
s4envi:hasCreationDate max 1 xsd:dateTime
s4envi:hasIdentifier max 1 xsd:string - is disjoint with
-
wgs84:SpatialThing
saref:Measurement
saref:UnitOfMeasure
s4envi:Color
s4envi:CommunicationInterface
s4envi:CommunicationProtocol
s4envi:CompassDirection
s4envi:Geometry
s4envi:Light
s4envi:FrequencyMeasurement — Frequency measurement top Classes ToC
Represents the measured value made over a frequency property. It is also linked to the frequency unit of measure in which the value is expressed and the timestamp of the measurement.
- has super-classes
-
saref:relatesToProperty value
s4envi:Frequency
saref:isMeasuredIn exactly 1 s4envi:FrequencyUnit
saref:Measurement
s4envi:FrequencyUnit — Frequency unit top Classes ToC
Unit of measure for the quantity frequency.
- has super-classes
- saref:UnitOfMeasure
- has members
- <http://www.wurvoc.org/vocabularies/om-1.8/hertz>, <http://www.wurvoc.org/vocabularies/om-1.8/reciprocal_day>, <http://www.wurvoc.org/vocabularies/om-1.8/reciprocal_hour>, <http://www.wurvoc.org/vocabularies/om-1.8/reciprocal_second-time>, <http://www.wurvoc.org/vocabularies/om-1.8/reciprocal_year>
s4envi:Geometry — Geometry top Classes ToC
Represents the shape of the light emission. It might be instantiated by individuals like "spherical", "cylindrical", etc. even though it is open to more comples representation of geometries using other vocabularies.
s4envi:HeightMeasurement — Height measurement top Classes ToC
Represents the measured value made over a height property. It is also linked to the height unit of measure in which the value is expressed and the timestamp of the measurement.
- has super-classes
-
saref:relatesToProperty value
s4envi:Height
saref:isMeasuredIn exactly 1 s4envi:LengthUnit
saref:Measurement
s4envi:Lamppost — Lamppost top Classes ToC
A tall pole with a light at the top.
- has super-classes
-
s4envi:hasLightPoint only
s4envi:LightPoint
s4envi:projectsLight only s4envi:Light
s4envi:hasShield only xsd:boolean
s4envi:Device
s4envi:LengthUnit — Length unit top Classes ToC
Unit of measure for the quantity lenght.
- has super-classes
- saref:UnitOfMeasure
- has members
- <http://www.wurvoc.org/vocabularies/om-1.8/centimetre>, <http://www.wurvoc.org/vocabularies/om-1.8/decametre>, <http://www.wurvoc.org/vocabularies/om-1.8/decimetre>, <http://www.wurvoc.org/vocabularies/om-1.8/hectometre>, <http://www.wurvoc.org/vocabularies/om-1.8/kilometre>, <http://www.wurvoc.org/vocabularies/om-1.8/metre>, <http://www.wurvoc.org/vocabularies/om-1.8/millimetre>
s4envi:Light — Light top Classes ToC
A light source, which may be a lantern, a street light, a floodlight, a signal lamp or any other device whose primary purpose is the generation of light. (Definition taken from http://wiki.openstreetmap.org/wiki/Proposed_features/Key:light_source#Description)
- has super-classes
-
s4envi:hasColor only
s4envi:Color
s4envi:hasGeometry only s4envi:Geometry
s4envi:isProjectedFromHeight only s4envi:HeightMeasurement
s4envi:isProjectedInDirection only s4envi:CompassDirection
s4envi:hasFlash only xsd:boolean
s4envi:hasProjectionAngle only xsd:float - is disjoint with
-
saref:Measurement
saref:Property
saref:Service
saref:UnitOfMeasure
s4envi:Color
s4envi:CommunicationInterface
s4envi:CommunicationProtocol
s4envi:CompassDirection
s4envi:DigitalRepresentation
s4envi:Geometry
s4envi:LightPoint — Light point top Classes ToC
An spatial point from where a light is projected. It might belong to a lamppost.
- has super-classes
-
wgs84:location only
wgs84:SpatialThing
s4envi:projectsLight only s4envi:Light
wgs84:Point
s4envi:LightProperty — Light property top Classes ToC
An aspect of light that can be observable by a sensor.
s4envi:PeriodMeasurement — Period measurement top Classes ToC
Represents the measured value over a period property. It is also linked to the period unit of measure in which the value is expressed and the timestamp of the measurement.
- has super-classes
-
saref:relatesToProperty value
s4envi:Period
saref:isMeasuredIn exactly 1 time:TemporalUnit
saref:Measurement
s4envi:Photometer — Photometer top Classes ToC
A photometer, generally, is an instrument that measures light intensity or optical properties of solutions or surfaces.
- has super-classes
-
saref:measuresProperty some
s4envi:LightProperty
saref:Sensor - has sub-classes
- s4envi:TESS
s4envi:PhysicalObject — Physical object top Classes ToC
Any Object that has a proper space region. (Definition extracted from DUL ontology)
- has super-classes
-
wgs84:location only
wgs84:SpatialThing
s4envi:contains only s4envi:PhysicalObject
s4envi:hasDigitalRepresentation only s4envi:DigitalRepresentation
s4envi:isContainedIn only s4envi:PhysicalObject
saref:hasDescription only xsd:string
wgs84:SpatialThing - has sub-classes
- s4envi:System
s4envi:System — System top Classes ToC
A group of related hardware units or programs or both, especially when dedicated to a single application. (Definition taken from https://en.oxforddictionaries.com/definition/system)
- has super-classes
-
s4envi:hasComponent only
s4envi:System
s4envi:isComponentOf only s4envi:System
s4envi:isConnectedTo only s4envi:System
s4envi:usesCommunicationInterface only s4envi:CommunicationInterface
s4envi:usesCommunicationProtocol only s4envi:CommunicationProtocol
s4envi:PhysicalObject - has sub-classes
- s4envi:Device
s4envi:TESS — TESS (Telescope Encoder and Sky Sensor) top Classes ToC
The Telescope Encoder and Sky Sensor (TESS) is a Sky Brightness and Cloud detector developed as a device for a remote observatory. A TESS can observe the light magnitude and other properties as ambient temperature and sky temperature.
- has super-classes
- s4envi:Photometer
Object Properties
- s4envi:affectsProperty
- s4envi:contains
- s4envi:encapsulates
- s4envi:hasColor
- s4envi:hasComponent
- s4envi:hasDigitalRepresentation
- s4envi:hasFrequencyMeasurement
- s4envi:hasGeometry
- s4envi:hasLightPoint
- s4envi:hasTransmissionPeriod
- s4envi:isAccesibleThrough
- s4envi:isComponentOf
- s4envi:isConnectedTo
- s4envi:isContainedIn
- s4envi:isProjectedFromHeight
- s4envi:isProjectedInDirection
- s4envi:projectsLight
- s4envi:usesCommunicationInterface
- s4envi:usesCommunicationProtocol
s4envi:affectsProperty — affects property top Object Properties ToC
A relation between an actuator with the property or properties it can act on
s4envi:contains — contains top Object Properties ToC
A relation between a physical object and the physical objects that can be contained in it.
- is inverse of
- s4envi:isContainedIn
s4envi:encapsulates — encapsulates top Object Properties ToC
A relation between a digital representation and the physical objects it represents.
- has characteristics
- functional
- is inverse of
- s4envi:hasDigitalRepresentation
s4envi:hasColor — has color top Object Properties ToC
A relation between a light emitted and its color.
s4envi:hasComponent — has component top Object Properties ToC
A relation between a system and the system in which it might be decomposed.
- has characteristics
- transitive
- is inverse of
- s4envi:isComponentOf
s4envi:hasDigitalRepresentation — has digital representation top Object Properties ToC
A relation between a physical object and the digital representation in which it is encapsulated.
- has characteristics
- inverse functional
- is inverse of
- s4envi:encapsulates
s4envi:hasFrequencyMeasurement — has frequency measurement top Object Properties ToC
The relation between a device and the frequency in which it makes measurements.
s4envi:hasGeometry — has geometry top Object Properties ToC
A relation between a light emitted and the shape it is projected in.
s4envi:hasLightPoint — has light point top Object Properties ToC
A relation between a lamppost and its light points
s4envi:hasTransmissionPeriod — has transmission period top Object Properties ToC
The relation between a device and the period in which it transmit information.
s4envi:isAccesibleThrough — is accesible through top Object Properties ToC
The relation between a digital representation and the service which it is accesible through.
- has characteristics
- functional
s4envi:isComponentOf — is component of top Object Properties ToC
A relation between a system and the system it belongs to as a component.
- has characteristics
- transitive
- is inverse of
- s4envi:hasComponent
s4envi:isConnectedTo — is connected to top Object Properties ToC
A relation between a system and the system to which it is connected.
- has characteristics
- symmetric
s4envi:isContainedIn — is contained in top Object Properties ToC
A relation between a physical object and the physical object in which it might be contained.
- is inverse of
- s4envi:contains
s4envi:isProjectedFromHeight — is projected from height top Object Properties ToC
A relation between a light and the height measurement from which it is projected.
s4envi:isProjectedInDirection — is projected in direction top Object Properties ToC
A relation between a light and the direction in which it is projected.
s4envi:projectsLight — projects light top Object Properties ToC
A relation between a lamppost or a light point and the light (or lights) they might project.
s4envi:usesCommunicationInterface — uses communication interface top Object Properties ToC
A relation between a system and the communication interface it uses.
s4envi:usesCommunicationProtocol — uses communication protocol top Object Properties ToC
A relation between a system and the communication protocol it uses.
Data Properties
s4envi:hasCreationDate — has creation date top Data Properties ToC
A relationship defining the creation date of an entity (e.g., a digital representation).
- has characteristics
- functional
- has range
- xsd:dateTime
s4envi:hasFlash — has flash top Data Properties ToC
A relationship stating whether a light has flash.
- has characteristics
- functional
- has range
- xsd:boolean
s4envi:hasIdentifier — has identifier top Data Properties ToC
A relationship providing the identifier of an entity (e.g., digital representation)
- has range
- xsd:string
s4envi:hasProjectionAngle — has projection angle top Data Properties ToC
A relationship defining the projection angle of an entity (e.g., a light).
- has characteristics
- functional
- has range
- xsd:float
s4envi:hasRevisionNumber — has revision number top Data Properties ToC
A relationship defining the revision number of a certain entity (e.g., a device)
- has range
- xsd:string
s4envi:hasShield — has shield top Data Properties ToC
A relationship stating whether a lamppost has a shield.
- has characteristics
- functional
- has range
- xsd:boolean
s4envi:hasTag — has tag top Data Properties ToC
A relationship stating the tags that can be assigned to an entity (e.g., a digital representation).
- has range
- xsd:string
s4envi:hasVersion — has version top Data Properties ToC
A relationship defining the version of a certain entity (e.g., a device)
- has characteristics
- functional
- has range
- xsd:string
Named Individuals
s4envi:Fluorescence — Fluorescence top Named Individuals ToC
An individual representing the light property fluorescence.
- belongs to
- s4envi:LightProperty
s4envi:Frequency — Frequency top Named Individuals ToC
An individual representing the property frequency.
- belongs to
- saref:Property
s4envi:Height — Height top Named Individuals ToC
An individual representing the property height.
- belongs to
- saref:Property
s4envi:Illuminance — Illuminance top Named Individuals ToC
An individual representing the light property illuminance.
- belongs to
- s4envi:LightProperty
s4envi:Irradiance — Irradiance top Named Individuals ToC
An individual representing the light property irradiance.
- belongs to
- s4envi:LightProperty
s4envi:LightAbsorption — Light absorption top Named Individuals ToC
An individual representing the light property light absorption.
- belongs to
- s4envi:LightProperty
s4envi:LightMagnitude — Light magnitude top Named Individuals ToC
An individual representing the light property light magnitude.
- belongs to
- s4envi:LightProperty
s4envi:Luminiscence — Luminiscence top Named Individuals ToC
An individual representing the light property luminiscence.
- belongs to
- s4envi:LightProperty
s4envi:Period — Period top Named Individuals ToC
An individual representing the property period.
- belongs to
- saref:Property
s4envi:Phosphorescence — Phosphorescence top Named Individuals ToC
An individual representing the light property phosphorescence.
- belongs to
- s4envi:LightProperty
s4envi:ReflectionOfLight — Reflection of light top Named Individuals ToC
An individual representing the light property reflection of light.
- belongs to
- s4envi:LightProperty
s4envi:ScatteringOfLight — Scattering of light top Named Individuals ToC
An individual representing the light property scattering of light.
- belongs to
- s4envi:LightProperty
References
Normative references
- [0] ETSI TS 103 410-2 (V1.1.2): "SmartM2M;; Extension to SAREF; Part 2: Environment Domain".
- [1] ETSI TS 103 264 (V3.1.1) (02-2020): "SmartM2M; Smart Applications; Reference Ontology and oneM2M Mapping".
Informative references
- [i.1] ETSI TR 103 411: "SmartM2M; Smart Appliances; SAREF extension investigation".
- [i.2] Zamorano, J., García, C., González, R, Gallego, J., Pascual, S., Tapia, C., Nievas, M., Sánchez, A., Cardiel, N. Deliverable D4.1: "Photometer sensor (prototype)". STARS4ALL project. March 30th, 2016.
- [i.3] "Variación espacial, temporal y espectral de la contaminación lumínica y sus fuentes: Metodología y resultados". Ph.D. thesis. Universidad Complutense de Madrid. February, 2015.
NOTE:
Available at http://eprints.ucm.es/31436/.
Acknowledgements
The editors would like to thank the ETSI SmartM2M technical committee for providing guidance and expertise.
Also, many thanks to the ETSI staff and all other current and former active Participants of the ETSI SmartM2M group for their support, technical input and suggestions that led to improvements to this ontology.
Also, special thanks goes to the ETSI SmartM2M Technical Officer Guillemin Patrick for his help.