Circle pack enclosure of my seed grown 2014 garden. I'm a high plains gardener in Boulder, Colorado. We get ~20 inches of rain per year. I have a fully irrigated 9 bed garden on the east side of my south facing house. This is garden number 13+ for me. My first in 2001 was in Lafayette, Colorado. I planted in Lafayette in 2011 and moved to Boulder. I harvested a late season container salad garden in 2011. That's the + in 13+. I've been building out this new patch since then. Seed sewing and growing log found at PoppySeed. Garden-of-eatin has a record of the gardens since 2004. I'm a reticent blogger at best, but a 2014 review is in progress.
Other viz include:
Veggie 2014 Show Reel
VeggieBurst 2014
xxxxxxxxxx
<meta charset="utf-8">
<style>
.node {
cursor: pointer;
display: inline;
font: 8px "Helvetica Neue", Helvetica, Arial, sans-serif;
text-anchor: middle;
text-shadow: 0 1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff, 0 -1px 0 #fff;
}
.node:hover {
stroke: #000;
stroke-width: 1.5px;
}
.node--leaf {
fill: lightblue;
}
.label {
font: 12px "Helvetica Neue", Helvetica, Arial, sans-serif;
text-anchor: middle;
text-shadow: 0 1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff, 0 -1px 0 #fff;
}
.label,
.node--root,
.node--leaf {
pointer-events: none;
}
</style>
<body>
<Div style="position:absolute;left:20;top:20;width:15%;color:white;font-size:1em;"><b>2014 Garden<br> Circle Pack Viz</b><br><a href=https://bl.ocks.org/mbostock/7607535>D3 example</a></DIV>
<script src="https://d3js.org/d3.v3.min.js"></script>
<script>
// Find the right method, call on correct element
function launchFullScreen(element) {
if(element.requestFullscreen) {
element.requestFullscreen();
} else if(element.mozRequestFullScreen) {
element.mozRequestFullScreen();
} else if(element.webkitRequestFullscreen) {console.log("in launchFullScreen");
element.webkitRequestFullscreen(Element.ALLOW_KEYBOARD_INPUT);
} else if(element.msRequestFullscreen) {
element.msRequestFullscreen();
}
}
var margin = 20,
diameter = window.innerHeight-100/2;
wdiameter = window.innerWidth-100/2;
var color = d3.scale.linear()
.domain([-1, 3])
.range(["hsl(152,80%,80%)", "hsl(228,30%,40%)"])
.interpolate(d3.interpolateHcl);
var pack = d3.layout.pack()
.padding(2)
.size([diameter - margin, diameter - margin])
.value(function(d) { return d.size; })
var svg = d3.select("body").append("svg")
.attr("width", diameter*2)
.attr("height", diameter)
.append("g")
.attr("transform", "translate(" + wdiameter / 2 + "," + diameter / 2 + ")");
window.addEventListener("resize", function(){ console.log("resize registered");
svg.attr("width", window.outerWidth -10/2)
.attr("height", window.innerHeight -10/2);
w = window.outerWidth - 10/2,
h = window.innerHeight - 10/2;
console.log("h=" + h);
});
d3.json("veggieflare.json", function(error, root) {
if (error) return console.error(error);
var focus = root,
nodes = pack.nodes(root),
view;
var circle = svg.selectAll("circle")
.data(nodes)
.enter().append("circle")
.attr("class", function(d) { return d.parent ? d.children ? "node" : "node node--leaf" : "node node--root"; })
.style("fill", function(d) { return d.children ? color(d.depth) : null; })
.on("click", function(d) { if (focus !== d) zoom(d), d3.event.stopPropagation(); });
var text = svg.selectAll("text")
.data(nodes)
.enter().append("text")
.attr("class", "label")
.style("fill-opacity", function(d) { return d.children ? 1 : 0; })
.style("display", function(d) { return d.children ? null : "none"; })
.text(function(d) { return d.name; })
var node = svg.selectAll("circle,text");
d3.select("body")
.style("background", color(-1))
.on("click", function() { zoom(root); });
zoomTo([root.x, root.y, root.r * 2 + margin]);
function zoom(d) {
var focus0 = focus; focus = d;
var transition = d3.transition()
.duration(d3.event.altKey ? 7500 : 750)
.tween("zoom", function(d) {
var i = d3.interpolateZoom(view, [focus.x, focus.y, focus.r * 2 + margin]);
return function(t) { zoomTo(i(t)); };
});
transition.selectAll("text")
.filter(function(d) { return d.parent === focus || this.style.display === "inline"; })
.style("fill-opacity", function(d) { return d.parent === focus ? 1 : 0; })
.each("start", function(d) { if (d.parent === focus) this.style.display = "inline"; })
.each("end", function(d) { if (d.parent !== focus) this.style.display = "none"; });
}
function zoomTo(v) {
var k = diameter / v[2]; view = v;
node.attr("transform", function(d) { return "translate(" + (d.x - v[0]) * k + "," + (d.y - v[1]) * k + ")"; });
circle.attr("r", function(d) { return d.r * k; });
}
window.addEventListener("resize", function(){ console.log("resize registered");
svg.attr("width", window.outerWidth )
.attr("height", window.innerHeight + 20);
w = window.outerWidth - 20,
h = window.innerHeight - 20;
console.log("h=" + h);
});
launchFullScreen(svg);
});
d3.select(self.frameElement).style("height", diameter + "px");
</script>
Modified http://d3js.org/d3.v3.min.js to a secure url
https://d3js.org/d3.v3.min.js