colour.models.RGB_COLOURSPACE_PLASA_ANSI_E154#

colour.models.RGB_COLOURSPACE_PLASA_ANSI_E154 = RGB_Colourspace('PLASA ANSI E1.54',                 [[7.347e-01, 2.653e-01],                  [1.596e-01, 8.404e-01],                  [3.660e-02, 1.000e-04]],                 [0.4254, 0.4044],                 'PLASA ANSI E1.54',                 [[9.08326466e-01, 1.27611601e-01, 1.59907169e-02],                  [3.27996477e-01, 6.71959833e-01, 4.36904833e-05],                  [0.00000000e+00, 0.00000000e+00, 4.20870425e-01]],                 [[ 1.18198169, -0.22446963, -0.04488538],                  [-0.57694792,  1.59775212,  0.02175492],                  [ 0.        ,  0.        ,  2.3760282 ]],                 linear_function,                 linear_function,                 False,                 False)#

PLASA ANSI E1.54 colourspace.

Notes

The [0.4254, 0.4044] whitepoint chromaticity coordinates are described by [Woo14] to be that of a “2° Planckian source at 3,200 K”. However, we can show that the chromaticity coordinates should be [0.4234, 0.3990]:

sd = colour.sd_blackbody(3200)
colour.XYZ_to_xy(
    colour.sd_to_XYZ(
        sd, colour.MSDS_CMFS["CIE 1931 2 Degree Standard Observer"]
    )
).round(4)

References

[PLASANAmerica15], [Woo14]