Published
Edited
Aug 23, 2022
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
function calculateIntersectionArea(target) {
// Filter features by only those that intersect the target feature
let intersects = indicator.features.filter((feature) =>
turf.booleanIntersects(target, feature)
);
let totalWeight = 0;
intersects = intersects
.map((i) => {
// Calculate the intersection polygon
const intersect = turf.intersect(i, target);
let intersectArea = 0;
let weight = 0;
if (intersect) {
// Take the area of the intersection polygon
intersectArea = turf.area(intersect);
// Calculate the area weight as the percent of tract that intersects the target
weight = (intersectArea / turf.area(i)) * i.properties.population;
totalWeight += weight;
}
return {
...i.properties,
intersectArea,
weight
};
})
.filter((i) => i.intersectArea);
return {
...target.properties,
totalWeight,
intersects
};
}
Insert cell
areaRatios = school.features.slice(0, 20).map(calculateIntersectionArea)
Insert cell
Insert cell
function calculateValue(feature) {
const value = feature.intersects.reduce(
(acc, { value, weight }) => acc + value * weight,
0
);
return {
name: feature.NAME,
geoid: feature.GEOID,
value: value / feature.totalWeight
};
}
Insert cell
areaValues = areaRatios.map(calculateValue)
Insert cell
Insert cell
Insert cell
Insert cell
d3.max(selectedIndicator.dates)
Insert cell
function loadIndicator() {
const year = d3.max(selectedIndicator.dates);
return fetch(
`https://api.healthyplacesindex.org/api/hpi?geography=tracts&year=${year}&indicator=${selectedIndicator.varname}&format=geojson&key=${API_KEY}`
).then((indicatorResponse) => indicatorResponse.json());
}
Insert cell
Insert cell
Insert cell
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