milton_counties = counties_intersected.map(({properties}) => {
const { GEOID: county_fips, NAME: county_name } = properties;
const o = Object.assign(
{ county_fips, county_name, state_postal: "FL" },
historical_county_populations_index.get(county_fips),
census_2023_index.get(county_name)
);
const d = {};
keep.forEach(c => {
const v = o[c];
d[c] = c.includes("pop") ? +v : v;
});
const qcew = counties_qcew_index.get(county_fips);
d.total_annual_wages_1980 = +qcew.entries.find(d => d.year === "1980").total_annual_wages;
d.total_annual_wages_2020 = +qcew.entries.find(d => d.year === "2020").total_annual_wages;
d.total_annual_wages_2023 = +qcew.entries.find(d => d.year === "2023").total_annual_wages;
return d;
})