[ Launch: tremulous CULKk318 data > 0 ] de16c1cd380335fd4da2 by enjalot
[ Launch: tremulous CULKk318 data > 4 ] 475a6acf355ced907362 by enjalot
[ Launch: tremulous CULKk318 data ] 4cad56bfa2795d8e1054 by enjalot
[ Launch: tremulous OthoC1 data ] 9fc5311587f17ac93be2 by enjalot
[ Launch: tremulous data ] 0823d99a670acfa3fb3e by enjalot
-
-
Save enjalot/de16c1cd380335fd4da2 to your computer and use it in GitHub Desktop.
tremulous CULKk318 data > 0
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"description":"tremulous CULKk318 data > 0","endpoint":"","display":"div","public":true,"require":[{"name":"crossfilter.js","url":"http://square.github.io/crossfilter/crossfilter.v1.min.js"}],"fileconfigs":{"inlet.js":{"default":true,"vim":false,"emacs":false,"fontSize":12},"_.md":{"default":true,"vim":false,"emacs":false,"fontSize":12},"config.json":{"default":true,"vim":false,"emacs":false,"fontSize":12},"style.css":{"default":true,"vim":false,"emacs":false,"fontSize":12}},"fullscreen":false,"play":false,"loop":false,"restart":false,"autoinit":true,"pause":true,"loop_type":"pingpong","bv":false,"nclones":15,"clone_opacity":0.4,"duration":3000,"ease":"linear","dt":0.01,"ajax-caching":true,"thumbnail":"http://i.imgur.com/ZZTzCVH.png"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
d3.json("https://s3.amazonaws.com/medieval/tremor/CULKk318/folios.json", function(err, folios) { | |
d3.json("https://s3.amazonaws.com/medieval/tremor/CULKk318/marks.json?", function(err, marks) { | |
var cwidth = 80; | |
var cheight = 120; | |
var nested = d3.nest() | |
.key(function(d) { return d.folioId }) | |
.key(function(d) { return d.author }) | |
.rollup(function(leaves) { return { count: leaves.length, marks: leaves } }) | |
.entries(marks) | |
console.log("nested", nested[0]); | |
var folioArray = []; | |
for(key in folios) { | |
folioArray.push(folios[key]) | |
} | |
folioArray.sort(function(a,b) { | |
if(a.index === b.index) { | |
if(a.side === 'r') return -1; | |
return 1 | |
} | |
return a.index - b.index | |
}); | |
var fxscale = d3.scale.linear() | |
.domain([0, 980]) | |
.range([0, 80]) | |
var fyscale = d3.scale.linear() | |
.domain([0, 1500]) | |
.range([0, 120]) | |
var display = d3.select("#display"); | |
var fdivs = display.selectAll("div.folio") | |
.data(folioArray, function(f) { return f.id}) | |
.enter().append("div").classed("folio", true) | |
fdivs.append("img").attr({ | |
src: function(d) {return "https://s3.amazonaws.com/medieval/tremor/CULKk318/thumbs/" + d.index + d.side + "_tn.jpg" }, | |
height: 120 + "px" | |
}) | |
var canvii = fdivs.append("canvas") | |
.attr("id", function(d) { return "folio-" + d.id }) | |
.attr("width", cwidth) | |
.attr("height", cheight); | |
fdivs.append("div").classed("description", true) | |
.text(function(f) { return f.index + f.side }) | |
counts = {}; | |
nested.forEach(function(f) { | |
var id = "#folio-" + f.key; | |
var canvas = display.select(id).node(); | |
var ctx = canvas.getContext("2d"); | |
if(f.values[0].key == "original") { | |
var original = f.values[0]; | |
var tremor = f.values[1]; | |
} else { | |
var original = f.values[1]; | |
var tremor = f.values[0]; | |
} | |
if(original) { | |
var count = original.values.count; | |
var marks = original.values.marks; | |
} | |
if(tremor) { | |
var count = tremor.values.count; | |
counts[f.key] = count; | |
var marks = tremor.values.marks; | |
//ctx.fillStyle = "white" | |
marks.forEach(function(m) { | |
ctx.fillStyle = "rgba(253, 239, 169, " + m.certainty/100 + ")"; | |
ctx.fillRect(fxscale(m.x), fyscale(m.y), 5, 5) | |
}) | |
} | |
}); | |
d3.selectAll("div.folio") | |
.filter(function(d) {return !counts[d.id] }) | |
.style("display", "none") | |
}); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#display { | |
overflow: scroll; | |
} | |
.folio { | |
width: 85px; | |
height: 150px; | |
border: 1px solid white; | |
display: inline-block; | |
margin: 4px; | |
} | |
.description { | |
text-align: center; | |
position:relative; | |
height: 150px; | |
} | |
.folio canvas { | |
margin-top: 30px; | |
width: 80px; | |
height: 120px; | |
position:absolute; | |
} | |
.folio img { | |
margin-top: 30px; | |
position:absolute; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment