Skip to content

Instantly share code, notes, and snippets.

@mbostock
Last active August 11, 2022 21:42
  • Star 7 You must be signed in to star a gist
  • Fork 12 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save mbostock/4090848 to your computer and use it in GitHub Desktop.
U.S. States TopoJSON
license: gpl-3.0
height: 600
border: no
redirect: https://observablehq.com/@d3/u-s-map
<!DOCTYPE html>
<style>
.states :hover {
fill: red;
}
.state-borders {
fill: none;
stroke: #fff;
stroke-width: 0.5px;
stroke-linejoin: round;
stroke-linecap: round;
pointer-events: none;
}
</style>
<svg width="960" height="600"></svg>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://d3js.org/topojson.v2.min.js"></script>
<script>
var svg = d3.select("svg");
var path = d3.geoPath();
d3.json("https://d3js.org/us-10m.v1.json", function(error, us) {
if (error) throw error;
svg.append("g")
.attr("class", "states")
.selectAll("path")
.data(topojson.feature(us, us.objects.states).features)
.enter().append("path")
.attr("d", path);
svg.append("path")
.attr("class", "state-borders")
.attr("d", path(topojson.mesh(us, us.objects.states, function(a, b) { return a !== b; })));
});
</script>
@Jakobud
Copy link

Jakobud commented May 9, 2016

@mvnmin by editing the us.json file and removing the Alaska and Hawaii elements.

@nani3105
Copy link

nani3105 commented Aug 5, 2016

How can we display putero rico and virgin islands bellow texas/lousiana

@jsj14
Copy link

jsj14 commented Apr 11, 2017

Any updates on this? How to show puerto rico along with USA states

@Ognami
Copy link

Ognami commented May 3, 2017

Not to be a total noob but... how do I associate these regions with state names? I only see them referred to as IDs.

@rbndelrio
Copy link

@Ognami: not sure if you found the solution, but I had the same problem. The IDs weren't ordered alphabetically or statehood, but by their ANSI standardized code. You can find the codes here:
https://www2.census.gov/geo/docs/reference/state.txt

And if you want to match county polygons to their names:
https://www2.census.gov/geo/docs/reference/codes/files/national_county.txt

@helixmat
Copy link

Also cannot get Puerto Rico to display. It has coordinates in the json, but d for the path is empty when the map is drawn.

@suriyacs
Copy link

suriyacs commented Apr 19, 2018

How to draw individual state's counties!!? I mean Draw counties of a particular state by passing state name or anything related to state!!?

@cassiodorus
Copy link

Hi suriyacs ... I have the same need. Have you determined how to draw the counties for an individual state?

@ErwinPrimaisa
Copy link

please give me a tutorial to enter latitude and longtitude data, using this map

@TheDuelist
Copy link

for what stands this?:
.attr("class", "states")

and
.attr("class", "state-borders")

@nro-bot
Copy link

nro-bot commented Aug 11, 2022

@Ognami: not sure if you found the solution, but I had the same problem. The IDs weren't ordered alphabetically or statehood, but by their ANSI standardized code. You can find the codes here: https://www2.census.gov/geo/docs/reference/state.txt

And if you want to match county polygons to their names: https://www2.census.gov/geo/docs/reference/codes/files/national_county.txt

THANKS!! Searched for an hour for this... I was looking at altair vega's us by income plot (https://altair-viz.github.io/gallery/us_incomebrackets_by_state_facet.html) and could not figure out what the key='id' meant, I definitely thought it was alphabetical but then wasn't confident what happens to e.g. District of Columbia. Not sure how I found this but much appreciated

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