Skip to content

Instantly share code, notes, and snippets.

@engleek
Created December 12, 2013 22:30
Show Gist options
  • Save engleek/7936723 to your computer and use it in GitHub Desktop.
Save engleek/7936723 to your computer and use it in GitHub Desktop.
Tributary inlet
{"description":"Tributary inlet","endpoint":"","display":"svg","public":true,"require":[],"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},"data.csv":{"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,"thumbnail":"http://i.imgur.com/kF9Ww90.png"}
country city name year
France Paris Trésors de Chypre 1967
France Autun Antiquités méditerranéennes 1975
France Marseille Collection de Chypre 1976
France Provinces Antiquités de Chypre du Musée du Louvre 1976
France Paris La religion à Chypre dans l’antiquité 1978
France Paris Chypre, les travaux et les jours 1982
France Paris La France aux portes de l’Orient 1991
France Paris Art antique de Chypre, du bronze moyen à l’époque byzantine 1994
France Toulouse Périple méditerranéen : Antiquités d’Afrique du Nord et du Moyen-Orient 2003
France Paris Traditions de Chypre à travers le temps 2010
France Marseille Chypre et l’UE 2012
France Paris Chypre entre Byzance et l’Occident 2012
Suisse Genève Trésors de Chypre 1968
Suisse Genève Chypre, d’Aphrodite à Mélusine 2006
Etats-Unis Berkeley Antiquities of Cyprus 1971
Etats-Unis Stanford Antiquities of Cyprus 1972
Etats-Unis Albany Sculpture of Cyprus 1974
Etats-Unis Sarasota Ancient art from Cyprus : the Ringling Collection 1983
Etats-Unis Malibu Cyprus before the Bronze Age : art of the chalcolithic period 1990
Etats-Unis New-York Ancient art from Cyprus : The Cesnola collection 2000
Etats-Unis New-York From Ishtar to Aphrodite : 3200 years of cypriot hellenism, treasures from the museum of Cyprus 2003
Etats-Unis Washington Cyprus : Crossroads of Civilizations 2010
Etats-Unis Princeton City of Gold : Tomb and temple in ancient Cyprus 2012
Grèce Athènes Icônes byzantines de Chypre 1976
Belgique Bruxelles Cyclades, Crète, Mycène, Chypre : âge du bronze 1976
Belgique Mariemont Chypre, 8000 ans de civilisation entre trois continents 1982
Belgique Bruxelles Mapping Cyprus, Crusaders, Traders and Explorers 2012
Belgique Bruxelles Chypre ancienne, le dialogue des cultures 2012
Royaume-Uni Londres Cyprus BC : 7000 years of history 1979
Royaume-Uni Birmingham Cyprus BC : 7000 years of history 1979
Royaume-Uni Londres Cyprus, the Holy Island : Icons through the centuries 2000
Royaume-Uni Cambridge Ceramic art, Craft and Tales from medieval Cyprus 2012
Allemagne Munich Trésors de Chypre 1968
Allemagne Frankfort Les soeurs d’Aphrodite et la Chypre chrétienne : 9000 ans de culture en Chypre 1987
Allemagne Giessen Table de culte : poterie chypriote dans son contexte 2010
Ecosse Edimbourg Aphrodite’s Island : Art and archeology of ancient Cyprus 1988
Pays-Bas Amsterdam Cyprus and Aphrodite 1989
Italie Milan Trésors de Chypre 1968
Italie Turin Luigi Palma di Cesnola  : La gesta di un piemintese dagli scavi du Cipro al Metropolitan Museum 2004
Italie Rome Aphrodite, déesse de la méditerranée 2012
Roumanie Bucarest The swedish Cyprus expedition on tour 2005
Suède Stockhom Cyprus - 7000 years of history 2013
var width = 500;
var height = 300;
var data = tributary.data;
var groups = d3.nest().key(function(d) {
return d.pays;
}).rollup(function(d) {
return d3.sum(d, function(g) {
return g.value;
});
}).entries(harvest);
console.log(groups);
var svg = d3.select('svg');
var x = d3.time.scale()
.domain(d3.extent(data, function (d) { return d.year; }))
.range([0, width]);
var y = d3.scale.ordinal()
.domain(d3.extent(data, function (d) { return d.year; }))
.range([0, width]);
body {
font: 10px sans-serif;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.x.axis path {
display: none;
}
.line {
fill: none;
stroke: steelblue;
stroke-width: 1.5px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment