Public
Edited
Dec 28, 2022
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
projection = d3.geoOrthographic()
.translate([0, 0])
.scale(10)
Insert cell
path = d3.geoPath(projection)
Insert cell
hemisphere = d3.geoCircle()()
Insert cell
dayScale = {
const scale = d3.scalePoint()
.domain(d3.range(1, 40))
.range([margin.left, width - margin.right])
.padding(1);
return d => {
const start = d3.timeMonth(d);
const offset = start.getDay() || 7;
return scale(d.getDate() + offset);
};
}
Insert cell
monthScale = {
const scale = d3.scalePoint()
.domain(d3.range(12))
.range([margin.top, height - margin.bottom])
.padding(1);
return d => scale(d.getMonth());
}
Insert cell
days = {
const now = new Date(year, 0, 1);
const start = d3.timeYear(now);
return d3.timeDays(start, d3.timeYear.offset(start, 1));
}
Insert cell
months = {
const now = new Date(year, 0, 1);
const start = d3.timeYear(now);
return d3.timeMonths(start, d3.timeYear.offset(start, 1));
}
Insert cell
width = 975
Insert cell
height = 480
Insert cell
margin = ({top: 0, right: 0, bottom: 0, left: 60})
Insert cell
suncalc = require("suncalc@1")
Insert cell
d3 = require("d3@6")
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