# Copyright 2017-2019 W3C Linked Building Data Community Group. # # This work is licensed under a Creative Commons Attribution License. # This copyright applies to the Vocabulary Specification and # accompanying documentation in RDF. Regarding underlying technology, # the Vocabulary uses W3C's RDF technology, an open Web standard that can be freely # used by anyone. @prefix : . @prefix owl: . @prefix rdf: . @prefix xsd: . @prefix rdfs: . @prefix dcterms: . @prefix vann: . @prefix voaf: . @prefix vcard: . @prefix schema: . @prefix bot: . @prefix th: . @prefix thsv: . @base . 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 ; owl:versionInfo "v1.0.0" ; owl:versionIRI ; owl:priorVersion ; rdfs:seeAlso ; dcterms:creator ; dcterms:creator "Georg Ferdinand Schneider" ; owl:imports , . 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:license a owl:AnnotationProperty . vann:preferredNamespacePrefix a owl:AnnotationProperty . vann:preferredNamespaceUri a owl:AnnotationProperty . vcard:fn a owl:AnnotationProperty . schema:name a owl:AnnotationProperty . a vcard:Individual , schema:Person; vcard:fn "Georg Ferdinand Schneider" ; schema:name "Georg Ferdinand Schneider" . ################################################################# # Classes ################################################################# th:Campus rdfs:subClassOf bot:Site . th:Building rdfs:subClassOf bot:Building . th:BuildingStorey rdfs:subClassOf bot:Storey . th:Opening rdfs:subClassOf bot:Element . th:Space rdfs:subClassOf bot:Space . th:Zone rdfs:subClassOf bot:Zone . th:Construction rdfs:subClassOf bot:Interface . th:Layer rdfs:subClassOf bot:Interface . th:Material rdfs:subClassOf bot:Interface . th:SpaceBoundary rdfs:subClassOf bot:Interface . th:Surface rdfs:subClassOf bot:Interface . th:Equipment rdfs:subClassOf bot:Element . ################################################################# # Object properties ################################################################# th:containsBuilding rdfs:subPropertyOf bot:hasBuilding . th:containsBuildingStorey rdfs:subPropertyOf bot:hasStorey . th:containsSpace rdfs:subPropertyOf bot:hasSpace . th:containsSpaceBoundary rdfs:subPropertyOf bot:interfaceOf . th:containsLighting rdfs:subPropertyOf bot:containsElement . th:containsHydronicLoopEquipment rdfs:subPropertyOf bot:hasSubElement . th:containsAirLoopEquipment rdfs:subPropertyOf bot:hasSubElement . th:hasDefinedAdjacentSpace rdfs:subPropertyOf [ owl:inverseOf bot:adjacentZone ] . th:isDefinedAdjacentSurfaceOf rdfs:subPropertyOf bot:interfaceOf . thsv:isEquipmentOf rdfs:subPropertyOf [ owl:inverseOf bot:hasElement ] .