Plot.plot({
projection: "equal-earth",
width: 975,
inset: 1,
length: { range: [0, 50] },
marks: [
Plot.geo(countries, { fill: "#ddd" }),
Plot.geo(countrymesh, { stroke: "#fff" }),
Plot.spike(urbanbylocation, {
x: "Long",
y: "Lat",
filter: d => !(d.Long===0 && d.Lat===0),
stroke: "red",
length: "count",
}),
Plot.sphere(),
legendSpike([1, 2, 3, 4, 5], { stroke: "red" })
]
})