question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Named palettes yield unexpected result

See original GitHub issue

I would assume the following two styles to be equivalent

A B
 {
  bands: [
    {band: 1, palette: ['#000', '#f00']},  // red
    {band: 2, palette: ['#000', '#0f0']},  // green
    {band: 3, palette: ['#000', '#00f']}   // blue
  ]
}
{
 bands: [
    {band: 1, palette: 'red'},
    {band: 2, palette: 'green'},
    {band: 3, palette: 'blue'}
  ]
}

However, they are not and produce totally different thumbnails:

A B
thumbnail ee1bc20c-6d63-4751-be0f-8e5fa529ce66

Is this expected? Should "red" be interpreted as equivalent to ['#000', '#f00']

Issue Analytics

  • State:closed
  • Created a year ago
  • Comments:9 (5 by maintainers)

github_iconTop GitHub Comments

1reaction
mantheycommented, Aug 5, 2022

This was resolved in #858.

1reaction
jeffbaumescommented, May 11, 2022

IMO the palette spec could be designed better. The priority order and all the things a string value could represent seems potentially confusing to users.

def getPaletteColors(value):
    """
    Given a list or a name, return a list of colors in the form of a numpy
    array of RGBA.  If a list, each entry is a color name resolvable by either
    PIL.ImageColor.getcolor, by matplotlib.colors, or a 3 or 4 element list or
    tuple of RGB(A) values on a scale of 0-1.  If this is NOT a list, then, if
    it can be parsed as a color, it is treated as ['#000', <value>].  If that
    cannot be parsed, then it is assumed to be a named palette in palettable
    (such as viridis.Viridis_12) or a named palette in matplotlib (including
    plugins).
    :param value: Either a list, a single color name, or a palette name.  See
        above.
    :returns: a numpy array of RGBA value on the scale of [0-255].
    """

As one idea, I’d suggest new specification modes for the different conditionals so the function does not need to interpret opaque strings in so many ways, something like this:

{
 bands: [
    {band: 1, palette: {channel: 'green'}}, // #000 to #0f0
    {band: 2, palette: {matplotlib: 'jet'}},
    {band: 3, palette: {palettable: 'Earth_7'}},
    {band: 4, palette: ['red', '#112233', 'purple', 'green']}, // interpreted as CSS colors
  ]
}

Single-string palettes like palette: 'green' or palette: '#0f0' would not be allowed (or we allow them for now with existing behavior but deprecate it in the future).

This would still let someone do [‘#000’, ‘green’] and get something perhaps unexpected, but I can’t see a way around that because you probably want to support CSS colors in palette arrays.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Polychrome: Creating New Palettes
This result should not be unexpected based on the “greedy” nature of the underlying algorithm, which tries at each step to find the...
Read more >
D.5 Defining and using custom colors - Bookdown
Color palettes are either defined as functions that return an output vector, data frame, or matrix, or as R objects that are vectors,...
Read more >
seaborn/palettes.py at master - GitHub
Name of a seaborn palette (deep, muted, bright, pastel, dark, colorblind) ... While the separation of the resulting colors will be mathematically.
Read more >
Colloids-Yield-Full-Color-Palette - C&EN
This came as no surprise to Manoharan. Other researchers had made so-called photonic pigments, or pigments based on structural color, ...
Read more >
Plotly: How to change the colorscheme of a plotly express ...
Generally, changing the color scheme for a plotly express figure is very straight-forward. What's causing the problems here is the fact that ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found