Published
Edited
Jul 21, 2021
Insert cell
Insert cell
Insert cell
Insert cell
md`### Projection`
Insert cell
height = 700
Insert cell
projection = d3
.geoAlbers()
.rotate([-1 * nh_long])
.center([0, nh_lat])
.scale(width * 15)
.parallels([42.5, 45])
.translate([width / 2, height / 1.25])
Insert cell
path = d3.geoPath(projection)
Insert cell
center_NAP_long = -75.0
Insert cell
center_NAP_lat = 43.25
Insert cell
nh_long = -71.5724
Insert cell
nh_lat = 43.1939
Insert cell
md`### Color Scale`
Insert cell
color_scale = {
const max = d3.max(bb_submissions, d => +d.properties.Max_UPLOAD);
const min = d3.min(bb_submissions, d => +d.properties.Max_UPLOAD);
console.log("min", min, "max", max);
return d3
.scaleSequential(d3.interpolateRdBu)
.domain([twenty_fifth, seventy_fifth]);
}
Insert cell
seventy_fifth = {
return d3.quantile(
d3.map(bb_submissions, d => +d.properties.Max_UPLOAD),
.75
);
}
Insert cell
twenty_fifth = {
return d3.quantile(
d3.map(bb_submissions, d => +d.properties.Max_UPLOAD),
.25
);
}
Insert cell
md`### Data`
Insert cell
broadband = FileAttachment("bbspeedtests.json").json()
Insert cell
bb_features = broadband.features.filter(d => d.geometry != null)
Insert cell
bb_submissions = bb_features.map(function(d) {
return { position: d.geometry.coordinates, properties: d.properties };
})
Insert cell
towns = FileAttachment("towns_unproj.json").json()
Insert cell
md`### Imports`
Insert cell
d3 = require("d3@6")
Insert cell
import { legend, swatches } from "@d3/color-legend"
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