-
Notifications
You must be signed in to change notification settings - Fork 15
/
THINKHOMEAlignment.ttl
90 lines (76 loc) · 4.03 KB
/
THINKHOMEAlignment.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# 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 : <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 vcard: <http://www.w3.org/2006/vcard/ns#> .
@prefix schema: <https://schema.org/> .
@prefix bot: <https://w3id.org/bot#> .
@prefix th: <https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/BuildingOntology.owl#> .
@prefix thsv: <https://www.auto.tuwien.ac.at/downloads/thinkhome/ontology/BuildingOntologySharedVocabulary.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/> ;
owl:versionInfo "v1.0.0" ;
owl:versionIRI <https://w3id.org/bot/THINKHOMEAlignment-1.0.0> ;
owl:priorVersion <https://w3id.org/bot/THINKHOMEAlignment-0.1.0> ;
rdfs:seeAlso <https://doi.org/10.13140/RG.2.2.21802.52169> ;
dcterms:creator <https://orcid.org/0000-0002-2033-859X> ;
dcterms:creator "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:license a owl:AnnotationProperty .
vann:preferredNamespacePrefix a owl:AnnotationProperty .
vann:preferredNamespaceUri a owl:AnnotationProperty .
vcard:fn a owl:AnnotationProperty .
schema:name a owl:AnnotationProperty .
<https://orcid.org/0000-0002-2033-859X> 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 ] .