bounds = {
const state_fips = "23";
const state_topojson = us.objects.states.geometries.filter(d => d.id == "23")[0];
const state_geojson = topojson.feature(us, state_topojson);
const [[x0, y0], [x1, y1]] = path.bounds(state_geojson);
return [[x0, y0], [x1, y1]];
}