Skip to content

Instantly share code, notes, and snippets.

@arce
Last active April 12, 2020 06:21
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arce/9357998 to your computer and use it in GitHub Desktop.
Save arce/9357998 to your computer and use it in GitHub Desktop.
Costa Rica TopoJSON

These districts, cantons, provinces and country boundaries are extracted from a single TopoJSON file. Districts are stroked in thin gray, cantons in red, and provinces and country in thick black.

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.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<meta charset="utf-8">
<style type="text/css">
.limites-boundary {
fill: #ddd;
stroke-width: 1px;
stroke: #000;
}
.distrito-boundary {
fill: none;
stroke: #999;
stroke-width: 0.1px;
}
.canton-boundary {
fill: none;
stroke: red;
stroke-width: 0.5px;
}
.provincia-boundary {
fill: none;
stroke: #000;
stroke-width: 1px;
}
</style>
<title></title>
</head>
<body>
<script src="http://d3js.org/d3.v3.min.js" type="text/javascript">
</script><script src="http://d3js.org/topojson.v1.min.js" type="text/javascript">
</script><script type="text/javascript">
var width = 960,
height = 700;
var projection = d3.geo.mercator()
.scale(12000)
.center([-84.5, 10.1]);
var path = d3.geo.path()
.projection(projection);
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
d3.json("division.json", function(error, topology) {
svg.append("path")
.datum(topojson.feature(topology, topology.objects.limites))
.attr("d", path)
.attr("class", "limites-boundary");
svg.append("path")
.datum(topojson.feature(topology, topology.objects.distritos, function(a, b) { return a !== b; }))
.attr("d", path)
.attr("class", "distrito-boundary");
svg.append("path")
.datum(topojson.mesh(topology, topology.objects.cantones, function(a, b) { return a !== b; }))
.attr("d", path)
.attr("class", "canton-boundary");
svg.append("path")
.datum(topojson.mesh(topology, topology.objects.provincias, function(a, b) { return a !== b; }))
.attr("d", path)
.attr("class", "provincia-boundary");
});
</script>
</body>
</html>
@pamgarva
Copy link

pamgarva commented Jul 6, 2017

Hola! Este ejercicio está buenísimo, habrás intentado generar el JSON con los identificadores de las provincias, cantones y distritos administrativos?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment