Public
Edited
Apr 27, 2023
1 fork
Insert cell
Insert cell
function svgradialpath(points) {
return svg`<svg width=300 height=300><path d="${d3.lineRadial()(
points
)}" fill="none" stroke="darkgray" stroke-width="5" transform="translate(150,150)"></svg>`
}
Insert cell
{
let circle = Array.from({length: 60}, (_, i) => [
(Math.PI / 20) * i,
100
])

return svgradialpath(circle);
}
Insert cell
6 % 40

Insert cell


{

let innerR = 70;
let outerR = 100;
let degrees = 40;

function radius(i) {
let pos = i % degrees;
if (pos - degrees/2 < 2) {
return innerR + (outerR - innerR)/2;
}

return pos >= degrees/2 ? innerR : outerR

}
let circle = Array.from({length: 362}, (_, i) => [
(Math.PI/180) * i,
radius(i)
// (i % degrees) >= degrees/2 ? innerR : outerR
])

return svgradialpath(circle);
}
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