Published
Edited
Nov 11, 2021
2 stars
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
import { data, interpolateTerrain } from "@d3/volcano-contours"
Insert cell
function volcanoScene({
displacementScale = 0.5,
width,
height,
...options
} = {}) {
const id = "a" + Math.random().toString(16).slice(2);

return html`
<a-scene embedded stats=false style="height: 500px" id=${id}>

<a-assets>
<img id=${id}-texture>
<img id=${id}-displacement>
<img id=${id}-normal>
</a-assets>

<a-plane
class="plane"
position="0 1.8 -3"
rotation="-30 0 0" width="${(width / height) * 4}" height="${4}"

src="#${id}-texture"
normal-map="#${id}-texture"
displacement-map="#${id}-displacement"
displacement-scale=${displacementScale}

segments-width=${Math.min(width, 200)}
segments-height=${Math.min(height, 200)}
></a-plane>

</a-scene>`;
}
Insert cell
updater = {
const s = d3.select(volcano);
const id = s.attr("id");

s.select(`#${id}-texture`).attr(
"src",
heatmap(data.values, {
width: data.width,
height: data.height,
color: interpolateTerrain
}).toDataURL()
);

s.select(`#${id}-displacement`).attr(
"src",
heatmap(data.values, {
width: data.width,
height: data.height,
color: (t) => d3.interpolateGreys(1 - t)
}).toDataURL()
);

let t0 = Date.now();
do {
const a = (2 + Math.sin((Date.now() - t0) / 3000)) / 3;
s.select(".plane").attr("displacement-scale", a);
yield { a };
} while (animate);
}
Insert cell
aframe = require("https://aframe.io/releases/0.8.2/aframe.min.js")
Insert cell
import { heatmap } from "@fil/heatmap"
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