-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbot_office.ttl
81 lines (58 loc) · 2.12 KB
/
bot_office.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
@prefix bldg: <http://example.com/5ZoneOffice#> .
@prefix bot: <https://w3c-lbd-cg.github.io/bot#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix unit: <http://qudt.org/vocab/unit/> .
bldg:Site a bot:Site ;
bot:hasBuilding bldg:office_building .
bldg:ZONE_C a bot:Zone ;
bot:hasElement bldg:TS_Core ;
bot:hasSpace bldg:office_C .
bldg:ZONE_E a bot:Zone ;
bot:hasElement bldg:TS_East ;
bot:hasSpace bldg:office_E .
bldg:ZONE_N a bot:Zone ;
bot:hasElement bldg:TS_North ;
bot:hasSpace bldg:office_N .
bldg:ZONE_S a bot:Zone ;
bot:hasElement bldg:TS_South ;
bot:hasSpace bldg:office_S .
bldg:ZONE_W a bot:Zone ;
bot:hasElement bldg:TS_West ;
bot:hasSpace bldg:office_W .
bldg:ceiling a bot:Element .
bldg:glassdoor a bot:Element .
bldg:wall a bot:Element .
bldg:window a bot:Element .
bldg:TS_Core a bot:Element ;
rdfs:label "Room temperature measure in Core Office" ;
bldg:timeseries [ bldg:hasTimeseriesId "CoreZone-id" ] ;
unit:applicableUnit unit:DEG_C .
bldg:TS_East a bot:Element ;
rdfs:label "Room temperature measure in East Office" ;
bldg:timeseries [ bldg:hasTimeseriesId "EastZone-id" ] ;
unit:applicableUnit unit:DEG_C .
bldg:TS_North a bot:Element ;
rdfs:label "Room temperature measure in North Office" ;
bldg:timeseries [ bldg:hasTimeseriesId "NorthZone-id" ] ;
unit:applicableUnit unit:DEG_C .
bldg:TS_South a bot:Element ;
rdfs:label "Room temperature measure in South Office" ;
bldg:timeseries [ bldg:hasTimeseriesId "SouthZone-id" ] ;
unit:applicableUnit unit:DEG_C .
bldg:TS_West a bot:Element ;
rdfs:label "Room temperature measure in West Office" ;
bldg:timeseries [ bldg:hasTimeseriesId "WestZone-id" ] ;
unit:applicableUnit unit:DEG_C .
bldg:office a bot:Storey ;
bot:hasSpace bldg:office_C,
bldg:office_E,
bldg:office_N,
bldg:office_S,
bldg:office_W .
bldg:office_building a bot:Building ;
bot:hasStorey bldg:office .
bldg:office_C a bot:Space .
bldg:office_E a bot:Space .
bldg:office_N a bot:Space .
bldg:office_S a bot:Space .
bldg:office_W a bot:Space .