Skip to content

Instantly share code, notes, and snippets.

@mbostock
Forked from mbostock/.block
Last active February 9, 2016 01:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mbostock/2869871 to your computer and use it in GitHub Desktop.
Save mbostock/2869871 to your computer and use it in GitHub Desktop.
Albers Projection
license: gpl-3.0
<!DOCTYPE html>
<meta charset="utf-8">
<title>Albers Projection</title>
<style>
path {
fill: #ccc;
stroke: #fff;
}
</style>
<svg width="960" height="500"></svg>
<script src="//d3js.org/d3.v3.min.js"></script>
<script>
var projection = d3.geo.albers();
var path = d3.geo.path()
.projection(projection);
var svg = d3.select("svg");
d3.json("states.json", function(error, collection) {
if (error) throw error;
svg.selectAll("path")
.data(collection.features)
.enter().append("path")
.attr("d", path);
});
</script>
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