Latest versions of BOT:
- URI: https://w3id.org/bot#.
- Canonical URI for the HTML Representation https://w3id.org/bot/bot.html.
- Canonical URI for the Turtle Representation https://w3id.org/bot/bot.ttl.
- Fork this repository.
- Add contribution to bot or separate alignment file.
- Validate that the turtle file is still valid using for example Protegé or http://ttl.summerofcode.be/
- Commit your changes and submit a pull request.
- w3c-lbd administrators will review your pull request and merge it if everything looks correct. Once the pull request is merged, the changes go live immediately.
Step by step introduction with visualizations
Hylar is a simple js library for doing reasoning on a set of triples. To get it up and running, do the following:
- Initialize a new project with
npm init
- Add Hylar as dependency
npm install --save hylar
(first you need node and node-gyp: https://github.com/nodejs/node-gyp) - Adjust the following code sample to your needs and try it out
var Hylar = require('hylar');
var fs = require('fs');
h = new Hylar();
//Files and settings
var mimeType = 'text/turtle';
var files = [];
files.push('triples.ttl');
files.push('bot.ttl');
var query = "PREFIX bot: <https://w3id.org/bot#>\
SELECT * WHERE {?subject a bot:Zone}";
//Get file content
triples = '';
for(var i in files){
var string = fs.readFileSync(files[i], "utf8").toString();
if(i == 0){
triples = string;
}else{
triples+='\n'+string;
}
}
//Do reasoning and run query
h.load(triples, mimeType)
.then(response => {
return h.query(query);
})
.then(results => {
console.log(results) // log results to console
});
Mads Holten Rasmussen, Pieter Pauwels, Christian Anker Hviid and Jan Karlshøj (2017) Proposing a Central AEC Ontology That Allows for Domain Specific Extensions, Lean and Computing in Construction Congress (LC3): Volume I – Proceedings of the Joint Conference on Computing in Construction (JC3), July 4-7, 2017, Heraklion, Greece, pp. 237-244 http://itc.scix.net/cgi-bin/works/Show?lc3-2017-153
Mads Holten Rasmussen, Pieter Pauwels, Maxime Lefrançois, Georg Ferdinand Schneider, Christian Anker Hviid and Jan Karlshøj (2017) Recent changes in the Building Topology Ontology, 5th Linked Data in Architecture and Construction Workshop (LDAC2017), November 13-15, 2017, Dijon, France, https://www.researchgate.net/publication/320631574_Recent_changes_in_the_Building_Topology_Ontology
Mads Holten Rasmussen, Christian Anker Hviid and Jan Karlshøj (2017) Web-based topology queries on a BIM model, 5th Linked Data in Architecture and Construction Workshop (LDAC2017), November 13-15, 2017, Dijon, France, https://www.researchgate.net/publication/320757039_Web-based_topology_queries_on_a_BIM_model
Georg Ferdinand Schneider (2017) Towards Aligning Domain Ontologies with the Building Topology Ontology, 5th Linked Data in Architecture and Construction Workshop (LDAC2017), November 13-15, 2017, Dijon, France, https://www.researchgate.net/publication/320878270_Towards_Aligning_Domain_Ontologies_with_the_Building_Topology_Ontology