colormap_milagro¶
-
gammapy.image.
colormap_milagro
(transition=0.5, width=0.0001, huestart=0.6)[source]¶ Colormap often used in Milagro collaboration publications.
This colormap is gray below
transition
and similar to the jet colormap above.A sharp gray -> color transition is often used for significance images with a transition value of
transition ~ 5
ortransition ~ 7
, so that the following effect is achieved:- gray: non-significant features are not well visible
- color: significant features at the detection threshold
transition
Note that this colormap is often criticised for over-exaggerating small differences in significance below and above the gray - color transition threshold.
The transition parameter is defined between 0 and 1. To calculate the value from data units an
ImageNormalize
instance should be used (see example below).Parameters: transition : float (default = 0.5)
Transition value (below: gray, above: color).
width : float (default = 0.0001)
Width of the transition
huestart : float (default = 0.6)
Hue of the color at
transition
Returns: colormap :
LinearSegmentedColormap
Colormap
Examples
>>> from gammapy.image import colormap_milagro >>> from astropy.visualization.mpl_normalize import ImageNormalize >>> from astropy.visualization import LinearStretch >>> normalize = ImageNormalize(vmin=-5, vmax=15, stretch=LinearStretch()) >>> transition = normalize(5) >>> cmap = colormap_milagro(transition=transition)
(Source code, png, hires.png, pdf)