colour.plotting.tm3018.plot_single_sd_colour_rendition_report_full

colour.plotting.tm3018.plot_single_sd_colour_rendition_report_full(sd, source=None, date=None, manufacturer=None, model=None, notes=None, report_size=(8.27, 11.69), report_row_height_ratios=(1, 2, 24, 3, 1), report_box_padding=None, **kwargs)[source]

Generates the full ANSI/IES TM-30-18 Colour Rendition Report for given spectral distribution.

Parameters
  • sd (SpectralDistribution or SpectralDistribution_IESTM2714) – Spectral distribution of the emission source to generate the report for.

  • source (unicode, optional) – Emission source name, defaults to colour.SpectralDistribution_IESTM2714.header.description or colour.SpectralDistribution_IESTM2714.name properties value.

  • date (unicode, optional) – Emission source measurement date, defaults to colour.SpectralDistribution_IESTM2714.header.report_date property value.

  • manufacturer (unicode, optional) – Emission source manufacturer, defaults to colour.SpectralDistribution_IESTM2714.header.manufacturer property value.

  • model (unicode, optional) – Emission source model, defaults to colour.SpectralDistribution_IESTM2714.header.catalog_number property value.

  • notes (unicode, optional) – Notes pertaining to the emission source, defaults to colour.SpectralDistribution_IESTM2714.header.comments property value.

  • report_size (array_like, optional) – Report size, default to A4 paper size in inches.

  • report_row_height_ratios (array_like, optional) – Report size row height ratios.

  • report_box_padding (array_like, optional) – Report box padding, tries to define the padding around the figure and in-between the axes.

  • **kwargs (dict, optional) – {colour.plotting.artist(), colour.plotting.render()}, Please refer to the documentation of the previously listed definitions.

Returns

Current figure and axes.

Return type

tuple

Examples

>>> from colour import SDS_ILLUMINANTS
>>> sd = SDS_ILLUMINANTS['FL2']
>>> plot_single_sd_colour_rendition_report_full(sd)
... 
(<Figure size ... with ... Axes>, <...AxesSubplot...>)
plot_single_sd_colour_rendition_report_full