How to plot the Plankian Locus alongside SDs on CIE chromaticity diagram plots? #1287
Answered
by
KelSolaar
ThomasWilshaw
asked this question in
Q&A
-
Hi, Apolgies if I am missing something obvious but when plotting SDs on the chromaticity chart (e.g. Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
KelSolaar
Aug 12, 2024
Replies: 1 comment 4 replies
-
Hi @ThomasWilshaw, Two ways: import colour
colour.plotting.plot_sds_in_chromaticity_diagram_CIE1931(
[colour.SDS_ILLUMINANTS["D65"]],
chromaticity_diagram_callable_CIE1931=lambda **kwargs: colour.plotting.plot_planckian_locus_in_chromaticity_diagram_CIE1931(
[], **kwargs
),
) figure, axes = colour.plotting.plot_sds_in_chromaticity_diagram_CIE1931(
[colour.SDS_ILLUMINANTS["D65"]],
show=False,
)
colour.plotting.temperature.plot_planckian_locus(axes=axes) Cheers, Thomas |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
ThomasWilshaw
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @ThomasWilshaw,
Two ways:
Cheers,
Thomas