https://github.com/edsu/empirical-cloud
a little demo visualization of owl:sameAs links in billion triple challenge data
https://github.com/edsu/empirical-cloud
Last synced: about 1 year ago
JSON representation
a little demo visualization of owl:sameAs links in billion triple challenge data
- Host: GitHub
- URL: https://github.com/edsu/empirical-cloud
- Owner: edsu
- Created: 2010-09-15T03:53:38.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2010-11-17T14:48:50.000Z (over 15 years ago)
- Last Synced: 2025-03-31T08:39:39.228Z (about 1 year ago)
- Language: JavaScript
- Homepage: http://inkdroid.org/empirical-cloud
- Size: 281 KB
- Stars: 12
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
This is a little project to visualize owl:sameAs links in the Billion Triple
Challenge Dataset: http://challenge.semanticweb.org/
After downloading the BTC data into a directory called data you can generate
the json file that is used to display the graph with the following:
zgrep -h 'http://www.w3.org/2002/07/owl#sameAs' data/btc-2010-chunk-*.gz | \
scripts/quadtab.pl | \
scripts/sameas.py | \
sort | uniq -c | \
scripts/jsonify.py > docs/sameas.js
You'll need to have recent-ish versions of Perl, Python and pygraph installed.