Connor Ingram U.S. County Interactive Population Visualization (2013)
Data from https://en.wikipedia.org/wiki/List_of_United_States_counties_and_county_equivalents and corresponding sources.
The data contains: """ The International Committee for Information Technology Standards (INCITS) code The entity name The state or federal district The population as of July 1, 2013, as estimated by United States Census Bureau """ I use https://d3js.org/us-10m.v1.json for the map visualization, which contains the INCITS code for each county. The population data is bound on creation of the path elements.
Im using the null projection (d3.geoPath() with no projection specified). Since the input geometries are pre-projected, another projection would slow down performace significantly. I originally tested projections with different topologies such as geoMercator(), but had trouble finding a small enough geojson that would run smoothly enough at the county-level.
https://d3js.org/d3.v4.min.js
https://d3js.org/d3-scale-chromatic.v1.min.js
https://d3js.org/topojson.v1.min.js