~ev/errors/openid_auth_failure

« back to all changes in this revision

Viewing changes to static/js/d3/examples/data/README.md

  • Committer: Evan Dandrea
  • Date: 2012-03-31 17:07:36 UTC
  • Revision ID: evan.dandrea@canonical.com-20120331170736-rypmkpbayaeg1wji
Move to Django for the stats pages. Use d3.js instead of YUI3's charts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## World Boundaries
 
2
 
 
3
These are derived from the public domain [Natural Earth](http://www.naturalearthdata.com/downloads/) cultural vector files, 110m resolution. Then, ogr2ogr was used to convert to GeoJSON. Lastly, the data was cleaned up slightly, removing extra properties and a degenerate edge from Antarctica.
 
4
 
 
5
 collection.features.forEach(function(d, i) {
 
6
   d.id = d.properties.ISO_A3;
 
7
   d.properties = {name: d.properties.SOVEREIGNT};
 
8
 });
 
9
 
 
10
## United States Boundaries
 
11
 
 
12
These are derived from the cartographic boundary files from the 2000 [U.S. Census](http://www.census.gov/geo/www/cob/bdy_files.html
 
13
). Then, MapShaper was used to simplify the geometry, and ogr2ogr to convert the shapefiles to GeoJSON. Some additional work was done to preserve the FIPS codes, which are dropped from the shapefiles by MapShaper.