Skip to content

Instantly share code, notes, and snippets.

View emeeks's full-sized avatar

Elijah Meeks emeeks

View GitHub Profile
@emeeks
emeeks / index.html
Last active August 29, 2015 13:57
Handcrafting TopoJSON
<!DOCTYPE html>
<meta charset="utf-8">
<body onload="vorToTopo()">
<svg style="height:1000px;width:1000px;"c height="1000" width="1000">
</svg>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="vorpoly.js"></script>
<script>
@emeeks
emeeks / index.html
Last active August 29, 2015 13:58
Topojson Import into Force-Directed
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>topojson import into force directed network</title>
<meta charset="utf-8" />
</head>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<style>
</style>
@emeeks
emeeks / index.html
Last active September 14, 2015 21:38
Topojson Import into Force-Directed II
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>topojson import into force directed network II</title>
<meta charset="utf-8" />
</head>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<style>
</style>
@emeeks
emeeks / cities.csv
Last active October 2, 2024 03:27
Satellite Projection Explorer
label population country x y
San Francisco 750000 USA 37 -122
Fresno 500000 USA 36 -119
Lahore 12500000 Pakistan 31 74
Karachi 13000000 Pakistan 24 67
Rome 2500000 Italy 41 12
Naples 1000000 Italy 40 14
Rio 12300000 Brazil -22 -43
Sao Paolo 12300000 Brazil -23 -46
@emeeks
emeeks / index.html
Last active August 29, 2015 13:59
Merge Countries Based on Centroid
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Satellite Projection Explorer</title>
<meta charset="utf-8" />
</head>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="http://d3js.org/d3.geo.projection.v0.min.js"></script>
<script src="http://d3js.org/colorbrewer.v1.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<style>
@emeeks
emeeks / index.html
Last active August 29, 2015 14:00
D3 Tile Map with Hand-Drawn Polygon
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>D3 in Action Examples</title>
<meta charset="utf-8" />
</head>
<script src="http://d3js.org/d3.v3.min.js" type="text/javascript">
</script>
<script src="http://d3js.org/d3.geo.projection.v0.min.js" type="text/javascript">
</script>
<script src="tile.js" type="text/javascript">
@emeeks
emeeks / index.html
Last active August 29, 2015 14:00
Sortable Spreadsheet
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>D3 in Action Sortable Spreadhseet Example</title>
<meta charset="utf-8" />
</head>
<script src="http://d3js.org/d3.v3.min.js" type="text/javascript">
</script>
<style>
div.data {
@emeeks
emeeks / index.html
Last active July 27, 2018 23:23
Canvas to dataURL to IMG Element
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>D3 in Action Canvas Example 2</title>
<meta charset="utf-8" />
</head>
<script src="http://d3js.org/d3.v3.min.js" type="text/javascript"></script>
<script src="http://d3js.org/colorbrewer.v1.min.js"></script>
<style>
img {
width: 50px;
@emeeks
emeeks / index.html
Last active August 29, 2015 14:00
Dynamic Image Gallery
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>D3 in Action Gallery Example 1</title>
<meta charset="utf-8" />
</head>
<script src="http://d3js.org/d3.v3.min.js" type="text/javascript"></script>
<script src="http://d3js.org/colorbrewer.v1.min.js"></script>
<style>
#gallery {
@emeeks
emeeks / index.html
Last active August 29, 2015 14:00
Dynamic Image Gallery with Zoom To Select Element
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>D3 in Action Gallery Example 2</title>
<meta charset="utf-8" />
</head>
<script src="http://d3js.org/d3.v3.min.js" type="text/javascript"></script>
<script src="http://d3js.org/colorbrewer.v1.min.js"></script>
<style>