Commit 0ae51c4e authored by Raul Garcia-Castro's avatar Raul Garcia-Castro
Browse files

Merge branch 'issue-7' into 'master'

Included relationships between devices and features of interest

Closes #7

See merge request stf/stf-566/saref4watr!1
parents e6bcd2cc 1906abed
Loading
Loading
Loading
Loading
+1 −1

File changed.

Preview size limit exceeded, changes collapsed.

+42 −0
Original line number Diff line number Diff line
@@ -11,6 +11,7 @@
@prefix time: <http://www.w3.org/2006/time#> .
@prefix geosp: <http://www.opengis.net/ont/geosparql#> .
@prefix sf: <http://www.opengis.net/ont/sf#> .
@prefix schema: <http://schema.org/> .
@prefix s4watr: <https://saref.etsi.org/saref4watr/> .
@base <https://saref.etsi.org/saref4watr/> .

@@ -26,6 +27,15 @@
                                      vann:preferredNamespacePrefix "s4watr" ;
                                      vann:preferredNamespaceUri "https://saref.etsi.org/saref4watr/" .


<http://www.garcia-castro.com/foaf.rdf#me> a schema:Person;
                                           schema:givenName "Raúl" ;
                                           schema:familyName "García-Castro" ;
                                           schema:affiliation  <https://www.upm.es/> .
<https://www.upm.es/> a schema:Organization ;
                      schema:name "Universidad Politécnica de Madrid" .


#################################################################
#    Annotation properties
#################################################################
@@ -154,6 +164,30 @@ s4watr:appliesTo rdf:type owl:ObjectProperty ;
                 rdfs:label "applies to"@en .


###  https://saref.etsi.org/saref4watr/controlsFeature
s4watr:controlsFeature rdf:type owl:ObjectProperty ;
                       rdfs:domain saref:Device ;
                       rdfs:range saref:FeatureOfInterest ;
                       rdfs:comment "A relationship specifying the features of interest that are controlled by a device."@en ;
                       rdfs:label "controls feature"@en .


###  https://saref.etsi.org/saref4watr/featureIsControlledByDevice
s4watr:featureIsControlledByDevice rdf:type owl:ObjectProperty ;
                                   rdfs:domain saref:FeatureOfInterest ;
                                   rdfs:range saref:Device ;
                                   rdfs:comment "A relationship specifying the devices that control a feature of interest."@en ;
                                   rdfs:label "feature is controlled by device"@en .


###  https://saref.etsi.org/saref4watr/featureIsMeasuredByDevice
s4watr:featureIsMeasuredByDevice rdf:type owl:ObjectProperty ;
                                 rdfs:domain saref:FeatureOfInterest ;
                                 rdfs:range saref:Device ;
                                 rdfs:comment "A relationship specifying the devices that measure a feature of interest."@en ;
                                 rdfs:label "feature is measured by device"@en .


###  https://saref.etsi.org/saref4watr/forAbsoluteTimeAtDay
s4watr:forAbsoluteTimeAtDay rdf:type owl:ObjectProperty ;
                            rdfs:domain s4watr:TimeBasedTariff ;
@@ -214,6 +248,14 @@ s4watr:isIntendedFor rdf:type owl:ObjectProperty ;
                     rdfs:label "is intended for"@en .


###  https://saref.etsi.org/saref4watr/measuresFeature
s4watr:measuresFeature rdf:type owl:ObjectProperty ;
                       rdfs:domain saref:Device ;
                       rdfs:range saref:FeatureOfInterest ;
                       rdfs:comment "A relationship specifying the features of interest that are measured by a device."@en ;
                       rdfs:label "measures feature"@en .


###  https://saref.etsi.org/core/controlsProperty
saref:controlsProperty rdf:type owl:ObjectProperty ;
                       rdfs:isDefinedBy <https://saref.etsi.org/core/> ;