vl.spec({
width: 600,
height: 500,
data: { values: countiesData },
transform: [
{
lookup: "id",
from: {
data: { values: waPopulation },
key: "GEOID_TIGER",
fields: ["Estimate2022", "County"]
}
}
],
mark: {
type: "geoshape",
stroke: "white"
},
projection: { type: "mercator" },
encoding: {
color: {
field: "Estimate2022",
type: "quantitative",
title: "Population Estimate (2022)",
scale: { scheme: "tealblues" }
},
tooltip: [
{ field: "County", type: "nominal", title: "County" },
{ field: "Estimate2022", type: "quantitative", title: "Population (2022)" }
]
}
}).render()