data = Object.keys(json).map(d => {
const a = json[d].map(d => d3.merge([ projection([d[1], d[0]]), [d[2], d[3]] ]));
const x = d3.scaleLinear()
.domain(a.map(d => d[3]))
.range(a.map(d => d[0]))
.clamp(true);
const y = d3.scaleLinear()
.domain(a.map(d => d[3]))
.range(a.map(d => d[1]))
.clamp(true);
const opacity = function(t) {
const before = t < a[0][3];
const after = t > a[a.length - 1][3];
return (before || after) ? 0 : 1;
}
return [x, y, opacity]
})