Public
Edited
Mar 8, 2023
Paused
7 forks
Importers
13 stars
Topographic MappingBubble mapChoropleth
Access to Family planning
MD Counties Total Cases MapTendance de la production des déchets en Union EuropéenneAndy's Walgreens COVID-19 Tracker TrackerElection Maps for Incomplete ResultsA better U.S. house election results map?1983 Mayoral Election, Dot density mapsMastodon 🐘Cheat sheet bertinBertin.js: regular squaresWaterlinesNeumorphism Contour Density MapCartographic DoodlesStars and constellationsPlot: Grid choroplethHello Polygon MorphingMapping with pie chartsU.S. Geographic DataHow big are countries... like really!AttitudeB&W ChoroplethWeb Mercator Tile VisibilityMARTINI: Real-Time RTIN Terrain Mesh"Magnifying-Glass" projectionsTissot's indicatrixAntipodal mapMapping gridded data with a Voronoi diagramA Map of Every BuildingUrbano Monti’s Planisphere (1587)Bivariate choroplethDIY HillshadeMapbox Map MakerWorld tourHillshaderSimplified Earth with curved shapesHexbin mapInner glowNicolosi vs. StereographicData-driven projections: Darwin's worldSatellite ground track visualizerDirection to shoreHello, OpenLayers!U.S. airports VoronoiHello, NYC Geosearch API!Mapbox Fly-ToSpilhaus shoreline mapWalmart’s growthHow well does population density predict U.S. voting outcomes?Drawing maps from geodata with D3 & ObservableHexgrid maps with d3-hexgridTissot's indicatrixWorld airports VoronoiSwiss Elevation Line GraphsVector tilesVersor draggingOrthographicSolar TerminatorStreaming ShapefilesFake GlobesPeirce Quincuncial🍃 LeafletU.S.G.S. World Earthquake MapUsing Mapbox GL JSUsing Google Maps
Also listed in…
Plot Examples
Insert cell
Insert cell
choropleth = Plot.plot({
width: 928,
projection: { type: "equal-earth", rotate: [-10, 0] },
color: {
type: "quantize",
n: 10,
unknown: "#ddd",
label: "Share of Women with access to modern methods of family planning (%)",
legend: true,
width: 360
},
marks: [
Plot.sphere({ fill: "#f0faff", stroke: "currentColor" }),
Plot.geo(land, { fill: "currentColor", dx: 1, dy: 1 }), // shade
Plot.graticule(),
Plot.geo(countries, {
fill: (d) => byName.get(d.properties.name)?.value,
stroke: "currentColor",
strokeWidth: 0.25,
title: (d) => `${d.properties.name}: ${byName.get(d.properties.name)?.value.toFixed(1) ?? "No data"}`
}),

// Gray swatch legend for no data
() =>
svg`<g transform="translate(0,3)"><rect width=16 height=15 fill="#ddd"></rect><text x=21 dy=1.1em fill=currentColor text-anchor=start>No data.</text></g>`
]
})
Insert cell
Insert cell
Insert cell
fp = FileAttachment("family-planning.csv").csv({typed: true})
Insert cell
Insert cell
byName0 = d3.index(fp, (d) => d.country)
Insert cell
Insert cell
minimalist = Plot.geo(countries, {
fill: (d) => byName0.get(d.properties.name)?.value
}).plot({ projection: "equirectangular", color: { scheme: "blues", unknown: "#ccc" } })
Insert cell
Insert cell
html`<small>${[...byName0.keys()].filter((name) => !countries.features.find((d) => d.properties.name === name)).sort().join(" / ")}`
Insert cell
Insert cell
rename = new Map([
["Antigua and Barbuda", "Antigua and Barb."],
["Bolivia (Plurinational State of)", "Bolivia"],
["Bosnia and Herzegovina", "Bosnia and Herz."],
["Central African Republic", "Central African Rep."],
["Cook Islands", "Cook Is."],
["Democratic People's Republic of Korea", "North Korea"],
["Democratic Republic of the Congo", "Dem. Rep. Congo"],
["Dominican Republic", "Dominican Rep."],
["Equatorial Guinea", "Eq. Guinea"],
["Eswatini", "eSwatini"], // formerly known as Swaziland
["Iran (Islamic Republic of)", "Iran"],
["Lao People's Democratic Republic", "Laos"],
["Marshall Islands", "Marshall Is."],
["Republic of Korea", "South Korea"],
["Russian Federation", "Russia"],
["Saint Kitts and Nevis", "St. Kitts and Nevis"],
["Saint Vincent and the Grenadines", "St. Vin. and Gren."],
["Sao Tome and Principe", "São Tomé and Principe"],
["Solomon Islands", "Solomon Is."],
["South Sudan", "S. Sudan"],
["Syrian Arab Republic", "Syria"],
["Türkiye", "Turkey"],
["United Kingdom of Great Britain and Northern Ireland", "United Kingdom"],
["United Republic of Tanzania", "Tanzania"],
["Venezuela (Bolivarian Republic of)", "Venezuela"],
["Viet Nam", "Vietnam"],
["occupied Palestinian territory, including east Jerusalem", "Palestine"],
])
Insert cell
Insert cell
byName = d3.index(fp, (d) => rename.get(d.country) ?? d.country)
Insert cell
renamed = Plot.geo(countries, {
fill: (d) => byName.get(d.properties.name)?.value,
stroke: "red",
strokeWidth: (d) => byName.get(d.properties.name)?.value ? 0 : 1.5,
sort: (d) => byName.get(d.properties.name)?.value,
title: d => byName.get(d.properties.name)?.value ? "" : d.properties.name,
}).plot({ projection: "equirectangular", color: { unknown: "lime", scheme: "greys" } })
Insert cell
Insert cell
Insert cell
Inputs.table(
[...byName].filter(
([name]) => !countries.features.find((d) => d.properties.name === name)
)
)
Insert cell
Insert cell
Inputs.table(
countries.features
.filter((d) => byName.get(d.properties.name)?.value == null)
.map(({ id, properties }) => ({ id, ...properties }))
)
Insert cell
Insert cell
import { land50m as land, countries50m as countries } from "@visionscarto/geo"
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