delaunayHexagons = {
const hexes = hexMapForPoints();
const delaunay = delaunator.from(aqi, d => d.lng, d => d.lat)
for (let t = 0; t < delaunay.triangles.length / 3; t++) {
const triangle = [3 * t, 3 * t + 1, 3 * t + 2]
.map(e => aqi[delaunay.triangles[e]])
.map(({lat, lng}) => [lat, lng]);
const triangleHexes = triangle.map(([lat, lng]) => h3.geoToH3(lat, lng, h3Resolution));
for (const h3Index of h3.polyfill(triangle, h3Resolution)) {
if (!hexes.has(h3Index)) {
const value = weightedValue(h3Index, triangleHexes, hexes);
hexes.set(h3Index, {value});
}
}
}
runSmooth(hexes);
return geojsonForHexMap(hexes);
}