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

change prefix geo: to wgs84: when appropriate

parent 4c4e6f2d
Loading
Loading
Loading
Loading
Loading
+16 −16
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@
@prefix saref: <https://saref.etsi.org/core/> .
@prefix s4bldg: <https://saref.etsi.org/saref4bldg/> .
@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/> .
@@ -22,25 +22,25 @@
  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 .
geo:location a owl:ObjectProperty .
wgs84:SpatialThing a owl:Class .
wgs84:long a owl:DatatypeProperty .
wgs84:lat a owl:DatatypeProperty .
wgs84:location a owl:ObjectProperty .

:ComputerScienceBuilding1 a s4bldg:Building ;
  geo:location [ a geo:SpatialThing ;
          geo:lat "40.405013" ;
          geo:long "-3.839349" ;
  wgs84:location [ a wgs84:SpatialThing ;
          wgs84:lat "40.405013" ;
          wgs84:long "-3.839349" ;
          rdfs:label "Location of Computer Science Building 1"@en
    ] ;
  rdfs:label "Computer Science Building 1"@en .

:RefrigerationStoreComputerScienceBuilding1 a s4bldg:BuildingSpace ;
  s4bldg:isSpaceOf :ComputerScienceBuilding1 ;
  geo:location [
    a geo:SpatialThing ;
    geo:lat "40.405152" ;
    geo:long "-3.839209" ;
  wgs84:location [
    a wgs84:SpatialThing ;
    wgs84:lat "40.405152" ;
    wgs84:long "-3.839209" ;
    rdfs:label "LocationRefrigerationStoreComputerScienceBuilding1"@en 
  ] ;
  rdfs:label "Refrigeration store of Computer Science Building 1"@en .
@@ -75,10 +75,10 @@ geo:location a owl:ObjectProperty .
    saref:hasValue "680.0"^^xsd:float ;
    rdfs:label "Nominal capacity of compressor001 SIERRA02-0434C3"@en 
  ] ;                              
  geo:location [
    a geo:SpatialThing ;
    geo:lat "40.405155" ;
    geo:long "-3.839203" ;
  wgs84:location [
    a wgs84:SpatialThing ;
    wgs84:lat "40.405155" ;
    wgs84:long "-3.839203" ;
    rdfs:label "Location of compressor001 SIERRA02-0434C3"@en 
  ] ;
  s4bldg:hasHotGasBypass "false"^^xsd:boolean ;