Published
Edited
Oct 13, 2021
1 fork
Importers
21 stars
Insert cell
Insert cell
Insert cell
usAlbers = (await fetch('https://cdn.jsdelivr.net/npm/us-atlas@3/counties-albers-10m.json')).json()
Insert cell
Insert cell
projection = d3.geoAlbersUsa().scale(1300).translate([487.5, 305])
Insert cell
Insert cell
nationFeature = topojson.feature(usAlbers, usAlbers.objects.nation)
Insert cell
statesMesh = topojson.mesh(usAlbers, usAlbers.objects.states, (a, b) => a !== b)
Insert cell
Insert cell
Insert cell
Insert cell
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: [
// U.S. Outline
nationFeature.features[0].geometry.coordinates.map(
c => c.map(c2 => Plot.line(c2, { fill: '#CCC' }))
),
// State Outlines
statesMesh.coordinates.map(c => Plot.line(c, { stroke: '#FFF' })),
// Earthquake dots
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)',
})
]
})
Insert cell
Insert cell
topojson = require("topojson-client@3")
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more