Public
Edited
Oct 8, 2024
Insert cell
Insert cell
zone_values@3.csv
Type Table, then Shift-Enter. Ctrl-space for more options.

Insert cell
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
Insert cell
countyMap = {
let czs = new Map();
let counties = await FileAttachment("county_to_cz.csv").csv();
counties.forEach(d => czs.set(d.id, d.cz));
return czs
}
Insert cell
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