LSSTApplications  20.0.0
LSSTDataManagementBasePackage
Classes | Functions | Variables
lsst.display.matplotlib.matplotlib Namespace Reference

Classes

class  AsinhNormalize
 
class  AsinhZScaleNormalize
 
class  BlockingKeyInput
 
class  DisplayImpl
 
class  LinearNormalize
 
class  Normalize
 
class  ZScaleNormalize
 

Functions

def mapCtype (ctype)
 

Variables

list interactiveBackends
 
dictionary matplotlibCtypes
 

Function Documentation

◆ mapCtype()

def lsst.display.matplotlib.matplotlib.mapCtype (   ctype)
Map the ctype to a potentially different ctype

Specifically, if matplotlibCtypes[ctype] exists, use it instead

This is used e.g. to map "green" to a brighter shade

Definition at line 72 of file matplotlib.py.

72  def mapCtype(ctype):
73  """Map the ctype to a potentially different ctype
74 
75  Specifically, if matplotlibCtypes[ctype] exists, use it instead
76 
77  This is used e.g. to map "green" to a brighter shade
78  """
79  return matplotlibCtypes[ctype] if ctype in matplotlibCtypes else ctype
80 
81 

Variable Documentation

◆ interactiveBackends

list lsst.display.matplotlib.matplotlib.interactiveBackends
Initial value:
1 = [
2  "Qt4Agg",
3  "Qt5Agg",
4  ]

Definition at line 60 of file matplotlib.py.

◆ matplotlibCtypes

dictionary lsst.display.matplotlib.matplotlib.matplotlibCtypes
Initial value:
1 = {
2  afwDisplay.GREEN: "#00FF00",
3  }

Definition at line 68 of file matplotlib.py.

lsst.display.matplotlib.matplotlib.mapCtype
def mapCtype(ctype)
Definition: matplotlib.py:72