{
const context = DOM.context2d(width, height);
yield context.canvas;
const path = d3.geoPath(projection, context);
const stream = await FileAttachment("UScounties.json").stream();
const reader = stream.pipeThrough(geojsonStream.parse()).getReader();
while (true) {
const { done, value: feature } = await reader.read();
if (done) break;
context.beginPath(), path(feature), context.stroke();
}
}