{
const context = DOM.context2d(width, height);
const files = ["AL062018_lin", "AL062018_pts", "AL062018_radii", "AL062018_windswath"];
yield context.canvas;
let a = [];
mutable z = 0;
const path = d3.geoPath(projection, context);
const source = await shapefile.open("https://pbogden.com/mapping/data/florence/" + files[1] + ".shp", null);
while (true) {
const result = await source.read();
if (result.done) break;
a.push([result.value]);
mutable z++;
context.beginPath(), path(result.value), context.stroke();
}
}