Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bricksrc/equipment.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
equipment_subclasses = {
"ICT_Equipment": {
"tags": [TAG.ICT, TAG.Equipment],
BRICK.hostsPoint: [BRICK.Point],
BRICK.hosts: [BRICK.Point],
"subclasses": {
"ICT_Hardware": {
"tags": [TAG.Equipment, TAG.ICT, TAG.Hardware],
Expand Down
4 changes: 2 additions & 2 deletions bricksrc/relationships.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@
"domain": BRICK.Equipment,
RDFS.label: Literal("Is controlled by", lang="en"),
},
"hostsPoint": {
"hosts": {
A: [OWL.ObjectProperty, OWL.AsymmetricProperty, OWL.IrreflexiveProperty],
OWL.inverseOf: BRICK["isHostedBy"],
"range": BRICK.Point,
Expand All @@ -186,7 +186,7 @@
},
"isHostedBy": {
A: [OWL.ObjectProperty, OWL.AsymmetricProperty, OWL.IrreflexiveProperty],
OWL.inverseOf: BRICK["hostsPoint"],
OWL.inverseOf: BRICK["hosts"],
"range": BRICK.ICT_Equipment,
"domain": BRICK.Point,
RDFS.label: Literal("Is hosted by", lang="en"),
Expand Down
2 changes: 1 addition & 1 deletion examples/controller/controller.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

bldg:Controller_1 a brick:Controller ;
rdfs:label "Main Building Controller" ;
brick:hostsPoint bldg:VAV1_Temperature_Sensor, bldg:VAV1_Occupancy_Sensor ;
brick:hosts bldg:VAV1_Temperature_Sensor, bldg:VAV1_Occupancy_Sensor ;
brick:controls bldg:VAV1 ;
.

Expand Down