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

change prefix geo: to wgs84: when appropriate

parent 0f184959
Loading
Loading
Loading
Loading
Loading
+16 −16
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@
@prefix s4bldg: <https://saref.etsi.org/saref4bldg/> .
@prefix s4ener: <https://saref.etsi.org/saref4ener/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> .
@prefix wgs84: <http://www.w3.org/2003/01/geo/wgs84_pos#> .
@prefix time: <http://www.w3.org/2006/time#> .
@prefix wurvoc: <http://www.wurvoc.org/vocabularies/om-1.8/> .
@prefix dctype: <http://purl.org/dc/dcmitype/> .
@@ -24,9 +24,9 @@
  dcterms:title "Example of use for the SAREF extension for building devices"@en ;
  dcterms:description "Example of use for the SAREF extension for building devices"@en .

geo:SpatialThing a owl:Class .
geo:long a owl:DatatypeProperty .
geo:lat a owl:DatatypeProperty .
wgs84:SpatialThing a owl:Class .
wgs84:long a owl:DatatypeProperty .
wgs84:lat a owl:DatatypeProperty .


:Compressor001SIERRA02-0434C3 rdf:type owl:NamedIndividual ,
@@ -36,7 +36,7 @@ geo:lat a owl:DatatypeProperty .
                              s4bldg:impellerDiameter :ImpellerDiameterCompressor001SIERRA02-0434C3 ;
                              s4bldg:isContainedIn :RefrigerationStoreComputerScienceBuilding1 ;
                              s4bldg:nominalCapacity :NominalCapacityCompressor001SIERRA02-0434C3 ;
                              geo:location :LocationCompressor001SIERRA02-0434C3 ;
                              wgs84:location :LocationCompressor001SIERRA02-0434C3 ;
                              s4ener:exposes :PowerProfileCompressor001SIERRA02-0434C3 ;
                              s4bldg:hasHotGasBypass "false"^^xsd:boolean ;
                              s4bldg:powerSource "MotorDriven"^^xsd:string ;
@@ -55,7 +55,7 @@ geo:lat a owl:DatatypeProperty .

:ComputerScienceBuilding1 rdf:type owl:NamedIndividual ,
                                   s4bldg:Building ;
                          geo:location :LocationComputerScienceBuilding1 ;
                          wgs84:location :LocationComputerScienceBuilding1 ;
                          rdfs:label "Computer Science Building 1"@en .


@@ -74,23 +74,23 @@ geo:lat a owl:DatatypeProperty .


:LocationCompressor001SIERRA02-0434C3 rdf:type owl:NamedIndividual ,
                                               geo:SpatialThing ;
                                      geo:lat "40.405155" ;
                                      geo:long "-3.839203" ;
                                               wgs84:SpatialThing ;
                                      wgs84:lat "40.405155" ;
                                      wgs84:long "-3.839203" ;
                                      rdfs:label "Location of compressor001 SIERRA02-0434C3"@en .


:LocationComputerScienceBuilding1 rdf:type owl:NamedIndividual ,
                                           geo:SpatialThing ;
                                  geo:lat "40.405013" ;
                                  geo:long "-3.839349" ;
                                           wgs84:SpatialThing ;
                                  wgs84:lat "40.405013" ;
                                  wgs84:long "-3.839349" ;
                                  rdfs:label "Location of Computer Science Building 1"@en .


:LocationRefrigerationStoreComputerScienceBuilding1 rdf:type owl:NamedIndividual ,
                                                             geo:SpatialThing ;
                                                    geo:lat "40.405152" ;
                                                    geo:long "-3.839209" ;
                                                             wgs84:SpatialThing ;
                                                    wgs84:lat "40.405152" ;
                                                    wgs84:long "-3.839209" ;
                                                    rdfs:label "LocationRefrigerationStoreComputerScienceBuilding1"@en .


@@ -117,7 +117,7 @@ geo:lat a owl:DatatypeProperty .
:RefrigerationStoreComputerScienceBuilding1 rdf:type owl:NamedIndividual ,
                                                     s4bldg:BuildingSpace ;
                                            s4bldg:isSpaceOf :ComputerScienceBuilding1 ;
                                            geo:location :LocationRefrigerationStoreComputerScienceBuilding1 ;
                                            wgs84:location :LocationRefrigerationStoreComputerScienceBuilding1 ;
                                            rdfs:label "Refrigeration store of Computer Science Building 1"@en .