Plot.plot({
width: 1200,
height: 800,
marginLeft: 10,
marginRight: 10,
projection: customProjection,
fx: {
interval: d3.utcYear.every(10),
tickFormat: (d) => `${d.getUTCFullYear()}’s`,
label: null
},
marks: [
Plot.geo(statemesh, {strokeOpacity: 0.1}),
Plot.geo(nation),
Plot.dot(walmarts, {fx: "date", x: "longitude", y: "latitude", r: 1, fill: "currentColor"})
]
})