Published
Edited
Jul 7, 2021
1 fork
Also listed in…
Projections
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
projection = d3
.geoAiry()
.radius(radius)
.clipAngle(clipAngle)
.rotate([0, -90])
.fitExtent([[2, 2], [width - 2, height - 2]], { type: "Sphere" })
Insert cell
import { image } from "@fil/armadillo-glsl"
Insert cell
glproj = {
const raw = d3.geoAiryRaw(radius * radians);
return `
float beta = ${radius * radians},
tanBeta_2 = tan(beta / 2.),
b = 2. * log(cos(beta / 2.)) / (tanBeta_2 * tanBeta_2);
float rho = sqrt(x * x + y * y);
float z = -beta / 2., z_2, cosz_2, sinz_2, tanz_2, lnsecz_2, delta = 1.;

for (int i = 0; i < 25; i++) {
if (abs(delta) > 1e-6) {
z_2 = z / 2.,
cosz_2 = cos(z_2),
sinz_2 = sin(z_2),
tanz_2 = sinz_2 / cosz_2,
lnsecz_2 = -log(abs(cosz_2));
z -= delta = (2. / tanz_2 * lnsecz_2 - b * tanz_2 - rho) / (-lnsecz_2 / (sinz_2 * sinz_2) + 1. - b / (2. * cosz_2 * cosz_2)) * (cosz_2 < 0.0 ? 0.7 : 1.);
}
}
float sinz = sin(z);
lambda = atan(x * sinz, rho * cos(z));
phi = asin(y * sinz / rho);

if (rho > ${raw(0, projection.clipAngle() * radians)[1]}) transparent = true;

`;
}
Insert cell
height = width
Insert cell
import { reglCanvas, createDrawCommand, regl } with {
width,
height,
projection,
glproj,
image
} from "@fil/phytoplankton"
Insert cell
d3 = require("d3@7", "d3-geo-projection@3")
Insert cell
import { drag } from "@d3/versor-dragging"
Insert cell
import { slider } from "@jashkenas/inputs"
Insert cell
import { cos, radians } from "@fil/math"
Insert cell
land = d3.json(
"https://unpkg.com/visionscarto-world-atlas@0.0.6/world/110m_land.geojson"
)
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