Difference between revisions of "Dia3:P6"

From uf
Jump to: navigation, search
 
(15 intermediate revisions by one user not shown)
Line 1: Line 1:
 
<html>
 
<html>
<iframe src="https://player.vimeo.com/video/307284335" width="640" height="360" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
+
<iframe src="https://player.vimeo.com/video/307284335" width="920" height="517" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
 
</html>
 
</html>
  
Line 6: Line 6:
  
 
[[File:01 - Direct Daylight.jpg]]
 
[[File:01 - Direct Daylight.jpg]]
 +
 
[[File:02-Diffused Daylight.jpg]]
 
[[File:02-Diffused Daylight.jpg]]
 +
 
[[File:03 - Isolation.jpg]]
 
[[File:03 - Isolation.jpg]]
 +
 
[[File:04 - Courtyard Proximity.jpg]]
 
[[File:04 - Courtyard Proximity.jpg]]
 +
 
[[File:05 - Events Space Proximity.jpg]]
 
[[File:05 - Events Space Proximity.jpg]]
 +
 
[[File:02.jpg]]
 
[[File:02.jpg]]
 +
 
[[File:Sec 01.jpg]]
 
[[File:Sec 01.jpg]]
 +
 
[[File:Sec 02.jpg]]
 
[[File:Sec 02.jpg]]
 
<html>
 
  <head>
 
    <title>Parallel Coordinates</title>
 
    <link type="text/css" rel="stylesheet" href="ex.css?3.2"/>
 
    <script type="text/javascript" src="../protovis-r3.2.js"></script>
 
    <script type="text/javascript" src="cars.js"></script>
 
    <style type="text/css">
 
 
#fig {
 
  width: 880px;
 
  height: 460px;
 
}
 
 
#title {
 
  position: absolute;
 
  top: 70px;
 
  left: 200px;
 
  padding: 10px;
 
  background: white;
 
}
 
 
large {
 
  font-size: medium;
 
}
 
 
    </style>
 
  </head>
 
  <body><div id="center"><div id="fig">
 
    <script type="text/javascript+protovis">
 
 
// The units and dimensions to visualize, in order.
 
var units = {
 
  cyl: {name: "cylinders", unit: ""},
 
  dsp: {name: "displacement", unit: " sq in"},
 
  lbs: {name: "weight", unit: " lbs"},
 
  hp: {name: "horsepower", unit: " hp"},
 
  acc: {name: "acceleration (0-60 mph)", unit: " sec"},
 
  mpg: {name: "mileage", unit: " mpg"},
 
  year: {name: "year", unit: ""}
 
}
 
 
var dims = pv.keys(units);
 
 
/* Sizing and scales. */
 
var w = 820,
 
    h = 420,
 
    fudge = 0.5,
 
    x = pv.Scale.ordinal(dims).splitFlush(0, w),
 
    y = pv.dict(dims, function(t) pv.Scale.linear(
 
        cars.filter(function(d) !isNaN(d[t])),
 
        function(d) Math.floor(d[t])-fudge,
 
        function(d) Math.ceil(d[t]) +fudge
 
        ).range(0, h)),
 
    c = pv.dict(dims, function(t) pv.Scale.linear(
 
        cars.filter(function(d) !isNaN(d[t])),
 
        function(d) Math.floor(d[t])-fudge,
 
        function(d) Math.ceil(d[t]) +fudge
 
        ).range("steelblue", "brown"));
 
 
/* Interaction state. */
 
var filter = pv.dict(dims, function(t) {
 
    return {min: y[t].domain()[0], max: y[t].domain()[1]};
 
  }), active = "mpg";
 
 
/* The root panel. */
 
var vis = new pv.Panel()
 
    .width(w)
 
    .height(h)
 
    .left(30)
 
    .right(30)
 
    .top(30)
 
    .bottom(20);
 
 
// The parallel coordinates display.
 
vis.add(pv.Panel)
 
    .data(cars)
 
    .visible(function(d) dims.every(function(t)
 
        (d[t] >= filter[t].min) && (d[t] <= filter[t].max)))
 
  .add(pv.Line)
 
    .data(dims)
 
    .left(function(t, d) x(t))
 
    .bottom(function(t, d) y[t](d[t]))
 
    .strokeStyle("#ddd")
 
    .lineWidth(1)
 
    .antialias(false);
 
 
// Rule per dimension.
 
rule = vis.add(pv.Rule)
 
    .data(dims)
 
    .left(x);
 
 
// Dimension label
 
rule.anchor("top").add(pv.Label)
 
    .top(-12)
 
    .font("bold 10px sans-serif")
 
    .text(function(d) units[d].name);
 
 
// The parallel coordinates display.
 
var change = vis.add(pv.Panel);
 
 
var line = change.add(pv.Panel)
 
    .data(cars)
 
    .visible(function(d) dims.every(function(t)
 
        (d[t] >= filter[t].min) && (d[t] <= filter[t].max)))
 
  .add(pv.Line)
 
    .data(dims)
 
    .left(function(t, d) x(t))
 
    .bottom(function(t, d) y[t](d[t]))
 
    .strokeStyle(function(t, d) c[active](d[active]))
 
    .lineWidth(1);
 
 
// Updater for slider and resizer.
 
function update(d) {
 
  var t = d.dim;
 
  filter[t].min = Math.max(y[t].domain()[0], y[t].invert(h - d.y - d.dy));
 
  filter[t].max = Math.min(y[t].domain()[1], y[t].invert(h - d.y));
 
  active = t;
 
  change.render();
 
  return false;
 
}
 
 
// Updater for slider and resizer.
 
function selectAll(d) {
 
  if (d.dy < 3) {
 
    var t = d.dim;
 
    filter[t].min = Math.max(y[t].domain()[0], y[t].invert(0));
 
    filter[t].max = Math.min(y[t].domain()[1], y[t].invert(h));
 
    d.y = 0; d.dy = h;
 
    active = t;
 
    change.render();
 
  }
 
  return false;
 
}
 
 
/* Handle select and drag */
 
var handle = change.add(pv.Panel)
 
    .data(dims.map(function(dim) { return {y:0, dy:h, dim:dim}; }))
 
    .left(function(t) x(t.dim) - 30)
 
    .width(60)
 
    .fillStyle("rgba(0,0,0,.001)")
 
    .cursor("crosshair")
 
    .event("mousedown", pv.Behavior.select())
 
    .event("select", update)
 
    .event("selectend", selectAll)
 
  .add(pv.Bar)
 
    .left(25)
 
    .top(function(d) d.y)
 
    .width(10)
 
    .height(function(d) d.dy)
 
    .fillStyle(function(t) t.dim == active
 
        ? c[t.dim]((filter[t.dim].max + filter[t.dim].min) / 2)
 
        : "hsla(0,0,50%,.5)")
 
    .strokeStyle("white")
 
    .cursor("move")
 
    .event("mousedown", pv.Behavior.drag())
 
    .event("dragstart", update)
 
    .event("drag", update);
 
 
handle.anchor("bottom").add(pv.Label)
 
    .textBaseline("top")
 
    .text(function(d) filter[d.dim].min.toFixed(0) + units[d.dim].unit);
 
 
handle.anchor("top").add(pv.Label)
 
    .textBaseline("bottom")
 
    .text(function(d) filter[d.dim].max.toFixed(0) + units[d.dim].unit);
 
 
vis.render();
 
 
    </script>
 
  </div></div></body>
 
</html>
 

Latest revision as of 21:24, 19 February 2019


01 - Direct Daylight.jpg

02-Diffused Daylight.jpg

03 - Isolation.jpg

04 - Courtyard Proximity.jpg

05 - Events Space Proximity.jpg

02.jpg

Sec 01.jpg

Sec 02.jpg