Public
Edited
May 4, 2024
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
paths = FileAttachment("route_2024.geojson").json()
Insert cell
Insert cell
Inputs = require("@observablehq/inputs@0.7.8/dist/inputs.umd.min.js")
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
/*viewof selectedYear = {
const select = document.createElement("select");
years.forEach(year => {
const option = document.createElement("option");
option.value = year;
option.text = year;
select.appendChild(option);
});
select.value = years[0];
return select;
}*/
Insert cell
/*viewof selectedMonth = {
const select = document.createElement("select");
months.forEach(month => {
const option = document.createElement("option");
option.value = month;
option.text = new Date(0, month - 1).toLocaleString('default', { month: 'long' });
select.appendChild(option);
});
select.value = 1;
return select;
}*/
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