Skip to content

Instantly share code, notes, and snippets.

/_.md

Forked from ptvans/_.md
Created September 25, 2012 02:46
Show Gist options
  • Save anonymous/3779697 to your computer and use it in GitHub Desktop.
Save anonymous/3779697 to your computer and use it in GitHub Desktop.
just another inlet to tributary
{"editor_editor":{"coffee":false,"vim":false,"emacs":false,"width":542,"height":519,"hide":false},"endpoint":"tributary","public":true,"editor_json0":{"vim":false,"emacs":false,"width":796,"height":583,"hide":false}}
[
{
"city": "Zurich",
"country": " Switzerland",
"lat": 47.3690239,
"lon": 8.5380326,
"days": 10,
"year": 2012,
"purpose": "travel"
},
{
"city": "London",
"country": " United Kingdom",
"lat": 51.5001524,
"lon": -0.1262362,
"days": 3,
"year": 2012,
"purpose": "airport"
},
{
"city": "Paris",
"country": " France",
"lat": 48.8566667,
"lon": 2.3509871,
"days": 1,
"year": 2012,
"purpose": "airport"
},
{
"city": "Amsterdam",
"country": " Netherlands",
"lat": 52.3738007,
"lon": 4.8909347,
"days": 1,
"year": 2012,
"purpose": "airport"
}
]
var data = tributary.data;
var svg = d3.select("svg");
var barw = 10;
var boxh = 10;
svg.append("rect")
.attr({
width: barw,
height: function(d,i){
var barh = data.days;
return barh;
},
x: 100,
y: 100,
fill: "#496C99"
});
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment