saref4agri.ttl 31.4 KB
Newer Older
María's avatar
María committed
@prefix : <https://w3id.org/def/saref4bldg#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix cpsv: <http://purl.org/vocab/cpsv#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix time: <http://www.w3.org/2006/time#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix geosp: <http://www.opengis.net/ont/geosparql#> .
@prefix saref: <https://w3id.org/saref#> .
@prefix s4agri: <https://w3id.org/def/saref4agri#> .
@prefix s4city: <https://w3id.org/def/saref4city#> .
@prefix dcterms: <http://purl.org/dc/terms/> .

<https://w3id.org/def/saref4agri> a owl:Ontology ;
	owl:versionIRI <https://w3id.org/def/v1/saref4agri> ;
María's avatar
María committed
	owl:imports <http://w3id.org/def/saref4agri> ;
	owl:versionInfo "0.3"^^xsd:decimal ;
María's avatar
María committed
	dc:contributor <http://w3id.org/people/mpoveda> ;
	vann:preferredNamespaceUri "https://w3id.org/def/saref4agri#" ;
	vann:preferredNamespacePrefix "s4agri" ;
	dcterms:license <http://purl.org/NET/rdflicense/cc-by4.0> ;
	dc:title "SAREF extension for Agriculture"@en ;
	dc:description "This ontology extends the SAREF ontology for the Agricultural domain. This work has been developed in the context of the STF 534 (https://portal.etsi.org/STF/STFs/STFHomePages/STF534.aspx), which was established with the goal to create three SAREF extensions, one of them for the Agricultural domain."@en .
# 
# 
# #################################################################
# #
# #    Annotation properties
# #
# #################################################################
María's avatar
María committed
# 
# 
# http://purl.org/dc/elements/1.1/contributor

dc:contributor a owl:AnnotationProperty .
# 
# http://purl.org/dc/elements/1.1/creator

dc:creator a owl:AnnotationProperty .
# 
# http://purl.org/dc/elements/1.1/date

dc:date a owl:AnnotationProperty .
# 
# http://purl.org/dc/elements/1.1/description

dc:description a owl:AnnotationProperty .
# 
# http://purl.org/dc/elements/1.1/title

dc:title a owl:AnnotationProperty .
# 
# http://purl.org/vocab/vann/preferredNamespacePrefix

vann:preferredNamespacePrefix a owl:AnnotationProperty .
# 
# http://purl.org/vocab/vann/preferredNamespaceUri

vann:preferredNamespaceUri a owl:AnnotationProperty .
# 
# http://www.w3.org/2003/01/geo/wgs84_pos#alt

geo:alt a owl:AnnotationProperty ;
	rdfs:comment "The WGS84 altitude of a SpatialThing (decimal meters above the local reference ellipsoid)." ;
	rdfs:label "altitude" ;
	rdfs:domain geo:SpatialThing .
# 
# http://www.w3.org/2003/01/geo/wgs84_pos#lat

geo:lat a owl:AnnotationProperty ;
	rdfs:comment "The WGS84 latitude of a SpatialThing (decimal degrees)." ;
	rdfs:label "latitude" ;
	rdfs:domain geo:SpatialThing .
# 
# http://www.w3.org/2003/01/geo/wgs84_pos#location

geo:location a owl:AnnotationProperty ;
	rdfs:subPropertyOf <http://xmlns.com/foaf/0.1/based_near> .
# 
# http://www.w3.org/2003/01/geo/wgs84_pos#long

geo:long a owl:AnnotationProperty ;
	rdfs:comment "The WGS84 longitude of a SpatialThing (decimal degrees)." ;
	rdfs:label "longitude" ;
	rdfs:domain geo:SpatialThing .
# 
# http://www.w3.org/2004/02/skos/core#definition

<http://www.w3.org/2004/02/skos/core#definition> a owl:AnnotationProperty .
# 
# http://www.w3.org/2004/02/skos/core#prefLabel

<http://www.w3.org/2004/02/skos/core#prefLabel> a owl:AnnotationProperty .
# 
# http://www.w3.org/ns/prov#hadPrimarySource

prov:hadPrimarySource a owl:AnnotationProperty .
# 
# http://xmlns.com/foaf/0.1/based_near

<http://xmlns.com/foaf/0.1/based_near> a owl:AnnotationProperty .
# 
# 
# 
# #################################################################
# #
# #    Datatypes
# #
# #################################################################
# 
# 
# http://www.w3.org/2001/XMLSchema#date

xsd:date a rdfs:Datatype .
# 
# http://www.w3.org/2001/XMLSchema#duration

xsd:duration a rdfs:Datatype .
# 
# 
# 
# #################################################################
# #
# #    Object Properties
# #
# #################################################################
# 
# 
# http://www.opengis.net/ont/geosparql#hasGeometry

geosp:hasGeometry a owl:ObjectProperty ;
	rdfs:domain geosp:Feature ;
	rdfs:range geosp:Geometry ;
	rdfs:comment "A spatial representation for a given feature."@en ;
	rdfs:isDefinedBy <http://www.opengis.net/ont/geosparql#> ;
	rdfs:label "has geometry"@en .
# 
# http://www.opengis.net/ont/geosparql#sfContains

geosp:sfContains a owl:ObjectProperty ;
	rdfs:domain geosp:SpatialObject ;
	rdfs:range geosp:SpatialObject ;
	rdfs:comment "Exists if the subject SpatialObject spatially contains the object SpatialObject. DE-9IM: T*****FF*"@en ;
	rdfs:isDefinedBy <http://www.opengis.net/ont/geosparql> , <http://www.opengis.net/spec/geosparql/1.0> ;
	rdfs:label "contains"@en .
# 
# http://www.opengis.net/ont/geosparql#sfWithin

geosp:sfWithin a owl:ObjectProperty ;
	rdfs:domain geosp:SpatialObject ;
	rdfs:range geosp:SpatialObject ;
	rdfs:comment "Exists if the subject SpatialObject is spatially within the object SpatialObject. DE-9IM: T*F**F***"@en ;
	rdfs:isDefinedBy <http://www.opengis.net/ont/geosparql> , <http://www.opengis.net/spec/geosparql/1.0> ;
	rdfs:label "within"@en .
# 
# http://www.w3.org/2003/01/geo/wgs84_pos#location

geo:location a owl:ObjectProperty .
# 
María's avatar
María committed
# http://www.w3.org/ns/sosa/hosts
María's avatar
María committed

María's avatar
María committed
<http://www.w3.org/ns/sosa/hosts> a owl:ObjectProperty ;
	owl:inverseOf <http://www.w3.org/ns/sosa/isHostedBy> ;
	rdfs:comment "Relation between a platform and the systems it hosts."@en ;
	rdfs:isDefinedBy <http://www.w3.org/ns/sosa/> ;
	rdfs:label "host"@en .
# 
# http://www.w3.org/ns/sosa/isHostedBy

<http://www.w3.org/ns/sosa/isHostedBy> a owl:ObjectProperty ;
	rdfs:comment "Relation between a system and its hosting platform."@en ;
	rdfs:isDefinedBy <http://www.w3.org/ns/sosa/> ;
	rdfs:label "is hosted by"@en .
# 
# http://www.w3.org/ns/ssn/deployedOnPlatform

<http://www.w3.org/ns/ssn/deployedOnPlatform> a owl:ObjectProperty ;
	owl:inverseOf <http://www.w3.org/ns/ssn/inDeployment> ;
María's avatar
María committed
	rdfs:comment "Relation between a deployment and the platform(s) involved in the deployment."@en ;
María's avatar
María committed
	rdfs:isDefinedBy <http://www.w3.org/ns/ssn/> ;
María's avatar
María committed
	rdfs:label "deployed on platform"@en .
# 
María's avatar
María committed
# http://www.w3.org/ns/ssn/deployedSystem
María's avatar
María committed

María's avatar
María committed
<http://www.w3.org/ns/ssn/deployedSystem> a owl:ObjectProperty ;
	owl:inverseOf <http://www.w3.org/ns/ssn/hasDeployment> ;
María's avatar
María committed
	rdfs:comment "Relation between a deployment and the system deployed."@en ;
María's avatar
María committed
	rdfs:isDefinedBy <http://www.w3.org/ns/ssn/> ;
María's avatar
María committed
	rdfs:label "deployed system"@en .
# 
María's avatar
María committed
# http://www.w3.org/ns/ssn/hasDeployment

<http://www.w3.org/ns/ssn/hasDeployment> a owl:ObjectProperty ;
	rdfs:isDefinedBy <http://www.w3.org/ns/ssn/> ;
	rdfs:label "has deployment"@en .
# 
María's avatar
María committed
# http://www.w3.org/ns/ssn/hasSubSystem

<http://www.w3.org/ns/ssn/hasSubSystem> a owl:ObjectProperty ;
	rdfs:isDefinedBy <http://www.w3.org/ns/ssn/> ;
	rdfs:label "has subsystem"@en .
# 
María's avatar
María committed
# http://www.w3.org/ns/ssn/inDeployment

<http://www.w3.org/ns/ssn/inDeployment> a owl:ObjectProperty ;
	rdfs:comment "Relation between a platform and the deployment(s) that takes place in the platform."@en ;
	rdfs:isDefinedBy <http://www.w3.org/ns/ssn/> ;
	rdfs:label "in deployment"@en .
# 
# https://w3id.org/def/saref4agri#hasDeploymentPeriod

s4agri:hasDeploymentPeriod a owl:ObjectProperty ;
María's avatar
María committed
	rdfs:comment "Relation to indicate the temporal duration or period of a deployment."@en , "has deployment period"@en .
# 
# https://w3id.org/def/saref4agri#isDeployedAtSpace

s4agri:isDeployedAtSpace a owl:ObjectProperty ;
María's avatar
María committed
	rdfs:comment "Relation to indicate the geographical componet of a deployment."@en , "is deployed at space"@en .
María's avatar
María committed
# https://w3id.org/saref#accomplishes

saref:accomplishes a owl:ObjectProperty ;
	owl:inverseOf saref:isAccomplishedBy ;
	rdfs:comment "A relationship between a certain entity (e.g., a device) and the task it accomplishes"^^xsd:string ;
	rdfs:isDefinedBy <https://w3id.org/saref#> ;
María's avatar
María committed
	rdfs:label "accomplishes"^^xsd:string .
# 
# https://w3id.org/saref#actsUpon

saref:actsUpon a owl:ObjectProperty ;
	rdfs:comment "A relationship between a command and a state"^^xsd:string ;
	rdfs:isDefinedBy <https://w3id.org/saref#> ;
María's avatar
María committed
	rdfs:label "acts upon"^^xsd:string .
# 
# https://w3id.org/saref#controlsProperty

saref:controlsProperty a owl:ObjectProperty ;
	rdfs:isDefinedBy <https://w3id.org/saref#> ;
María's avatar
María committed
	rdfs:label "controls property"@en .
# 
# https://w3id.org/saref#hasCommand

saref:hasCommand a owl:ObjectProperty ;
	owl:inverseOf saref:isCommandOf ;
	rdfs:comment "A relationship between an entity (such as a function) and a command"^^xsd:string ;
	rdfs:isDefinedBy <https://w3id.org/saref#> ;
María's avatar
María committed
	rdfs:label "has command"^^xsd:string .
# 
# https://w3id.org/saref#hasFeatureOfInterest

saref:hasFeatureOfInterest a owl:ObjectProperty ;
	owl:inverseOf saref:isFeatureOfInterestOf ;
	rdfs:comment "Relation between a measurement and the feature of interest being measured."@en ;
	rdfs:isDefinedBy <https://w3id.org/saref#> ;
	rdfs:label "has feature of interest"@en .
# 
María's avatar
María committed
# https://w3id.org/saref#hasFunction

saref:hasFunction a owl:ObjectProperty ;
	rdfs:comment "A relationship identifying the type of function of a device"^^xsd:string ;
	rdfs:isDefinedBy <https://w3id.org/saref#> ;
María's avatar
María committed
	rdfs:label "has function"^^xsd:string .
# 
# https://w3id.org/saref#hasProperty

saref:hasProperty a owl:ObjectProperty ;
	owl:inverseOf saref:isPropertyOf ;
	rdfs:comment "Relation between a feature of interest and its properties."@en ;
	rdfs:isDefinedBy <https://w3id.org/saref#> ;
	rdfs:label "has property"@en .
# 
# https://w3id.org/saref#hasState

saref:hasState a owl:ObjectProperty ;
	rdfs:isDefinedBy <https://w3id.org/saref#> ;
	rdfs:label "has state"@en .
# 
María's avatar
María committed
# https://w3id.org/saref#isAccomplishedBy

saref:isAccomplishedBy a owl:ObjectProperty ;
	rdfs:comment "A relationship indentifying the task accomplished by a certain entity (e.g., a device)"^^xsd:string ;
	rdfs:isDefinedBy <https://w3id.org/saref#> ;
María's avatar
María committed
	rdfs:label "is accomplished by"^^xsd:string .
# 
# https://w3id.org/saref#isCommandOf

saref:isCommandOf a owl:ObjectProperty ;
	rdfs:comment "A relationship between a command and a function."^^xsd:string ;
	rdfs:isDefinedBy <https://w3id.org/saref#> ;
María's avatar
María committed
	rdfs:label "is command of"^^xsd:string .
# 
# https://w3id.org/saref#isControlledByDevice

saref:isControlledByDevice a owl:ObjectProperty ;
	rdfs:isDefinedBy <https://w3id.org/saref#> ;
	rdfs:label "is controlled by device"@en .
# 
# https://w3id.org/saref#isFeatureOfInterestOf

saref:isFeatureOfInterestOf a owl:ObjectProperty ;
	rdfs:comment "Relation betwwen a feature of interest and the measurments that are about it."@en ;
	rdfs:isDefinedBy <https://w3id.org/saref#> ;
	rdfs:label "is feature of interest of"@en .
# 
María's avatar
María committed
# https://w3id.org/saref#isMeasuredByDevice

saref:isMeasuredByDevice a owl:ObjectProperty ;
	rdfs:isDefinedBy <https://w3id.org/saref#> ;
	rdfs:label "is measured by device"@en .
# 
# https://w3id.org/saref#isMeasuredIn

saref:isMeasuredIn a owl:ObjectProperty ;
	rdfs:isDefinedBy <https://w3id.org/saref#> ;
	rdfs:label "is measured in"@en .
# 
# https://w3id.org/saref#isPropertyOf

saref:isPropertyOf a owl:ObjectProperty ;
	rdfs:comment "Relation between a property and a feature of interest in which such property appears."@en ;
	rdfs:isDefinedBy <https://w3id.org/saref#> ;
	rdfs:label "is property of"@en .
# 
María's avatar
María committed
# https://w3id.org/saref#makesMeasurement

saref:makesMeasurement a owl:ObjectProperty ;
	owl:inverseOf saref:measurementMadeBy ;
María's avatar
María committed
	rdfs:isDefinedBy <https://w3id.org/saref#> ;
	rdfs:label "makes measurement"@en .
# 
# https://w3id.org/saref#measurementMadeBy

saref:measurementMadeBy a owl:ObjectProperty ;
	rdfs:comment "Relation between a measurement and the device that made it."@en ;
	rdfs:isDefinedBy <https://w3id.org/saref#> ;
	rdfs:label "measurement made by"@en .
# 
María's avatar
María committed
# https://w3id.org/saref#measuresProperty

saref:measuresProperty a owl:ObjectProperty ;
	rdfs:isDefinedBy <https://w3id.org/saref#> ;
	rdfs:label "measures property"@en .
# 
# https://w3id.org/saref#relatesToMeasurement

saref:relatesToMeasurement a owl:ObjectProperty ;
	rdfs:isDefinedBy <https://w3id.org/saref#> ;
	rdfs:label "relates to measurement"@en .
# 
# https://w3id.org/saref#relatesToProperty

saref:relatesToProperty a owl:ObjectProperty ;
	rdfs:isDefinedBy <https://w3id.org/saref#> ;
	rdfs:label "relates to property"@en .
# 
# 
# 
# #################################################################
# #
# #    Data properties
# #
# #################################################################
# 
# 
# https://w3id.org/saref#hasDescription
María's avatar
María committed

saref:hasDescription a owl:DatatypeProperty ;
	rdfs:range xsd:string ;
	rdfs:comment "A relationship providing a description of an entity (e.g., device)"^^xsd:string ;
	rdfs:isDefinedBy <https://w3id.org/saref#> ;
	rdfs:label "has description"@en .
María's avatar
María committed
# 
# https://w3id.org/saref#hasManufacturer
María's avatar
María committed

saref:hasManufacturer a owl:DatatypeProperty ;
	rdfs:range xsd:string ;
	rdfs:comment "A relationship identifying the manufacturer of an entity (e.g., device)"^^xsd:string ;
	rdfs:isDefinedBy <https://w3id.org/saref#> ;
	rdfs:label "has manufacturer"^^xsd:string .
María's avatar
María committed
# 
# https://w3id.org/saref#hasModel
María's avatar
María committed

saref:hasModel a owl:DatatypeProperty ;
	rdfs:range xsd:string ;
	rdfs:comment "A relationship identifying the model of an entity (e.g., device)"^^xsd:string ;
María's avatar
María committed
	rdfs:isDefinedBy <https://w3id.org/saref#> ;
	rdfs:label "has model"^^xsd:string .
María's avatar
María committed
# 
# https://w3id.org/saref#hasName

saref:hasName a owl:DatatypeProperty ;
	rdfs:isDefinedBy <https://w3id.org/saref#> ;
	rdfs:label "has name"@en .
# 
# https://w3id.org/saref#hasTimestamp

saref:hasTimestamp a owl:DatatypeProperty ;
	rdfs:isDefinedBy <https://w3id.org/saref#> ;
	rdfs:label "has timestamp"@en .
# 
# https://w3id.org/saref#hasValue

saref:hasValue a owl:DatatypeProperty ;
	rdfs:isDefinedBy <https://w3id.org/saref#> ;
	rdfs:label "has value"@en .
# 
# 
# 
# #################################################################
# #
# #    Classes
# #
# #################################################################
# 
# 
# http://www.opengis.net/ont/geosparql#Feature

geosp:Feature a owl:Class ;
	rdfs:subClassOf geosp:SpatialObject , _:genid1 .

_:genid1 a owl:Restriction ;
	owl:onProperty geosp:hasGeometry ;
	owl:allValuesFrom geosp:Geometry .

geosp:Feature owl:disjointWith geosp:Geometry ;
	rdfs:comment "This class represents the top-level feature type. This class is equivalent to GFI_Feature defined in ISO 19156:2011, and it is superclass of all feature types."@en ;
	rdfs:isDefinedBy <http://www.opengis.net/ont/geosparql> , <http://www.opengis.net/ont/gml> ;
	rdfs:label "Feature"@en .
# 
# http://www.opengis.net/ont/geosparql#Geometry

geosp:Geometry a owl:Class ;
	rdfs:subClassOf geosp:SpatialObject ;
	rdfs:comment "The class represents the top-level geometry type. This class is equivalent to the UML class GM_Object defined in ISO 19107, and it is superclass of all geometry types."@en ;
	rdfs:isDefinedBy <http://www.opengis.net/ont/geosparql> ;
	rdfs:label "Geometry"@en .
# 
# http://www.opengis.net/ont/geosparql#SpatialObject

geosp:SpatialObject a owl:Class ;
	rdfs:subClassOf _:genid2 .

_:genid2 a owl:Restriction ;
	owl:onProperty geosp:sfContains ;
	owl:allValuesFrom geosp:SpatialObject .

geosp:SpatialObject rdfs:subClassOf _:genid3 .

_:genid3 a owl:Restriction ;
	owl:onProperty geo:location ;
	owl:allValuesFrom geo:Point .

geosp:SpatialObject rdfs:comment "The class spatial-object represents everything that can have a spatial representation. It is superclass of feature and geometry."@en ;
	rdfs:isDefinedBy <http://www.opengis.net/ont/geosparql> ;
	rdfs:label "SpatialObject"@en .
# 
# http://www.w3.org/2003/01/geo/wgs84_pos#Point

geo:Point a owl:Class ;
	rdfs:subClassOf geosp:Geometry ;
	rdfs:comment """ 
Uniquely identified by lat/long/alt. i.e.

spaciallyIntersects(P1, P2) :- lat(P1, LAT), long(P1, LONG), alt(P1, ALT),
  lat(P2, LAT), long(P2, LONG), alt(P2, ALT).

sameThing(P1, P2) :- type(P1, Point), type(P2, Point), spaciallyIntersects(P1, P2).
  """ , "A point, typically described using a coordinate system relative to Earth, such as WGS84." ;
	rdfs:isDefinedBy <http://www.w3.org/2003/01/geo/wgs84_pos#> ;
	rdfs:label "Point"@en , "point" .
# 
# http://www.w3.org/2006/time#Instant

time:Instant a owl:Class ;
	rdfs:subClassOf time:TemporalEntity ;
	rdfs:comment "A temporal entity with zero extent or duration"@en ;
	rdfs:isDefinedBy <http://www.w3.org/2006/time#> ;
	rdfs:label "Instant"@en .
# 
# http://www.w3.org/2006/time#Interval

time:Interval a owl:Class ;
	rdfs:subClassOf time:TemporalEntity ;
	rdfs:isDefinedBy <http://www.w3.org/2006/time#> ;
	rdfs:label "A temporal entity with an extent or duration"@en , "Time interval"@en .
# 
María's avatar
María committed
# http://www.w3.org/2006/time#TemporalEntity

time:TemporalEntity a owl:Class ;
	rdfs:comment "A temporal interval or instant."@en ;
	rdfs:isDefinedBy <http://www.w3.org/2006/time#> ;
	rdfs:label "Temporal entity"@en .
# 
María's avatar
María committed
# http://www.w3.org/ns/sosa/Platform
María's avatar
María committed

María's avatar
María committed
<http://www.w3.org/ns/sosa/Platform> a owl:Class ;
María's avatar
María committed
	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 ;
María's avatar
María committed
	rdfs:isDefinedBy <http://www.w3.org/ns/sosa/> ;
	rdfs:label "Platform"@en .
María's avatar
María committed
# http://www.w3.org/ns/ssn/Deployment
María's avatar
María committed

María's avatar
María committed
<http://www.w3.org/ns/ssn/Deployment> a owl:Class ;
	rdfs:isDefinedBy <http://www.w3.org/ns/ssn/> ;
	rdfs:label "Deployment"@en .
María's avatar
María committed
# 
María's avatar
María committed
# http://www.w3.org/ns/ssn/System
María's avatar
María committed

María's avatar
María committed
<http://www.w3.org/ns/ssn/System> a owl:Class ;
María's avatar
María committed
	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 ;
María's avatar
María committed
	rdfs:isDefinedBy <http://www.w3.org/ns/ssn/> ;
María's avatar
María committed
	rdfs:label "System"@en .
María's avatar
María committed
# 
María's avatar
María committed
# https://w3id.org/def/saref4agri#Deployment

s4agri:Deployment a owl:Class ;
	rdfs:subClassOf <http://www.w3.org/ns/ssn/Deployment> , _:genid4 .
María's avatar
María committed

_:genid4 a owl:Restriction ;
María's avatar
María committed
	owl:onProperty <http://www.w3.org/ns/ssn/deployedOnPlatform> ;
	owl:someValuesFrom <http://www.w3.org/ns/sosa/Platform> .

s4agri:Deployment rdfs:subClassOf _:genid5 .
María's avatar
María committed

_:genid5 a owl:Restriction ;
María's avatar
María committed
	owl:onProperty <http://www.w3.org/ns/ssn/deployedSystem> ;
	owl:someValuesFrom <http://www.w3.org/ns/ssn/System> .

s4agri:Deployment rdfs:subClassOf _:genid6 .
María's avatar
María committed

_:genid6 a owl:Restriction ;
María's avatar
María committed
	owl:onProperty s4agri:hasDeploymentPeriod ;
	owl:someValuesFrom time:TemporalEntity .

s4agri:Deployment rdfs:subClassOf _:genid7 .
María's avatar
María committed

_:genid7 a owl:Restriction ;
María's avatar
María committed
	owl:onProperty s4agri:isDeployedAtSpace ;
	owl:someValuesFrom geosp:SpatialObject .

s4agri:Deployment rdfs:comment "Deployment"@en , "The scenario, including temporal and spatial information, in which the systems and devices are installed."@en .
# 
María's avatar
María committed
# https://w3id.org/def/saref4agri#Pluviometer

s4agri:Pluviometer a owl:Class ;
	rdfs:subClassOf saref:Sensor ;
	rdfs:label "A sensor that measures the rain fall."@en , "Pluviometer"@en .
# 
# https://w3id.org/def/saref4agri#SoilTensiometer

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

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

s4agri:WeatherStation a owl:Class ;
	rdfs:subClassOf saref:Sensor ;
	rdfs:label "A sensor o system that measure weather conditions."@en , "Weather station"@en .
# 
# https://w3id.org/saref#Actuator

saref:Actuator a owl:Class ;
	rdfs:subClassOf saref:Device ;
	rdfs:isDefinedBy <https://w3id.org/saref#> ;
	rdfs:label "Actuator"@en .
# 
María's avatar
María committed
# https://w3id.org/saref#Command

saref:Command a owl:Class ;
	rdfs:subClassOf _:genid8 .
María's avatar
María committed

_:genid8 a owl:Restriction ;
María's avatar
María committed
	owl:onProperty saref:actsUpon ;
	owl:allValuesFrom saref:State .

saref:Command rdfs:subClassOf _:genid9 .
María's avatar
María committed

_:genid9 a owl:Restriction ;
María's avatar
María committed
	owl:onProperty saref:isCommandOf ;
	owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
	owl:onClass saref:Function .

saref:Command rdfs:subClassOf _:genid10 .
María's avatar
María committed

_:genid10 a owl:Restriction ;
María's avatar
María committed
	owl:onProperty saref:hasDescription ;
	owl:maxCardinality "1"^^xsd:nonNegativeInteger .

saref:Command 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."^^xsd:string ;
	rdfs:label "Command"^^xsd:string .
# 
# https://w3id.org/saref#Device

saref:Device a owl:Class ;
María's avatar
María committed
	rdfs:subClassOf <http://www.w3.org/ns/ssn/System> ;
	rdfs:isDefinedBy <https://w3id.org/saref#> ;
	rdfs:label "Device"@en .
María's avatar
María committed
# 
# https://w3id.org/saref#FeatureOfInterest

saref:FeatureOfInterest a owl:Class ;
	rdfs:subClassOf _:genid11 .
_:genid11 a owl:Restriction ;
	owl:onProperty saref:hasProperty ;
	owl:allValuesFrom saref:Property .

saref:FeatureOfInterest rdfs:subClassOf _:genid12 .
_:genid12 a owl:Restriction ;
	owl:onProperty saref:isFeatureOfInterestOf ;
	owl:allValuesFrom saref:Measurement .

saref:FeatureOfInterest rdfs:comment <https://w3id.org/saref#> ;
	rdfs:label "Feature of interest"@en .
# 
María's avatar
María committed
# https://w3id.org/saref#Function

saref:Function a owl:Class ;
	rdfs:subClassOf _:genid13 .
María's avatar
María committed

_:genid13 a owl:Restriction ;
María's avatar
María committed
	owl:onProperty saref:hasCommand ;
	owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
	owl:onClass saref:Command .

saref:Function 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. "^^xsd:string ;
	rdfs:label "Function"^^xsd:string .
# 
# https://w3id.org/saref#Humidity

saref:Humidity a owl:Class ;
	rdfs:subClassOf 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"^^xsd:string ;
	rdfs:label "Humidity"^^xsd:string .
# 
# https://w3id.org/saref#Measurement

saref:Measurement a owl:Class ;
	rdfs:subClassOf _:genid14 .
María's avatar
María committed

_:genid14 a owl:Restriction ;
	owl:onProperty saref:hasFeatureOfInterest ;
	owl:allValuesFrom saref:FeatureOfInterest .
María's avatar
María committed

saref:Measurement rdfs:subClassOf _:genid15 .
María's avatar
María committed

_:genid15 a owl:Restriction ;
María's avatar
María committed
	owl:onProperty saref:isMeasuredIn ;
	owl:allValuesFrom saref:UnitOfMeasure .

saref:Measurement rdfs:subClassOf _:genid16 .
María's avatar
María committed

_:genid16 a owl:Restriction ;
María's avatar
María committed
	owl:onProperty saref:relatesToProperty ;
	owl:allValuesFrom saref:Property .

saref:Measurement rdfs:subClassOf _:genid17 .
María's avatar
María committed

_:genid17 a owl:Restriction ;
María's avatar
María committed
	owl:onProperty saref:isMeasuredIn ;
	owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
	owl:onClass saref:UnitOfMeasure .

saref:Measurement rdfs:subClassOf _:genid18 .
María's avatar
María committed

_:genid18 a owl:Restriction ;
María's avatar
María committed
	owl:onProperty saref:relatesToProperty ;
	owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
	owl:onClass saref:Property .

saref:Measurement rdfs:subClassOf _:genid19 .
María's avatar
María committed

_:genid19 a owl:Restriction ;
María's avatar
María committed
	owl:onProperty saref:hasTimestamp ;
	owl:allValuesFrom xsd:dateTime .

saref:Measurement rdfs:subClassOf _:genid20 .
María's avatar
María committed

_:genid20 a owl:Restriction ;
María's avatar
María committed
	owl:onProperty saref:hasValue ;
	owl:cardinality "1"^^xsd:nonNegativeInteger .

saref:Measurement rdfs:subClassOf _:genid21 .
María's avatar
María committed

_:genid21 a owl:Restriction ;
María's avatar
María committed
	owl:onProperty saref:hasValue ;
	owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
	owl:onDataRange xsd:float .

saref:Measurement owl:disjointWith saref:Property , 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

saref:Property a owl:Class ;
	rdfs:subClassOf _:genid22 .
María's avatar
María committed

_:genid22 a owl:Restriction ;
	owl:onProperty saref:isControlledByDevice ;
	owl:allValuesFrom saref:Device .
María's avatar
María committed

saref:Property rdfs:subClassOf _:genid23 .
María's avatar
María committed

_:genid23 a owl:Restriction ;
	owl:onProperty saref:isMeasuredByDevice ;
María's avatar
María committed
	owl:allValuesFrom saref:Device .

saref:Property rdfs:subClassOf _:genid24 .
María's avatar
María committed

_:genid24 a owl:Restriction ;
	owl:onProperty saref:isPropertyOf ;
	owl:allValuesFrom saref:FeatureOfInterest .
María's avatar
María committed

saref:Property rdfs:subClassOf _:genid25 .
María's avatar
María committed

_:genid25 a owl:Restriction ;
María's avatar
María committed
	owl:onProperty saref:relatesToMeasurement ;
	owl:allValuesFrom saref:Measurement .

saref:Property owl:disjointWith 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."^^xsd:string ;
	rdfs:isDefinedBy <https://w3id.org/saref#> ;
	rdfs:label "Property"@en , "Property"^^xsd:string .
# 
# https://w3id.org/saref#Sensor

saref:Sensor a owl:Class ;
	rdfs:subClassOf saref:Device ;
	rdfs:isDefinedBy <https://w3id.org/saref#> ;
	rdfs:label "Sensor"@en .
# 
María's avatar
María committed
# https://w3id.org/saref#State

saref:State a 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."^^xsd:string ;
	rdfs:label "State"^^xsd:string .
# 
# https://w3id.org/saref#Task

saref:Task a owl:Class ;
	rdfs:subClassOf _:genid26 .
María's avatar
María committed

_:genid26 a owl:Restriction ;
María's avatar
María committed
	owl:onProperty saref:isAccomplishedBy ;
	owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
	owl:onClass saref:Device .

saref:Task 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."^^xsd:string ;
	rdfs:label "Task"^^xsd:string .
# 
# https://w3id.org/saref#Temperature

saref:Temperature a owl:Class ;
	rdfs:subClassOf 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)"^^xsd:string ;
	rdfs:label "Temperature"^^xsd:string .
# 
# https://w3id.org/saref#Time

saref:Time a owl:Class ;
María's avatar
María committed
	rdfs:subClassOf saref:Property ;
	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."^^xsd:string ;
María's avatar
María committed
	rdfs:label "Time"^^xsd:string .
# 
# https://w3id.org/saref#UnitOfMeasure

saref:UnitOfMeasure a 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 SAREF, but this list can be extended, also using some other ontologies rather than the Ontology of units of Measure (OM)."^^xsd:string , "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 ;
	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"^^xsd:string .
# 
# 
# 
# #################################################################
# #
# #    Individuals
# #
# #################################################################
# 
# 
# http://dbpedia.org/resource/DBM

<http://dbpedia.org/resource/DBM> a owl:NamedIndividual , 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> a owl:NamedIndividual , 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> a owl:NamedIndividual , 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> a owl:NamedIndividual , 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> a owl:NamedIndividual , saref:UnitOfMeasure ;
	rdfs:label "millivolt"@en .
# 
María's avatar
María committed
# https://w3id.org/def/saref4agri#AirTemperature

s4agri:AirTemperature a owl:NamedIndividual , saref:Temperature ;
	rdfs:label "Air temperature"@en .
# 
# https://w3id.org/def/saref4agri#AmbientHumidity

s4agri:AmbientHumidity a owl:NamedIndividual , saref:Humidity ;
	rdfs:label "Ambient huidity"@en .
# 
# https://w3id.org/def/saref4agri#IrrigationWater

s4agri:IrrigationWater a owl:NamedIndividual , saref:Property ;
	rdfs:label "Irrigation water"@en .
# 
# https://w3id.org/def/saref4agri#PlantGrowthStage

s4agri:PlantGrowthStage a owl:NamedIndividual , saref:Property ;
	rdfs:label "Plant growth stage"@en .
# 
# https://w3id.org/def/saref4agri#Precipitation

s4agri:Precipitation a owl:NamedIndividual , saref:Property ;
	rdfs:label "Precipitation"@en .
# 
# https://w3id.org/def/saref4agri#SoilMoisture

s4agri:SoilMoisture a owl:NamedIndividual , saref:Property ;
	rdfs:label "Soil moisture"@en .
# 
# https://w3id.org/def/saref4agri#SoilTemperature

s4agri:SoilTemperature a owl:NamedIndividual , saref:Temperature ;
	rdfs:label "Soil temperature"@en .
# 
# 
# 
# #################################################################
# #
# #    Annotations
# #
# #################################################################
# 
# 

geo: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 .
# 
María's avatar
María committed
# Generated by the OWL API (version 4.2.6.20160910-2108) https://github.com/owlcs/owlapi