Skip to content

Commit

Permalink
polishing
Browse files Browse the repository at this point in the history
  • Loading branch information
blokhin committed Nov 4, 2015
1 parent 0910f77 commit 8f0b7b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@
var force = d3.layout.force()
.size([width, height])
.nodes(d3.values(nodes)).links(edges)
.linkDistance(50)
.linkDistance(80)
.gravity(0.3)
.charge(-2500)
.on("tick", tick);
Expand Down
2 changes: 1 addition & 1 deletion ttl2json.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


RELS_TO_DRAW = ['isWifeOf', 'isMotherOf', 'isFatherOf']
RELS_TO_INFER = ['hasGrandParent', 'isGrandParentOf', 'isGreatGrandParentOf', 'hasGreatGrandParent', 'isUncleOf', 'hasUncle', 'isGreatUncleOf', 'hasGreatUncle', 'isAuntOf', 'hasAunt', 'isGreatAuntOf', 'hasGreatAunt', 'isFirstCousinOf', 'isSecondCousinOf', 'isThirdCousinOf']
RELS_TO_INFER = ['hasGrandParent', 'isGrandParentOf', 'hasGreatGrandParent', 'isGreatGrandParentOf', 'isUncleOf', 'hasUncle', 'isGreatUncleOf', 'hasGreatUncle', 'isAuntOf', 'hasAunt', 'isGreatAuntOf', 'hasGreatAunt', 'isFirstCousinOf', 'isSecondCousinOf', 'isThirdCousinOf']
RELS_OF_INTEREST = RELS_TO_DRAW + RELS_TO_INFER

try: workpath = sys.argv[1]
Expand Down

0 comments on commit 8f0b7b1

Please sign in to comment.