Unverified Commit eca20884 authored by Maxime Lefrançois's avatar Maxime Lefrançois
Browse files

closes #20

parent b41293af
Loading
Loading
Loading
Loading
Loading
+0 −175
Original line number Diff line number Diff line
@@ -72,50 +72,6 @@ vann:preferredNamespacePrefix rdf:type owl:AnnotationProperty .
vann:preferredNamespaceUri rdf:type owl:AnnotationProperty .


#################################################################
#    Object Properties
#################################################################

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


###  http://www.w3.org/2003/01/geo/wgs84_pos#location
<http://www.w3.org/2003/01/geo/wgs84_pos#location> rdf:type owl:ObjectProperty ;
                                                   rdfs:range <http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing> ;
                                                   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:isDefinedBy "http://www.w3.org/2003/01/geo/wgs84_pos#" ;
                                                   rdfs:label "location"@en .


###  http://www.w3.org/2006/time#hasBeginning
time:hasBeginning rdf:type owl:ObjectProperty ;
                  rdfs:domain time:TemporalEntity ;
                  rdfs:range time:Instant ;
                  rdfs:comment "Beginning of a temporal entity" ;
                  rdfs:isDefinedBy "http://www.w3.org/2006/time" ;
                  rdfs:label "hasBeginning"@en .


###  http://www.w3.org/2006/time#hasEnd
time:hasEnd rdf:type owl:ObjectProperty ;
            rdfs:domain time:TemporalEntity ;
            rdfs:range time:Instant ;
            rdfs:comment "End of a temporal entity." ;
            rdfs:isDefinedBy "http://www.w3.org/2006/time" ;
            rdfs:label "hasEnd"@en .


###  https://saref.etsi.org/saref4auto/hasConfidenceUnitOfMeasure
:hasConfidenceUnitOfMeasure rdf:type owl:ObjectProperty ;
                                 rdfs:comment "A relation that allows to specify the unit of measure associated with a certain confidence"@en ;
@@ -454,61 +410,10 @@ time:hasEnd rdf:type owl:ObjectProperty ;
                 rdfs:label "usesMeasurement"@en .


###  https://saref.etsi.org/saref4syst/hasSubSystem
s4syst:hasSubSystem rdf:type owl:ObjectProperty ;
                    owl:inverseOf s4syst:subSystemOf ;
                    rdfs:comment "In SAREF4AUTO, a  relation to express that the vehicle has a subsystem called ‘ElectronicControlUnit' (ECU) that provides measurements about relevant properties, such as speed, acceleration, position, etc."@en ,
                                 "Links a system to one of its sub systems"@en ;
                    rdfs:isDefinedBy s4syst: ;
                    rdfs:label "hasSubSystem"@en .


###  https://saref.etsi.org/saref4syst/subSystemOf
s4syst:subSystemOf rdf:type owl:ObjectProperty ;
                   rdfs:comment "In SAREF4AUTO, a relation to express that the the ElectronicControlUnit (ECU) is a subsystem of the vehicle."@en ,
                                "Links a system to its super system. Properties of subsystems somehow contribute to the properties of the super system. The exact meaning of \"contribute is defined by sub properties of s4syst:subSystemOf. Property s4syst:subSystemOf is transitive."@en ;
                   rdfs:isDefinedBy s4syst: ;
                   rdfs:label "subSystemOf"@en .


#################################################################
#    Data properties
#################################################################

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


###  http://www.w3.org/2003/01/geo/wgs84_pos#lat
<http://www.w3.org/2003/01/geo/wgs84_pos#lat> rdf:type owl:DatatypeProperty ;
                                              rdfs:domain <http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing> ;
                                              rdfs:comment "The WGS84 latitude of a SpatialThing (decimal degrees)." ;
                                              rdfs:isDefinedBy "http://www.w3.org/2003/01/geo/wgs84_pos" ;
                                              rdfs:label "latitude" .


###  http://www.w3.org/2003/01/geo/wgs84_pos#long
<http://www.w3.org/2003/01/geo/wgs84_pos#long> rdf:type owl:DatatypeProperty ;
                                               rdfs:domain <http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing> ;
                                               rdfs:comment "The WGS84 longitude of a SpatialThing (decimal degrees)." ;
                                               rdfs:isDefinedBy "http://www.w3.org/2003/01/geo/wgs84_pos" ;
                                               rdfs:label "longitude" .


###  http://www.w3.org/2006/time#inXSDDateTimeStamp
time:inXSDDateTimeStamp rdf:type owl:DatatypeProperty ;
                        rdfs:domain time:Instant ;
                        rdfs:range xsd:dateTimeStamp ;
                        rdfs:comment "Position of an instant, expressed using xsd:dateTimeStamp" ;
                        rdfs:isDefinedBy "http://www.w3.org/2006/time" ;
                        rdfs:label "inXSDDateTimeStamp"@en .


###  https://saref.etsi.org/saref4auto/hasConfidenceValue
:hasConfidenceValue rdf:type owl:DatatypeProperty ;
                    rdfs:comment "A relation between the confidence (s4auto:Confidence) and its value, which can be a discrete value (+/- 5 cm/s) or a level (e.g. 95 %)"@en ;
@@ -569,79 +474,6 @@ time:inXSDDateTimeStamp rdf:type owl:DatatypeProperty ;
#    Classes
#################################################################

###  http://www.opengis.net/ont/geosparql#Feature
geosp:Feature rdf:type owl:Class ;
              rdfs:subClassOf geosp:SpatialObject ;
              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.""" ;
              rdfs:isDefinedBy <http://www.opengis.net/ont/geosparql> ;
              rdfs:label "Feature"@en .


###  http://www.opengis.net/ont/geosparql#Geometry
geosp:Geometry rdf:type 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.""" ;
               rdfs:isDefinedBy <http://www.opengis.net/ont/geosparql> ;
               rdfs:label "Geometry"@en .


###  http://www.opengis.net/ont/geosparql#SpatialObject
geosp:SpatialObject rdf:type owl:Class ;
                    rdfs:comment """The class spatial-object represents everything that can have 
      a spatial representation. It is superclass of feature and geometry.""" ;
                    rdfs:isDefinedBy <http://www.opengis.net/ont/geosparql> ;
                    rdfs:label "SpatialObject"@en .


###  http://www.w3.org/2003/01/geo/wgs84_pos#Point
<http://www.w3.org/2003/01/geo/wgs84_pos#Point> rdf:type owl:Class ;
                                                rdfs:subClassOf <http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing> ;
                                                rdfs:comment "A point, typically described using a coordinate system relative to Earth, such as WGS84." ,
                                                             """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).""" ;
                                                rdfs:isDefinedBy "http://www.w3.org/2003/01/geo/wgs84_pos#" ;
                                                rdfs:label "Point"@en .


###  http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing
<http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing> rdf:type owl:Class ;
                                                       rdfs:comment """Anything with spatial extent, i.e. size, shape, or position.
 e.g. people, places, bowling balls, as well as abstract areas like cubes.""" ;
                                                       rdfs:isDefinedBy "http://www.w3.org/2003/01/geo/wgs84_pos#" ;
                                                       rdfs:label "Spatial Thing"@en .


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


###  http://www.w3.org/2006/time#Interval
time:Interval rdf:type owl:Class ;
              rdfs:subClassOf time:TemporalEntity ;
              rdfs:comment "A temporal entity with an extent or duration" ;
              rdfs:isDefinedBy "http://www.w3.org/2006/time" ;
              rdfs:label "Interval"@en .


###  http://www.w3.org/2006/time#TemporalEntity
time:TemporalEntity rdf:type owl:Class ;
                    rdfs:comment "A temporal interval or instant." ;
                    rdfs:isDefinedBy "http://www.w3.org/2006/time" ;
                    rdfs:label "TemporaryEntity"@en .


###  https://saref.etsi.org/saref4auto/AbsolutePosition
:AbsolutePosition rdf:type owl:Class ;
@@ -1784,13 +1616,6 @@ time:TemporalEntity rdf:type owl:Class ;
         rdfs:label "YawRate"@en .


###  https://saref.etsi.org/saref4syst/System
s4syst:System rdf:type owl:Class ;
              rdfs:comment "The class of systems, i.e., systems virtually isolated from the environment, whose behaviour and interactions with the environment are modeled. Systems can be connected to other systems. Connected systems interact in some ways. Systems can also have subsystems. Properties of subsystems somehow contribute to the properties of the supersystem"@en ;
              rdfs:isDefinedBy s4syst: ;
              rdfs:label "System"@en .


#################################################################
#    Individuals
#################################################################