Public
Edited
Feb 6, 2024
19 stars
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
selectedLights = ({
type: "FeatureCollection",
features: await db.exec(IntersectQuery).get.objs
})
Insert cell
{
if (mapReady && selectedLights) {
map.getSource("lights-halos").setData(selectedLights);
}
}
Insert cell
Insert cell
Insert cell
map.on("load", async () => {
// source for all lights
map.addSource("lights", {
type: "geojson",
data: { type: "FeatureCollection", features: [] }
});
// source for light halos
map.addSource("lights-halos", {
type: "geojson",
data: { type: "FeatureCollection", features: [] }
});
// blur buffer for light halos
map.addLayer({
id: "lights-blur",
type: "circle",
source: "lights-halos",
paint: {
"circle-radius": [
"interpolate",
["cubic-bezier", 1, 1, 1, 1],
["zoom"],
8,
4,
22,
30
],
"circle-color": "#fef08a",
"circle-blur": ["interpolate", ["linear"], ["zoom"], 8, 6, 22, 1]
}
});
// small, dark circle for all lights
map.addLayer({
id: "lights",
type: "circle",
source: "lights",
paint: {
"circle-radius": ["interpolate", ["linear"], ["zoom"], 8, 0.25, 22, 3],
"circle-color": "#fef08a",
"circle-opacity": 0.25
}
});
// small, circle for selected lights
map.addLayer({
id: "lights-on",
type: "circle",
source: "lights-halos",
paint: {
"circle-radius": ["interpolate", ["linear"], ["zoom"], 8, 0.25, 22, 3],
"circle-color": "#fef08a"
}
});

mutable mapReady = true;
})
Insert cell
last = ({delay:0})
Insert cell
debounced = {
bufferCenter;
bufferWidth;
setTimeout(() => {
last.delay = 150;
setTimeout(() => (last.delay = 0), last.delay);
}, 0);
}
Insert cell
marker = new mapboxgl.Marker({ draggable: true })
.setLngLat([5.7245, 45.1885])
.addTo(map)
Insert cell
mutable bufferCenter = [5.7245, 45.1885]
Insert cell
marker.on(
"drag",
(d) =>
(mutable bufferCenter = [
Math.round(marker.getLngLat().lng * 100000) / 100000,
Math.round(marker.getLngLat().lat * 100000) / 100000
])
)
Insert cell
Insert cell
lights = {
if (mapReady) {
const _lights = (await db.exec(GeoJSONQuery).get.objs).reduce(
(obj, item) => {
obj.features.push(item);
return obj;
},
{ type: "FeatureCollection", features: [] }
);
map.getSource("lights").setData(_lights);
return _lights;
} else {
return { type: "FeatureCollection", features: [] };
}
}
Insert cell
Insert cell
Insert cell
Insert cell
dbsrc = FileAttachment("lights@1.sqlite").arrayBuffer()
Insert cell
projsrc = FileAttachment("proj.db").arrayBuffer()
Insert cell
Insert cell
db = spl
.mount("proj", [{ name: "proj.db", data: projsrc }])
.db(dbsrc)
.exec("select initspatialmetadata(1)")
Insert cell
Insert cell
spl = SPL.default()
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