Skip to content

Instantly share code, notes, and snippets.

@mbostock
Last active March 31, 2016 20:09
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mbostock/6746848 to your computer and use it in GitHub Desktop.
Save mbostock/6746848 to your computer and use it in GitHub Desktop.
See-Through Globe
license: gpl-3.0

First, the entire globe is drawn with a light color. Then, the front-facing polygons are drawn on top with a darker color. Compare to this alternative approach.

<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
background: #fcfcfa;
}
</style>
<body>
<script src="//d3js.org/d3.v3.min.js"></script>
<script src="//d3js.org/topojson.v1.min.js"></script>
<script>
var width = 960,
height = 960,
speed = -1e-2,
start = Date.now();
var sphere = {type: "Sphere"};
var projection = d3.geo.orthographic()
.scale(width / 2.1)
.translate([width / 2, height / 2])
.precision(.5);
var graticule = d3.geo.graticule();
var canvas = d3.select("body").append("canvas")
.attr("width", width)
.attr("height", height);
var context = canvas.node().getContext("2d");
var path = d3.geo.path()
.projection(projection)
.context(context);
d3.json("/mbostock/raw/4090846/world-110m.json", function(error, topo) {
if (error) throw error;
var land = topojson.feature(topo, topo.objects.land),
grid = graticule();
d3.timer(function() {
context.clearRect(0, 0, width, height);
projection.rotate([speed * (Date.now() - start), -15]).clipAngle(90);
context.beginPath();
path(sphere);
context.lineWidth = 3;
context.strokeStyle = "#000";
context.stroke();
context.fillStyle = "#fff";
context.fill();
projection.clipAngle(180);
context.beginPath();
path(land);
context.fillStyle = "#dadac4";
context.fill();
context.beginPath();
path(grid);
context.lineWidth = .5;
context.strokeStyle = "rgba(119,119,119,.5)";
context.stroke();
projection.clipAngle(90);
context.beginPath();
path(land);
context.fillStyle = "#737368";
context.fill();
context.lineWidth = .5;
context.strokeStyle = "#000";
context.stroke();
});
});
d3.select(self.frameElement).style("height", height + "px");
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment