function genDots2(geo, peoplePerDot) {
let points = { type: "FeatureCollection", features: [] };
for (let polygon of geo.features) {
let bbox = turf.bbox(polygon);
let lineSegments = getProjectedSegments(polygon).map(
([[x0, y0], [x1, y1]]) => ({
coords: [
[x0, y0],
[x1, y1]
],
xmin: Math.min(x0, x1),
xmax: Math.max(x0, x1),
ymin: Math.min(y0, y1),
ymax: Math.max(y0, y1)
})
);
let count = Math.round(polygon.properties.pop / peoplePerDot);
let randomPoints = [];
for (let i = 0, end = count * effort * 2; i < end; i++) {
let unprojectedP = randomPointInPolygon(polygon, bbox);
let p = projectPoint(unprojectedP);
randomPoints.push({
unprojectedP,
p,
d: distanceToNearestSegment(p, lineSegments)
});
}
let i = 1;
while (i <= count) {
let bestIndex = indexOfBest(randomPoints);
let point = randomPoints[bestIndex];
randomPoints[bestIndex] = randomPoints[randomPoints.length - 1];
randomPoints.pop();
updateDistances(randomPoints, point.p);
point.unprojectedP.properties.id =
polygon.properties.item + i.toString().padStart(3, "0");
points.features.push(point.unprojectedP);
i++;
}
}
d3.shuffle(points.features);
return points;
}