Skip to content

Commit

Permalink
First commit of Alignment of
Browse files Browse the repository at this point in the history
BRICK (BRICKAlignment.ttl)
DOGONT (DOGONTAlignment.ttl)
ifcowl (IFCOWL4_ADD2Alignment.ttl)
ThinkHome (THINKHOMEAlignment.ttl)

Added corrections in

bot.ttl
and
SAREF4BLDGAlignment.ttl
  • Loading branch information
GeorgFerdinandSchneider committed Sep 12, 2017
1 parent c76d2ee commit bfee1e4
Show file tree
Hide file tree
Showing 6 changed files with 245 additions and 12 deletions.
64 changes: 64 additions & 0 deletions BRICKAlignment.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
@prefix : <https://w3id.org/bot/BRICKAlignment#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix voaf: <http://purl.org/vocommons/voaf#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix bot: <https://w3id.org/bot#> .
@prefix brick: <https://brickschema.org/schema/1.0.2/Brick#> .
@base <https://w3id.org/bot/BRICKAlignment> .

<https://w3id.org/bot/BRICKAlignment> rdf:type owl:Ontology , voaf:Vocabulary ;
dcterms:title "BRICK to BOT alignment."@en ;
dcterms:description """This ontology defines proposed alignments with the BRICK ontology."""@en ;
dcterms:issued "2017-09-12"^^xsd:date ;
dcterms:modified "2017-09-12"^^xsd:date ;
dcterms:license <http://creativecommons.org/licenses/by/3.0/> ;
dcterms:creator <https://www.researchgate.net/profile/Georg_Schneider3> ;
dcterms:creator [a foaf:Person ; foaf:name "Georg Ferdinand Schneider" ] ;
owl:imports <https://w3id.org/bot> ,
<https://brickschema.org/schema/1.0.2/Brick#> .

dcterms:title a owl:AnnotationProperty .
dcterms:description a owl:AnnotationProperty .
dcterms:issued a owl:AnnotationProperty .
dcterms:modified a owl:AnnotationProperty .
dcterms:creator a owl:AnnotationProperty .
dcterms:contributor a owl:AnnotationProperty .
dcterms:license a owl:AnnotationProperty .
vann:preferredNamespacePrefix a owl:AnnotationProperty .
vann:preferredNamespaceUri a owl:AnnotationProperty .
foaf:Person a owl:Class .
foaf:name a owl:DatatypeProperty .


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

brick:contains rdfs:subPropertyOf bot:containsElement .


#################################################################
# Classes
#################################################################

bot:Space rdfs:subClassOf brick:Location .
brick:Basement rdfs:subClassOf bot:Space .
brick:Outside rdfs:subClassOf bot:Space .
brick:Room rdfs:subClassOf bot:Space .
brick:Space rdfs:subClassOf bot:Space .
brick:Wing rdfs:subClassOf bot:Space .
brick:Zone rdfs:subClassOf bot:Space .

bot:Building owl:equivalentClass brick:Building .
bot:Storey owl:equivalentClass brick:Floor .

brick:Equipment rdfs:subClassOf bot:Element .

brick:Point rdfs:subClassOf bot:Element .


53 changes: 53 additions & 0 deletions DOGONTAlignment.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
@prefix : <https://w3id.org/bot/DOGONTAlignment#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix voaf: <http://purl.org/vocommons/voaf#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix bot: <https://w3id.org/bot#> .
@prefix dogont: <http://elite.polito.it/ontologies/dogont.owl#> .
@base <https://w3id.org/bot/DOGONTAlignment> .

<https://w3id.org/bot/DOGONTAlignment> rdf:type owl:Ontology , voaf:Vocabulary ;
dcterms:title "DogOnt to BOT alignment."@en ;
dcterms:description """This ontology defines proposed alignments with the DogOnt ontology."""@en ;
dcterms:issued "2017-09-12"^^xsd:date ;
dcterms:modified "2017-09-12"^^xsd:date ;
dcterms:license <http://creativecommons.org/licenses/by/3.0/> ;
dcterms:creator <https://www.researchgate.net/profile/Georg_Schneider3> ;
dcterms:creator [a foaf:Person ; foaf:name "Georg Ferdinand Schneider" ] ;
owl:imports <https://w3id.org/bot> ,
<http://elite.polito.it/ontologies/dogont.owl> .

dcterms:title a owl:AnnotationProperty .
dcterms:description a owl:AnnotationProperty .
dcterms:issued a owl:AnnotationProperty .
dcterms:modified a owl:AnnotationProperty .
dcterms:creator a owl:AnnotationProperty .
dcterms:contributor a owl:AnnotationProperty .
dcterms:license a owl:AnnotationProperty .
vann:preferredNamespacePrefix a owl:AnnotationProperty .
vann:preferredNamespaceUri a owl:AnnotationProperty .
foaf:Person a owl:Class .
foaf:name a owl:DatatypeProperty .

#################################################################
# Classes
#################################################################

bot:Building owl:equivalentClass dogont:Building .
dogont:Flat rdfs:subClassOf bot:Building .
bot:Storey owl:equivalentClass dogont:Storey .

bot:Space rdfs:subClassOf dogont:BuildingEnvironment .
dogont:Room rdfs:subClassOf bot:Space .
dogont:Garage rdfs:subClassOf bot:Space .
dogont:Garden rdfs:subClassOf bot:Space .

dogont:Controllable rdfs:subClassOf bot:Element .
dogont:Device rdfs:subClassOf bot:Element .
dogont:UnControllable rdfs:subClassOf bot:Element .
dogont:TechnicalSystem rdfs:subClassOf bot:Element .
56 changes: 56 additions & 0 deletions IFCOWL4_ADD2Alignment.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
@prefix : <https://w3id.org/bot/IFC4_ADD2Alignment#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix voaf: <http://purl.org/vocommons/voaf#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix bot: <https://w3id.org/bot#> .
@prefix ifc: <http://www.buildingsmart-tech.org/ifcOWL/IFC4_ADD2#> .
@base <https://w3id.org/bot/IFC4_ADD2Alignment> .

<https://w3id.org/bot/IFC4_ADD2Alignment> rdf:type owl:Ontology , voaf:Vocabulary ;
dcterms:title "ifcOWL4_Add2 to BOT alignment."@en ;
dcterms:description """This ontology defines proposed alignments with the ifcOWL4_Add2 ontology."""@en ;
dcterms:issued "2017-09-12"^^xsd:date ;
dcterms:modified "2017-09-12"^^xsd:date ;
dcterms:license <http://creativecommons.org/licenses/by/3.0/> ;
dcterms:creator <https://www.researchgate.net/profile/Georg_Schneider3> ;
dcterms:creator [a foaf:Person ; foaf:name "Georg Ferdinand Schneider" ] ;
owl:imports <https://w3id.org/bot> ,
<http://www.buildingsmart-tech.org/ifcOWL/IFC4_ADD2> .

dcterms:title a owl:AnnotationProperty .
dcterms:description a owl:AnnotationProperty .
dcterms:issued a owl:AnnotationProperty .
dcterms:modified a owl:AnnotationProperty .
dcterms:creator a owl:AnnotationProperty .
dcterms:contributor a owl:AnnotationProperty .
dcterms:license a owl:AnnotationProperty .
vann:preferredNamespacePrefix a owl:AnnotationProperty .
vann:preferredNamespaceUri a owl:AnnotationProperty .
foaf:Person a owl:Class .
foaf:name a owl:DatatypeProperty .

#################################################################
# Classes
#################################################################

bot:Site owl:equivalentClass ifc:IfcSite .
bot:Building owl:equivalentClass ifc:IfcBuilding .
bot:Storey owl:equivalentClass ifc:IfcBuildingStorey .
bot:Space owl:equivalentClass ifc:IfcSpace .
bot:Element owl:equivalentClass ifc:IfcElement .











4 changes: 2 additions & 2 deletions SAREF4BLDGAlignment.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ foaf:name a owl:DatatypeProperty .
dcterms:description """This ontology defines proposed alignments of SAREF4BLDG with the BOT ontology."""@en ;
dcterms:issued "2017-07-13"^^xsd:date ;
dce:modified "2017-08-31"^^xsd:date ;
dcterms:creator [a foaf:Person ; foaf:name "Georg Ferdinand Schneider" ] ;
dcterms:creator <https://www.researchgate.net/profile/Georg_Schneider3> ;
dcterms:creator [a foaf:Person ; foaf:name "Georg Ferdinand Schneider" ] ;
dcterms:contributor [a foaf:Person ; foaf:name "Mads Holten Rasmussen" ] ;
dcterms:contributor [a foaf:Person ; foaf:name "Pieter Pauwels" ] ;
dcterms:contributor <http://www.maxime-lefrancois.info/me#> ;
Expand All @@ -60,7 +60,7 @@ foaf:name a owl:DatatypeProperty .
#################################

bot:Building owl:equivalentClass saref4bldg:Building .
bot:Element rdfs:subClassOf saref4bldg:PhysicalObject .
bot:Element owl:equivalentClass saref4bldg:PhysicalObject .
bot:Space owl:equivalentClass saref4bldg:BuildingSpace .
bot:hasSpace rdfs:subPropertyOf saref4bldg:hasSpace .
bot:containsElement owl:equivalentProperty saref4bldg:contains .
64 changes: 64 additions & 0 deletions THINKHOMEAlignment.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
@prefix : <https://w3id.org/bot/THINKHOMEAlignment#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix voaf: <http://purl.org/vocommons/voaf#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix bot: <https://w3id.org/bot#> .
@prefix th: <https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/BuildingOntology.owl#> .
@base <https://w3id.org/bot/THINKHOMEAlignment> .

<https://w3id.org/bot/THINKHOMEAlignment> rdf:type owl:Ontology , voaf:Vocabulary ;
dcterms:title "ThinkHome to BOT alignment."@en ;
dcterms:description """This ontology defines proposed alignments with the ThinkHome ontologies."""@en ;
dcterms:issued "2017-09-12"^^xsd:date ;
dcterms:modified "2017-09-12"^^xsd:date ;
dcterms:license <http://creativecommons.org/licenses/by/3.0/> ;
dcterms:creator <https://www.researchgate.net/profile/Georg_Schneider3> ;
dcterms:creator [a foaf:Person ; foaf:name "Georg Ferdinand Schneider" ] ;
owl:imports <https://w3id.org/bot> ,
<https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/BuildingOntology.owl> .

dcterms:title a owl:AnnotationProperty .
dcterms:description a owl:AnnotationProperty .
dcterms:issued a owl:AnnotationProperty .
dcterms:modified a owl:AnnotationProperty .
dcterms:creator a owl:AnnotationProperty .
dcterms:contributor a owl:AnnotationProperty .
dcterms:license a owl:AnnotationProperty .
vann:preferredNamespacePrefix a owl:AnnotationProperty .
vann:preferredNamespaceUri a owl:AnnotationProperty .
foaf:Person a owl:Class .
foaf:name a owl:DatatypeProperty .

#################################################################
# Classes
#################################################################

bot:Site owl:equivalentClass th:Campus .
bot:Building owl:equivalentClass th:Building .
bot:Storey owl:equivalentClass th:BuildingStorey .

th:Zone rdfs:subClassOf bot:Space .
th:Space rdfs:subClassOf bot:Space .

th:Equipment rdfs:subClassOf bot:Element .
th:Construction rdfs:subClassOf bot:Element .
th:Layer rdfs:subClassOf bot:Element .
th:Material rdfs:subClassOf bot:Element .
th:Opening rdfs:subClassOf bot:Element .
th:Surface rdfs:subClassOf bot:Element .











16 changes: 6 additions & 10 deletions bot.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,10 @@
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix voaf: <http://purl.org/vocommons/voaf#> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix dce: <http://purl.org/dc/elements/1.1/> .
@prefix dbo: <http://dbpedia.org/ontology/> .

@prefix bot: <https://w3id.org/bot#> .
@base <https://w3id.org/bot#> .
@base <https://w3id.org/bot> .

voaf:Vocabulary a owl:Class .
dcterms:title a owl:AnnotationProperty .
Expand All @@ -31,17 +28,16 @@ dcterms:contributor a owl:AnnotationProperty .
dcterms:license a owl:AnnotationProperty .
vann:preferredNamespacePrefix a owl:AnnotationProperty .
vann:preferredNamespaceUri a owl:AnnotationProperty .
vs:term_status a owl:AnnotationProperty .
foaf:Person a owl:Class .
foaf:name a owl:DatatypeProperty .

#################################
# METADATA
#################################
<https://w3id.org/bot#> rdf:type voaf:Vocabulary ,
<https://w3id.org/bot> rdf:type voaf:Vocabulary ,
owl:Ontology ;
dce:modified "July 11th 2017"^^xsd:string ;
owl:versionInfo "July 11th 2017"^^xsd:string ;
dce:modified "2017-07-11"^^xsd:date ;
owl:versionInfo "2017-07-11"^^xsd:date ;
dcterms:issued "2017-07-11"^^xsd:date ;
#owl:versionIRI <https://w3id.org/bot/bot-0.1.1> ;
owl:versionInfo "v0.1.1" ;
Expand Down Expand Up @@ -70,7 +66,7 @@ bot:Site a owl:Class ;
rdfs:label "Site"@en ,
"Grund"@da ,
"Site"@nl ,
"Grundstück"@de .
"Grundstück"@de ;
rdfs:comment "Area containing one or more buildings."@en ,
"Område som indeholder en eller flere bygninger."@da ,
"Omgeving die één of meerdere gebouwen bevat."@nl ,
Expand All @@ -96,7 +92,7 @@ bot:Storey a owl:Class ;
rdfs:comment "A level part of a building"@en ,
"Die Gesamtheit aller Räume in einem Gebäude, die auf einer Zugangsebene liegen und horizontal verbunden sind"@de ,
"Et plan i en bygning"@da ,
"Een horizontaal gedeelte van een gebouw"@nl.
"Een horizontaal gedeelte van een gebouw"@nl .

bot:Element a owl:Class ;
rdfs:label "Building element"@en ,
Expand Down

0 comments on commit bfee1e4

Please sign in to comment.