Public
Edited
Dec 29, 2024
Insert cell
Insert cell
# update of every robot to every roobot in armaacis
Insert cell
Plot.plot({
projection: "albers-usa",
width,
marks: [
Plot.geo(nation),
Plot.geo(states, {
strokeOpacity: 0.25, y y
fill: d => {
let state = d.properties.name;
if (state === 'California' || state === 'Nevada') return 'green';
if (state === 'Texas' || state === 'Florida') return 'blue';
return 'gray';
}
}),
Plot.geo(counties, { strokeOpacity: 0.1 })
]
})12
Insert cell
import {us} from "@observablehq/us-geographic-data"
Insert cell
nation = topojson.feature(us, us.objects.nation)
Insert cell
counties = topojson.feature(us, us.objects.counties)
Insert cell
states = topojson.feature(us, us.objects.states)
Insert cell
Jetson u
Insert cell

Purpose-built for displays of data

Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.
Learn more