Skip to content
Maxim Kolchin edited this page Mar 30, 2016 · 3 revisions

This is a starting page for the description of the ontology network used in the SemIoT Platform.

Concepts

  • Actuator (san:Actuator)
  • Sensor (ssn:Sensor)
  • Property (ssn:Property)
  • Feature Of Interest (ssn:FeatureOfInterest)
  • State (semiot:State)
    • a device can be only in one state in any particular moment
    • only two states are supported: "Powered On" and "Powered Off"
  • Operation (semiot:Operation)
    • some process which a device performs
    • at any moment a device performs an Operation or is in "Powered Off" state
    • There are several operation types (aka sub classes of semiot:Operation)
      • Actuation Operation
      • Sensing Operation
      • etc.
    • может иметь параметры. Пример: (а) уровень яркости свечения лампочки; (б) перекачивание воды насосом со скоростью N; (в) охлаждение/нагрев кондиционером до температуры N.
  • Execution Plan/Workflow
    • продолжительная процедура
    • прописывает последовательный переход устройства из одного состояния в другое
    • например: программа стирки в стиральной машине

Examples of RDF Descriptions

The list of examples:

  1. A weather station
  2. A lamp
  3. A lamp with controlled brightness
  4. An electric meter
  5. A water meter
  6. A traffic light
  7. A washing machine

Prefixes

Below are the prefixes used in the example descriptions.

@prefix : <http://example.com/prototypes/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix ssn: <http://purl.oclc.org/NET/ssnx/ssn#> .
@prefix dul: <http://www.loa-cnr.it/ontologies/DUL.owl#> .
@prefix qudt-quantity: <http://qudt.org/vocab/quantity#> .
@prefix qudt-unit: <http://qudt.org/vocab/unit#> .
@prefix qudt: <http://qudt.org/schema/qudt#> .
@prefix proto: <http://w3id.org/semiot/ontologies/proto#> .

Clone this wiki locally