Public
Edited
Jul 18, 2023
Importers
8 stars
Also listed in…
Utilities
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
viewof cvdExample = inputCvd({ condition: "none", label: "Custom label" })
Insert cell
Insert cell
cvdExample
Insert cell
Insert cell
Insert cell
dataCvd = FileAttachment("cvd.json").json()
Insert cell
Insert cell
mapMatrixCvd = {
var result = new Map(
Object.entries(dataCvd).map(([k, v]) => [k, d3.piecewise(v)])
);

result.set("none", (t) => [
[1, 0, 0],
[0, 1, 0],
[0, 0, 1]
]);

return result;
}
Insert cell
Insert cell
// (String, Number) -> Array
matrixCvd = function (condition, severity) {
return mapMatrixCvd.get(condition)(severity);
}
Insert cell
Insert cell
matrixCvd("protan", 0.15)
Insert cell
Insert cell
// string, number -> (color -> string)
//
// given a condition and a severity,
// returns a function that given a color,
// returns a hexcode
functionCvd = function (condition, severity) {
const mat = matrixCvd(condition, severity);

return function (color) {
const vec = Color.default(color).array().map(sRGB_to_linearRGB);

const vecCvd = math.multiply(mat, vec).map(linearRGB_to_sRGB);

return Color.default.rgb(vecCvd).hex();
};
}
Insert cell
Insert cell
["#FF0000", "#00FF00", "#0000FF"].map(functionCvd("deuteran", 1.0))
Insert cell
Insert cell
Color.default("red")
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
import { changeTable } from "@ijlyttle/change-log"
Insert cell
Insert cell
Insert cell
Color = import("https://cdn.skypack.dev/color@4.2.3")
Insert cell
Color.default("red").array()
Insert cell
math = import("https://cdn.skypack.dev/mathjs@11.5.1?")
Insert cell
Insert cell
sRGB_to_linearRGB = function (x) {
x = x / 255;
const y = x <= 0.03928 ? x / 12.92 : Math.pow((x + 0.055) / 1.055, 2.4);
return y * 255;
}
Insert cell
linearRGB_to_sRGB = function (y) {
y = y / 255;
const x =
y <= 0.03928 / 12.92 ? 12.92 * y : 1.055 * Math.pow(y, 1 / 2.4) - 0.055;
return x * 255;
}
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