Public
Edited
Jun 7, 2023
Importers
Insert cell
Insert cell
Insert cell
smellMyCityData = d3.json('https://philipmathieu.github.io/stinky-cache/response.json')
Insert cell
Insert cell
startDate = new Date(Math.min(...smellMyCityData.map(d => d.observed_at)) * 1000)
Insert cell
endDate = new Date(Math.max(...smellMyCityData.map(d => d.observed_at)) * 1000)
Insert cell
weatherData = fetch("https://philipmathieu.github.io/stinky-weather-cache/response.json").then(response => {
console.log(response);
return response.json();
})
Insert cell
weatherData.map(d => new Date(d.DATE) / 1000)
Insert cell
// Generate a mapping from datetime to wind direction
winds = weatherData
.map((d) => [d.DATE, windScale(parseInt(d.WDF5))])
// Use an Array.reduce() to "accumulate" everything into one Object
.reduce((o, key) => ({ ...o, [key[0]]: key[1]}), {})
Insert cell
// Use d3 to make wind directions "snap" to the compass options
windScale = d3.scaleQuantize()
.domain([0,360])
.range(windDirections)
Insert cell
windDirections = [0, 45, 90, 135, 180, 225, 270, 315]
Insert cell
Insert cell
mapLibreData = {
const dateParse = d3.timeParse("%s");
const dateFormat = d3.timeFormat("%I %p, %B %d, %Y");

return {
type: "FeatureCollection",
features: smellMyCityData.map(x => ({
type: "Feature",
geometry: {
type: "Point",
coordinates: [
x.longitude,
x.latitude
]
},
properties: {
description: x.smell_description,
timestamp: x.observed_at,
date: dateFormat(dateParse(x.observed_at)),
datetime: (new Date(x.observed_at * 1000)),
winddir: winds[(new Date(x.observed_at *1000)).toISOString().substring(0,10)]
}
}))
};
}
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