Plot.plot({
y: { reverse: true, ticks: 0 },
x: { ticks: 0 },
r: { type: 'linear', domain: [0, 10], range: [0, 20] },
marginTop: 0,
marginLeft: 0,
marginRight: 0,
marginBottom: 0,
marks: [
nationFeature.features[0].geometry.coordinates.map(
c => c.map(c2 => Plot.line(c2, { fill: '#CCC' }))
),
statesMesh.coordinates.map(c => Plot.line(c, { stroke: '#FFF' })),
Plot.dot(earthquakes.features.filter(d => projection(d.geometry.coordinates) !== null), {
x: d => projection(d.geometry.coordinates)[0],
y: d => projection(d.geometry.coordinates)[1],
r: d => d.properties.mag,
fill: 'rgba(0,150, 200, 0.25)',
})
]
})