diff --git a/README.md b/README.md index 79842a11..a071a81f 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,7 @@ Currently this means: * `pyopengl` for 3D graphics * `pyopengl` on macOS Big Sur only works with python 3.9.1+ * `hdf5` for large hdf5 binary format support + * `colorcet` for supplimental colormaps Qt Bindings Test Matrix ----------------------- diff --git a/examples/colorMaps.py b/examples/colorMaps.py new file mode 100644 index 00000000..fb648a66 --- /dev/null +++ b/examples/colorMaps.py @@ -0,0 +1,103 @@ +# -*- coding: utf-8 -*- +""" +This example demonstrates the use of ImageView, which is a high-level widget for +displaying and analyzing 2D and 3D data. ImageView provides: + + 1. A zoomable region (ViewBox) for displaying the image + 2. A combination histogram and gradient editor (HistogramLUTItem) for + controlling the visual appearance of the image + 3. A timeline for selecting the currently displayed frame (for 3D data only). + 4. Tools for very basic analysis of image data (see ROI and Norm buttons) + +""" +## Add path to library (just for examples; you do not need this) +import initExample + +import numpy as np +from pyqtgraph.Qt import QtCore, QtGui +import pyqtgraph as pg + +app = pg.mkQApp() + +## Create window with ImageView widget +win = QtGui.QMainWindow() +win.resize(1000,800) + +lw = pg.GraphicsLayoutWidget() +lw.setFixedWidth(1000) +lw.setSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding) + +scr = QtGui.QScrollArea() +scr.setVerticalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOn) +scr.setWidget(lw) +win.setCentralWidget(scr) +win.show() +win.setWindowTitle('pyqtgraph example: Color maps') + +## Create color map test image +width = 3*256 +height = 32 +img = np.zeros( (width, height) ) +gradient = np.linspace(0.05, 0.95, width) +modulation = np.zeros(width) +for idx in range(width): + modulation[idx] = -0.05 * np.sin( 200 * np.pi * idx/width ) +for idx in range(height): + img[:,idx] = gradient + (idx/(height-1)) * modulation + +num_bars = 0 + +lw.addLabel('=== local color maps ===') +num_bars += 1 +lw.nextRow() +list_of_maps = pg.colormap.listMaps() +for map_name in list_of_maps: + num_bars += 1 + lw.addLabel(map_name) + cmap = pg.colormap.get(map_name) + imi = pg.ImageItem() + imi.setImage(img) + imi.setLookupTable( cmap.getLookupTable(alpha=True) ) + vb = lw.addViewBox(lockAspect=True, enableMouse=False) + vb.addItem(imi) + lw.nextRow() + +lw.addLabel('=== Matplotlib import ===') +num_bars += 1 +lw.nextRow() +list_of_maps = pg.colormap.listMaps('matplotlib') +for map_name in list_of_maps: + num_bars += 1 + lw.addLabel(map_name) + cmap = pg.colormap.get(map_name, source='matplotlib', skipCache=True) + if cmap is not None: + imi = pg.ImageItem() + imi.setImage(img) + imi.setLookupTable( cmap.getLookupTable(alpha=True) ) + vb = lw.addViewBox(lockAspect=True, enableMouse=False) + vb.addItem(imi) + lw.nextRow() + +lw.addLabel('=== ColorCET import ===') +num_bars += 1 +lw.nextRow() +list_of_maps = pg.colormap.listMaps('colorcet') +for map_name in list_of_maps: + num_bars += 1 + lw.addLabel(map_name) + cmap = pg.colormap.get(map_name, source='colorcet', skipCache=True) + if cmap is not None: + imi = pg.ImageItem() + imi.setImage(img) + imi.setLookupTable( cmap.getLookupTable(alpha=True) ) + vb = lw.addViewBox(lockAspect=True, enableMouse=False) + vb.addItem(imi) + lw.nextRow() + +lw.setFixedHeight(num_bars * (height+5) ) + +## Start Qt event loop unless running in interactive mode. +if __name__ == '__main__': + import sys + if (sys.flags.interactive != 1) or not hasattr(QtCore, 'PYQT_VERSION'): + QtGui.QApplication.instance().exec_() diff --git a/pyqtgraph/colormap.py b/pyqtgraph/colormap.py index eb423634..3661bf75 100644 --- a/pyqtgraph/colormap.py +++ b/pyqtgraph/colormap.py @@ -2,6 +2,181 @@ import numpy as np from .Qt import QtGui, QtCore from .python2_3 import basestring from .functions import mkColor +from os import path, listdir +import collections + +_mapCache = {} + +def listMaps(source=None): + """ + Warning, highly experimental, subject to change. + + List available color maps + =============== ================================================================= + **Arguments:** + source 'matplotlib' lists maps that can be imported from MatPlotLib + 'colorcet' lists maps that can be imported from ColorCET + otherwise local maps are listed + =============== ================================================================= + """ + if source is None: + pathname = path.join(path.dirname(__file__), 'colors','maps') + files = listdir( pathname ) + list_of_maps = [] + for filename in files: + if filename[-4:] == '.csv': + list_of_maps.append(filename[:-4]) + return list_of_maps + elif source.lower() == 'matplotlib': + try: + import matplotlib.pyplot as mpl_plt + list_of_maps = mpl_plt.colormaps() + return list_of_maps + except ModuleNotFoundError: + return [] + elif source.lower() == 'colorcet': + try: + import colorcet + list_of_maps = list( colorcet.palette.keys() ) + list_of_maps.sort() + return list_of_maps + except ModuleNotFoundError: + return [] + return [] + + +def get(name, source=None, skipCache=False): + """ + Warning, highly experimental, subject to change. + + Returns a ColorMap object from a local definition or imported from another library + =============== ================================================================= + **Arguments:** + name Name of color map. Can be a path to a defining file. + source 'matplotlib' imports a map defined by Matplotlib + 'colorcet' imports a maps defined by ColorCET + otherwise local data is used + =============== ================================================================= + """ + if not skipCache and name in _mapCache: + return _mapCache[name] + if source is None: + return _get_from_file(name) + elif source == 'matplotlib': + return _get_from_matplotlib(name) + elif source == 'colorcet': + return _get_from_colorcet(name) + return None + +def _get_from_file(name): + filename = name + if filename[0] !='.': # load from built-in directory + dirname = path.dirname(__file__) + filename = path.join(dirname, 'colors/maps/'+filename) + if not path.isfile( filename ): # try suffixes if file is not found: + if path.isfile( filename+'.csv' ): filename += '.csv' + elif path.isfile( filename+'.txt' ): filename += '.txt' + with open(filename,'r') as fh: + idx = 0 + color_list = [] + if filename[-4:].lower() != '.txt': + csv_mode = True + else: + csv_mode = False + for line in fh: + name = None + line = line.strip() + if len(line) == 0: continue # empty line + if line[0] == ';': continue # comment + parts = line.split(sep=';', maxsplit=1) # split into color and names/comments + if csv_mode: + comp = parts[0].split(',') + if len( comp ) < 3: continue # not enough components given + color_tuple = tuple( [ int(255*float(c)+0.5) for c in comp ] ) + else: + hex_str = parts[0] + if hex_str[0] == '#': + hex_str = hex_str[1:] # strip leading # + if len(hex_str) < 3: continue # not enough information + if len(hex_str) == 3: # parse as abbreviated RGB + hex_str = 2*hex_str[0] + 2*hex_str[1] + 2*hex_str[2] + elif len(hex_str) == 4: # parse as abbreviated RGBA + hex_str = 2*hex_str[0] + 2*hex_str[1] + 2*hex_str[2] + 2*hex_str[3] + if len(hex_str) < 6: continue # not enough information + color_tuple = tuple( bytes.fromhex( hex_str ) ) + color_list.append( color_tuple ) + idx += 1 + # end of line reading loop + # end of open + cm = ColorMap( + pos=np.linspace(0.0, 1.0, len(color_list)), + color=color_list) #, names=color_names) + _mapCache[name] = cm + return cm + +def _get_from_matplotlib(name): + """ import colormap from matplotlib definition """ + # inspired and informed by "mpl_cmaps_in_ImageItem.py", published by Sebastian Hoefer at + # https://github.com/honkomonk/pyqtgraph_sandbox/blob/master/mpl_cmaps_in_ImageItem.py + try: + import matplotlib.pyplot as mpl_plt + except ModuleNotFoundError: + return None + cm = None + col_map = mpl_plt.get_cmap(name) + if hasattr(col_map, '_segmentdata'): # handle LinearSegmentedColormap + data = col_map._segmentdata + if ('red' in data) and isinstance(data['red'], collections.Sequence): + positions = set() # super-set of handle positions in individual channels + for key in ['red','green','blue']: + for tup in data[key]: + positions.add(tup[0]) + col_data = np.zeros((len(positions),4 )) + col_data[:,-1] = sorted(positions) + for idx, key in enumerate(['red','green','blue']): + positions = np.zeros( len(data[key] ) ) + comp_vals = np.zeros( len(data[key] ) ) + for idx2, tup in enumerate( data[key] ): + positions[idx2] = tup[0] + comp_vals[idx2] = tup[1] # these are sorted in the raw data + col_data[:,idx] = np.interp(col_data[:,3], positions, comp_vals) + cm = ColorMap(pos=col_data[:,-1], color=255*col_data[:,:3]+0.5) + # some color maps (gnuplot in particular) are defined by RGB component functions: + elif ('red' in data) and isinstance(data['red'], collections.Callable): + col_data = np.zeros((64, 4)) + col_data[:,-1] = np.linspace(0., 1., 64) + for idx, key in enumerate(['red','green','blue']): + col_data[:,idx] = np.clip( data[key](col_data[:,-1]), 0, 1) + cm = ColorMap(pos=col_data[:,-1], color=255*col_data[:,:3]+0.5) + elif hasattr(col_map, 'colors'): # handle ListedColormap + col_data = np.array(col_map.colors) + cm = ColorMap(pos=np.linspace(0.0, 1.0, col_data.shape[0]), color=255*col_data[:,:3]+0.5 ) + if cm is not None: + _mapCache[name] = cm + return cm + +def _get_from_colorcet(name): + """ import colormap from colorcet definition """ + try: + import colorcet + except ModuleNotFoundError: + return None + color_strings = colorcet.palette[name] + color_list = [] + for hex_str in color_strings: + if hex_str[0] != '#': continue + if len(hex_str) != 7: + raise ValueError('Invalid color string '+str(hex_str)+' in colorcet import.') + color_tuple = tuple( bytes.fromhex( hex_str[1:] ) ) + color_list.append( color_tuple ) + if len(color_list) == 0: + return None + cm = ColorMap( + pos=np.linspace(0.0, 1.0, len(color_list)), + color=color_list) #, names=color_names) + _mapCache[name] = cm + return cm + class ColorMap(object): @@ -9,52 +184,51 @@ class ColorMap(object): A ColorMap defines a relationship between a scalar value and a range of colors. ColorMaps are commonly used for false-coloring monochromatic images, coloring scatter-plot points, and coloring surface plots by height. - + Each color map is defined by a set of colors, each corresponding to a particular scalar value. For example: - + | 0.0 -> black | 0.2 -> red | 0.6 -> yellow | 1.0 -> white - + The colors for intermediate values are determined by interpolating between the two nearest colors in either RGB or HSV color space. - + To provide user-defined color mappings, see :class:`GradientWidget `. """ - - + ## color interpolation modes RGB = 1 HSV_POS = 2 HSV_NEG = 3 - - ## boundary modes - CLIP = 1 + + ## mapping modes + CLIP = 1 REPEAT = 2 MIRROR = 3 - + DIVERGING = 4 + ## return types BYTE = 1 FLOAT = 2 QCOLOR = 3 - + enumMap = { 'rgb': RGB, - 'hsv+': HSV_POS, - 'hsv-': HSV_NEG, - 'clip': CLIP, - 'repeat': REPEAT, - 'mirror': MIRROR, + # 'hsv+': HSV_POS, + # 'hsv-': HSV_NEG, + # 'clip': CLIP, + # 'repeat': REPEAT, 'byte': BYTE, 'float': FLOAT, 'qcolor': QCOLOR, } - - def __init__(self, pos, color, mode=None): + + def __init__(self, pos, color, mode=None, mapping=None): #, names=None): """ - =============== ============================================================== + =============== ================================================================= **Arguments:** pos Array of positions where each color is defined color Array of colors. @@ -64,7 +238,13 @@ class ColorMap(object): indicating the color space that should be used when interpolating between stops. Note that the last mode value is ignored. By default, the mode is entirely RGB. - =============== ============================================================== + mapping Mapping mode (ColorMap.CLIP, REPEAT, MIRROR, or DIVERGING) + controlling mapping of relative index to color. + CLIP maps colors to [0.0;1.0] + REPEAT maps colors to repeating intervals [0.0;1.0];[1.0-2.0],... + MIRROR maps colors to [0.0;-1.0] and [0.0;+1.0] identically + DIVERGING maps colors to [-1.0;+1.0] + =============== ================================================================= """ self.pos = np.array(pos) order = np.argsort(self.pos) @@ -77,15 +257,38 @@ class ColorMap(object): if mode is None: mode = np.ones(len(pos)) self.mode = mode - self.stopsCache = {} + + if mapping is None: + self.mapping_mode = self.CLIP + elif mapping == self.REPEAT: + self.mapping_mode = self.REPEAT + elif mapping == self.DIVERGING: + self.mapping_mode = self.DIVERGING + elif mapping == self.MIRROR: + self.mapping_mode = self.MIRROR + else: + self.mapping_mode = self.CLIP + self.stopsCache = {} + + def __getitem__(self, key): + """ Convenient shorthand access to palette colors """ + if isinstance(key, int): # access by color index + return self.getByIndex(key) + # otherwise access by map + try: # accept any numerical format that converts to float + float_idx = float(key) + return self.mapToQColor(float_idx) + except ValueError: pass + return None + def map(self, data, mode='byte'): """ Return an array of colors corresponding to the values in *data*. Data must be either a scalar position or an array (any shape) of positions. The *mode* argument determines the type of data returned: - + =========== =============================================================== byte (default) Values are returned as 0-255 unsigned bytes. float Values are returned as 0.0-1.0 floats. @@ -99,10 +302,7 @@ class ColorMap(object): pos, color = self.getStops(self.BYTE) else: pos, color = self.getStops(mode) - - # don't need this--np.interp takes care of it. - #data = np.clip(data, pos.min(), pos.max()) - + # Interpolate # TODO: is griddata faster? # interp = scipy.interpolate.griddata(pos, color, data) @@ -112,6 +312,15 @@ class ColorMap(object): if not isinstance(data, np.ndarray): data = np.array(data) interp = np.empty(data.shape + (color.shape[1],), dtype=color.dtype) + + if self.mapping_mode != self.CLIP: + if self.mapping_mode == self.REPEAT: + data = data % 1.0 + elif self.mapping_mode == self.DIVERGING: + data = (data/2)+0.5 + elif self.mapping_mode == self.MIRROR: + data = abs(data) + for i in range(color.shape[1]): interp[...,i] = np.interp(data, pos, color[:,i]) @@ -135,7 +344,11 @@ class ColorMap(object): def mapToFloat(self, data): """Convenience function; see :func:`map() `.""" return self.map(data, mode=self.FLOAT) - + + def getByIndex(self, idx): + """Retrieve palette QColor by index""" + return QtGui.QColor( *self.color[idx] ) + def getGradient(self, p1=None, p2=None): """Return a QLinearGradient object spanning from QPoints p1 to p2.""" if p1 == None: @@ -147,25 +360,8 @@ class ColorMap(object): pos, color = self.getStops(mode=self.BYTE) color = [QtGui.QColor(*x) for x in color] g.setStops(list(zip(pos, color))) - - #if self.colorMode == 'rgb': - #ticks = self.listTicks() - #g.setStops([(x, QtGui.QColor(t.color)) for t,x in ticks]) - #elif self.colorMode == 'hsv': ## HSV mode is approximated for display by interpolating 10 points between each stop - #ticks = self.listTicks() - #stops = [] - #stops.append((ticks[0][1], ticks[0][0].color)) - #for i in range(1,len(ticks)): - #x1 = ticks[i-1][1] - #x2 = ticks[i][1] - #dx = (x2-x1) / 10. - #for j in range(1,10): - #x = x1 + dx*j - #stops.append((x, self.getColor(x))) - #stops.append((x2, self.getColor(x2))) - #g.setStops(stops) return g - + def getColors(self, mode=None): """Return list of all color stops converted to the specified mode. If mode is None, then no conversion is done.""" @@ -182,7 +378,7 @@ class ColorMap(object): color = [QtGui.QColor(*x) for x in color] return color - + def getStops(self, mode): ## Get fully-expanded set of RGBA stops in either float or byte mode. if mode not in self.stopsCache: @@ -193,19 +389,9 @@ class ColorMap(object): color = color.astype(float) / 255. ## to support HSV mode, we need to do a little more work.. - #stops = [] - #for i in range(len(self.pos)): - #pos = self.pos[i] - #color = color[i] - - #imode = self.mode[i] - #if imode == self.RGB: - #stops.append((x,color)) - #else: - #ns = self.stopsCache[mode] = (self.pos, color) return self.stopsCache[mode] - + def getLookupTable(self, start=0.0, stop=1.0, nPts=512, alpha=None, mode='byte'): """ Return an RGB(A) lookup table (ndarray). @@ -223,23 +409,23 @@ class ColorMap(object): """ if isinstance(mode, basestring): mode = self.enumMap[mode.lower()] - + if alpha is None: alpha = self.usesAlpha() - + x = np.linspace(start, stop, nPts) table = self.map(x, mode) - + if not alpha and mode != self.QCOLOR: return table[:,:3] else: return table - + def usesAlpha(self): """Return True if any stops have an alpha < 255""" max = 1.0 if self.color.dtype.kind == 'f' else 255 return np.any(self.color[:,3] != max) - + def isMapTrivial(self): """ Return True if the gradient has exactly two stops in it: black at 0.0 and white at 1.0. diff --git a/pyqtgraph/colors/maps/CC-BY license - applies to CET color map data.txt b/pyqtgraph/colors/maps/CC-BY license - applies to CET color map data.txt new file mode 100644 index 00000000..36790535 --- /dev/null +++ b/pyqtgraph/colors/maps/CC-BY license - applies to CET color map data.txt @@ -0,0 +1,250 @@ +Creative Commons Attribution 4.0 International Public License (CC-BY) + + By exercising the Licensed Rights (defined below), You accept and agree + to be bound by the terms and conditions of this Creative Commons + Attribution 4.0 International Public License ("Public License"). To the + extent this Public License may be interpreted as a contract, You are + granted the Licensed Rights in consideration of Your acceptance of + these terms and conditions, and the Licensor grants You such rights in + consideration of benefits the Licensor receives from making the + Licensed Material available under these terms and conditions. + + Section 1 - Definitions. + a. Adapted Material means material subject to Copyright and Similar + Rights that is derived from or based upon the Licensed Material and + in which the Licensed Material is translated, altered, arranged, + transformed, or otherwise modified in a manner requiring permission + under the Copyright and Similar Rights held by the Licensor. For + purposes of this Public License, where the Licensed Material is a + musical work, performance, or sound recording, Adapted Material is + always produced where the Licensed Material is synched in timed + relation with a moving image. + b. Adapter's License means the license You apply to Your Copyright and + Similar Rights in Your contributions to Adapted Material in + accordance with the terms and conditions of this Public License. + c. Copyright and Similar Rights means copyright and/or similar rights + closely related to copyright including, without limitation, + performance, broadcast, sound recording, and Sui Generis Database + Rights, without regard to how the rights are labeled or + categorized. For purposes of this Public License, the rights + specified in Section [5]2(b)(1)-(2) are not Copyright and Similar + Rights. + d. Effective Technological Measures means those measures that, in the + absence of proper authority, may not be circumvented under laws + fulfilling obligations under Article 11 of the WIPO Copyright + Treaty adopted on December 20, 1996, and/or similar international + agreements. + e. Exceptions and Limitations means fair use, fair dealing, and/or any + other exception or limitation to Copyright and Similar Rights that + applies to Your use of the Licensed Material. + f. Licensed Material means the artistic or literary work, database, or + other material to which the Licensor applied this Public License. + g. Licensed Rights means the rights granted to You subject to the + terms and conditions of this Public License, which are limited to + all Copyright and Similar Rights that apply to Your use of the + Licensed Material and that the Licensor has authority to license. + h. Licensor means the individual(s) or entity(ies) granting rights + under this Public License. + i. Share means to provide material to the public by any means or + process that requires permission under the Licensed Rights, such as + reproduction, public display, public performance, distribution, + dissemination, communication, or importation, and to make material + available to the public including in ways that members of the + public may access the material from a place and at a time + individually chosen by them. + j. Sui Generis Database Rights means rights other than copyright + resulting from Directive 96/9/EC of the European Parliament and of + the Council of 11 March 1996 on the legal protection of databases, + as amended and/or succeeded, as well as other essentially + equivalent rights anywhere in the world. + k. You means the individual or entity exercising the Licensed Rights + under this Public License. Your has a corresponding meaning. + + Section 2 - Scope. + a. License grant. + 1. Subject to the terms and conditions of this Public License, + the Licensor hereby grants You a worldwide, royalty-free, + non-sublicensable, non-exclusive, irrevocable license to + exercise the Licensed Rights in the Licensed Material to: + A. reproduce and Share the Licensed Material, in whole or in + part; and + B. produce, reproduce, and Share Adapted Material. + 2. Exceptions and Limitations. For the avoidance of doubt, where + Exceptions and Limitations apply to Your use, this Public + License does not apply, and You do not need to comply with its + terms and conditions. + 3. Term. The term of this Public License is specified in Section + [6]6(a). + 4. Media and formats; technical modifications allowed. The + Licensor authorizes You to exercise the Licensed Rights in all + media and formats whether now known or hereafter created, and + to make technical modifications necessary to do so. The + Licensor waives and/or agrees not to assert any right or + authority to forbid You from making technical modifications + necessary to exercise the Licensed Rights, including technical + modifications necessary to circumvent Effective Technological + Measures. For purposes of this Public License, simply making + modifications authorized by this Section [7]2(a)(4) never + produces Adapted Material. + 5. Downstream recipients. + A. Offer from the Licensor - Licensed Material. Every + recipient of the Licensed Material automatically receives + an offer from the Licensor to exercise the Licensed + Rights under the terms and conditions of this Public + License. + B. No downstream restrictions. You may not offer or impose + any additional or different terms or conditions on, or + apply any Effective Technological Measures to, the + Licensed Material if doing so restricts exercise of the + Licensed Rights by any recipient of the Licensed + Material. + 6. No endorsement. Nothing in this Public License constitutes or + may be construed as permission to assert or imply that You + are, or that Your use of the Licensed Material is, connected + with, or sponsored, endorsed, or granted official status by, + the Licensor or others designated to receive attribution as + provided in Section [8]3(a)(1)(A)(i). + b. Other rights. + 1. Moral rights, such as the right of integrity, are not licensed + under this Public License, nor are publicity, privacy, and/or + other similar personality rights; however, to the extent + possible, the Licensor waives and/or agrees not to assert any + such rights held by the Licensor to the limited extent + necessary to allow You to exercise the Licensed Rights, but + not otherwise. + 2. Patent and trademark rights are not licensed under this Public + License. + 3. To the extent possible, the Licensor waives any right to + collect royalties from You for the exercise of the Licensed + Rights, whether directly or through a collecting society under + any voluntary or waivable statutory or compulsory licensing + scheme. In all other cases the Licensor expressly reserves any + right to collect such royalties. + + Section 3 - License Conditions. + + Your exercise of the Licensed Rights is expressly made subject to the + following conditions. + a. Attribution. + 1. If You Share the Licensed Material (including in modified + form), You must: + A. retain the following if it is supplied by the Licensor + with the Licensed Material: + i. identification of the creator(s) of the Licensed + Material and any others designated to receive + attribution, in any reasonable manner requested by + the Licensor (including by pseudonym if designated); + ii. a copyright notice; + iii. a notice that refers to this Public License; + iv. a notice that refers to the disclaimer of + warranties; + v. a URI or hyperlink to the Licensed Material to the + extent reasonably practicable; + B. indicate if You modified the Licensed Material and retain + an indication of any previous modifications; and + C. indicate the Licensed Material is licensed under this + Public License, and include the text of, or the URI or + hyperlink to, this Public License. + 2. You may satisfy the conditions in Section [9]3(a)(1) in any + reasonable manner based on the medium, means, and context in + which You Share the Licensed Material. For example, it may be + reasonable to satisfy the conditions by providing a URI or + hyperlink to a resource that includes the required + information. + 3. If requested by the Licensor, You must remove any of the + information required by Section [10]3(a)(1)(A) to the extent + reasonably practicable. + 4. If You Share Adapted Material You produce, the Adapter's + License You apply must not prevent recipients of the Adapted + Material from complying with this Public License. + + Section 4 - Sui Generis Database Rights. + + Where the Licensed Rights include Sui Generis Database Rights that + apply to Your use of the Licensed Material: + a. for the avoidance of doubt, Section [11]2(a)(1) grants You the + right to extract, reuse, reproduce, and Share all or a substantial + portion of the contents of the database; + b. if You include all or a substantial portion of the database + contents in a database in which You have Sui Generis Database + Rights, then the database in which You have Sui Generis Database + Rights (but not its individual contents) is Adapted Material; and + c. You must comply with the conditions in Section [12]3(a) if You + Share all or a substantial portion of the contents of the database. + + For the avoidance of doubt, this Section [13]4 supplements and does not + replace Your obligations under this Public License where the Licensed + Rights include other Copyright and Similar Rights. + + Section 5 - Disclaimer of Warranties and Limitation of Liability. + a. Unless otherwise separately undertaken by the Licensor, to the + extent possible, the Licensor offers the Licensed Material as-is + and as-available, and makes no representations or warranties of any + kind concerning the Licensed Material, whether express, implied, + statutory, or other. This includes, without limitation, warranties + of title, merchantability, fitness for a particular purpose, + non-infringement, absence of latent or other defects, accuracy, or + the presence or absence of errors, whether or not known or + discoverable. Where disclaimers of warranties are not allowed in + full or in part, this disclaimer may not apply to You. + b. To the extent possible, in no event will the Licensor be liable to + You on any legal theory (including, without limitation, negligence) + or otherwise for any direct, special, indirect, incidental, + consequential, punitive, exemplary, or other losses, costs, + expenses, or damages arising out of this Public License or use of + the Licensed Material, even if the Licensor has been advised of the + possibility of such losses, costs, expenses, or damages. Where a + limitation of liability is not allowed in full or in part, this + limitation may not apply to You. + + c. The disclaimer of warranties and limitation of liability provided + above shall be interpreted in a manner that, to the extent + possible, most closely approximates an absolute disclaimer and + waiver of all liability. + + Section 6 - Term and Termination. + a. This Public License applies for the term of the Copyright and + Similar Rights licensed here. However, if You fail to comply with + this Public License, then Your rights under this Public License + terminate automatically. + b. Where Your right to use the Licensed Material has terminated under + Section [14]6(a), it reinstates: + 1. automatically as of the date the violation is cured, provided + it is cured within 30 days of Your discovery of the violation; + or + 2. upon express reinstatement by the Licensor. + For the avoidance of doubt, this Section [15]6(b) does not affect + any right the Licensor may have to seek remedies for Your + violations of this Public License. + c. For the avoidance of doubt, the Licensor may also offer the + Licensed Material under separate terms or conditions or stop + distributing the Licensed Material at any time; however, doing so + will not terminate this Public License. + d. Sections [16]1, [17]5, [18]6, [19]7, and [20]8 survive termination + of this Public License. + + Section 7 - Other Terms and Conditions. + a. The Licensor shall not be bound by any additional or different + terms or conditions communicated by You unless expressly agreed. + b. Any arrangements, understandings, or agreements regarding the + Licensed Material not stated herein are separate from and + independent of the terms and conditions of this Public License. + + Section 8 - Interpretation. + a. For the avoidance of doubt, this Public License does not, and shall + not be interpreted to, reduce, limit, restrict, or impose + conditions on any use of the Licensed Material that could lawfully + be made without permission under this Public License. + b. To the extent possible, if any provision of this Public License is + deemed unenforceable, it shall be automatically reformed to the + minimum extent necessary to make it enforceable. If the provision + cannot be reformed, it shall be severed from this Public License + without affecting the enforceability of the remaining terms and + conditions. + c. No term or condition of this Public License will be waived and no + failure to comply consented to unless expressly agreed to by the + Licensor. + d. Nothing in this Public License constitutes or may be interpreted as + a limitation upon, or waiver of, any privileges and immunities that + apply to the Licensor or You, including from the legal processes of + any jurisdiction or authority. diff --git a/pyqtgraph/colors/maps/CET-C1.csv b/pyqtgraph/colors/maps/CET-C1.csv new file mode 100644 index 00000000..89333d21 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-C1.csv @@ -0,0 +1,256 @@ +0.976,0.520,0.971 +0.980,0.517,0.963 +0.984,0.514,0.954 +0.987,0.509,0.945 +0.990,0.504,0.934 +0.991,0.499,0.923 +0.992,0.492,0.911 +0.992,0.486,0.899 +0.992,0.478,0.886 +0.992,0.471,0.872 +0.991,0.463,0.858 +0.989,0.455,0.844 +0.988,0.446,0.830 +0.986,0.438,0.815 +0.984,0.429,0.800 +0.981,0.420,0.786 +0.979,0.411,0.771 +0.976,0.402,0.756 +0.973,0.393,0.741 +0.971,0.384,0.726 +0.968,0.375,0.711 +0.964,0.365,0.696 +0.961,0.356,0.682 +0.958,0.347,0.667 +0.954,0.337,0.652 +0.951,0.328,0.637 +0.947,0.318,0.623 +0.943,0.309,0.608 +0.938,0.300,0.593 +0.934,0.291,0.578 +0.929,0.282,0.564 +0.924,0.273,0.549 +0.919,0.264,0.534 +0.914,0.256,0.519 +0.908,0.247,0.504 +0.903,0.239,0.489 +0.897,0.231,0.474 +0.890,0.223,0.459 +0.884,0.215,0.444 +0.877,0.207,0.429 +0.871,0.200,0.414 +0.864,0.193,0.399 +0.857,0.185,0.384 +0.850,0.178,0.369 +0.842,0.171,0.354 +0.835,0.164,0.339 +0.828,0.157,0.324 +0.820,0.150,0.309 +0.812,0.143,0.295 +0.805,0.136,0.280 +0.797,0.129,0.265 +0.790,0.122,0.251 +0.782,0.116,0.236 +0.775,0.110,0.222 +0.767,0.104,0.208 +0.760,0.099,0.194 +0.753,0.095,0.180 +0.747,0.091,0.167 +0.740,0.089,0.154 +0.734,0.088,0.142 +0.729,0.089,0.130 +0.724,0.091,0.118 +0.720,0.095,0.107 +0.716,0.100,0.096 +0.713,0.106,0.086 +0.711,0.113,0.077 +0.710,0.121,0.068 +0.709,0.130,0.060 +0.709,0.139,0.052 +0.710,0.149,0.045 +0.711,0.159,0.039 +0.713,0.169,0.033 +0.715,0.180,0.029 +0.717,0.191,0.025 +0.720,0.201,0.023 +0.723,0.212,0.021 +0.727,0.222,0.019 +0.730,0.233,0.018 +0.734,0.243,0.017 +0.738,0.253,0.017 +0.742,0.263,0.016 +0.746,0.273,0.016 +0.750,0.283,0.016 +0.754,0.293,0.016 +0.758,0.303,0.016 +0.762,0.312,0.017 +0.765,0.322,0.017 +0.769,0.331,0.017 +0.773,0.341,0.018 +0.777,0.350,0.018 +0.780,0.359,0.018 +0.784,0.369,0.018 +0.787,0.378,0.019 +0.791,0.387,0.019 +0.794,0.396,0.019 +0.797,0.406,0.019 +0.800,0.415,0.019 +0.803,0.424,0.019 +0.806,0.433,0.019 +0.809,0.443,0.019 +0.811,0.452,0.019 +0.814,0.461,0.019 +0.816,0.471,0.018 +0.819,0.480,0.018 +0.821,0.489,0.018 +0.823,0.498,0.017 +0.825,0.508,0.017 +0.827,0.517,0.017 +0.829,0.526,0.016 +0.831,0.535,0.016 +0.833,0.544,0.016 +0.834,0.554,0.016 +0.836,0.563,0.016 +0.837,0.572,0.017 +0.839,0.580,0.018 +0.840,0.589,0.020 +0.841,0.598,0.023 +0.841,0.606,0.027 +0.842,0.614,0.032 +0.842,0.622,0.040 +0.841,0.629,0.049 +0.840,0.636,0.059 +0.839,0.643,0.070 +0.836,0.649,0.083 +0.834,0.654,0.096 +0.830,0.658,0.109 +0.825,0.662,0.123 +0.820,0.665,0.138 +0.814,0.667,0.153 +0.807,0.669,0.169 +0.799,0.669,0.184 +0.791,0.669,0.200 +0.782,0.668,0.215 +0.772,0.666,0.231 +0.761,0.664,0.246 +0.750,0.661,0.261 +0.739,0.658,0.276 +0.727,0.655,0.291 +0.714,0.651,0.306 +0.701,0.647,0.320 +0.688,0.642,0.334 +0.675,0.638,0.348 +0.661,0.633,0.361 +0.647,0.628,0.375 +0.632,0.624,0.388 +0.618,0.619,0.401 +0.602,0.614,0.413 +0.587,0.609,0.426 +0.571,0.604,0.438 +0.555,0.599,0.450 +0.539,0.594,0.463 +0.522,0.590,0.475 +0.504,0.585,0.486 +0.486,0.580,0.498 +0.468,0.575,0.510 +0.449,0.570,0.522 +0.430,0.565,0.533 +0.410,0.560,0.545 +0.390,0.555,0.556 +0.369,0.549,0.568 +0.348,0.544,0.579 +0.327,0.538,0.591 +0.306,0.532,0.603 +0.284,0.526,0.614 +0.263,0.519,0.626 +0.242,0.513,0.638 +0.223,0.506,0.649 +0.204,0.498,0.661 +0.186,0.490,0.673 +0.171,0.482,0.685 +0.157,0.473,0.697 +0.146,0.464,0.709 +0.139,0.454,0.722 +0.134,0.445,0.734 +0.132,0.434,0.746 +0.133,0.424,0.759 +0.135,0.413,0.771 +0.139,0.401,0.783 +0.144,0.390,0.796 +0.150,0.378,0.808 +0.156,0.366,0.820 +0.162,0.354,0.833 +0.169,0.342,0.845 +0.175,0.330,0.856 +0.181,0.318,0.868 +0.187,0.306,0.879 +0.194,0.295,0.889 +0.201,0.285,0.900 +0.208,0.275,0.909 +0.216,0.266,0.918 +0.225,0.258,0.927 +0.234,0.251,0.934 +0.244,0.245,0.941 +0.254,0.241,0.948 +0.265,0.239,0.953 +0.277,0.237,0.958 +0.288,0.238,0.962 +0.300,0.239,0.965 +0.311,0.242,0.968 +0.323,0.246,0.970 +0.335,0.251,0.972 +0.346,0.257,0.974 +0.357,0.263,0.975 +0.368,0.270,0.976 +0.379,0.277,0.977 +0.390,0.285,0.977 +0.400,0.293,0.977 +0.410,0.300,0.978 +0.420,0.308,0.978 +0.430,0.316,0.978 +0.440,0.324,0.978 +0.449,0.332,0.978 +0.459,0.340,0.978 +0.469,0.348,0.978 +0.478,0.355,0.978 +0.488,0.363,0.979 +0.498,0.370,0.979 +0.508,0.377,0.979 +0.518,0.384,0.979 +0.529,0.391,0.980 +0.540,0.398,0.980 +0.551,0.404,0.981 +0.563,0.410,0.981 +0.575,0.416,0.982 +0.588,0.421,0.982 +0.600,0.427,0.983 +0.613,0.432,0.984 +0.627,0.437,0.985 +0.640,0.442,0.986 +0.654,0.446,0.987 +0.668,0.451,0.988 +0.682,0.455,0.989 +0.696,0.460,0.990 +0.710,0.464,0.991 +0.724,0.468,0.992 +0.738,0.472,0.994 +0.752,0.476,0.995 +0.766,0.480,0.996 +0.780,0.484,0.997 +0.794,0.488,0.998 +0.807,0.492,0.999 +0.821,0.496,1.000 +0.834,0.500,1.000 +0.847,0.503,1.000 +0.860,0.507,1.000 +0.873,0.510,1.000 +0.885,0.513,1.000 +0.897,0.516,1.000 +0.909,0.519,1.000 +0.919,0.521,1.000 +0.930,0.523,0.999 +0.939,0.524,0.996 +0.948,0.525,0.993 +0.956,0.524,0.989 +0.964,0.524,0.984 +0.970,0.522,0.978 diff --git a/pyqtgraph/colors/maps/CET-C1s.csv b/pyqtgraph/colors/maps/CET-C1s.csv new file mode 100644 index 00000000..cdf337b2 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-C1s.csv @@ -0,0 +1,256 @@ +0.244,0.245,0.941 +0.254,0.241,0.948 +0.265,0.239,0.953 +0.277,0.237,0.958 +0.288,0.238,0.962 +0.300,0.239,0.965 +0.311,0.242,0.968 +0.323,0.246,0.970 +0.335,0.251,0.972 +0.346,0.257,0.974 +0.357,0.263,0.975 +0.368,0.270,0.976 +0.379,0.277,0.977 +0.390,0.285,0.977 +0.400,0.293,0.977 +0.410,0.300,0.978 +0.420,0.308,0.978 +0.430,0.316,0.978 +0.440,0.324,0.978 +0.449,0.332,0.978 +0.459,0.340,0.978 +0.469,0.348,0.978 +0.478,0.355,0.978 +0.488,0.363,0.979 +0.498,0.370,0.979 +0.508,0.377,0.979 +0.518,0.384,0.979 +0.529,0.391,0.980 +0.540,0.398,0.980 +0.551,0.404,0.981 +0.563,0.410,0.981 +0.575,0.416,0.982 +0.588,0.421,0.982 +0.600,0.427,0.983 +0.613,0.432,0.984 +0.627,0.437,0.985 +0.640,0.442,0.986 +0.654,0.446,0.987 +0.668,0.451,0.988 +0.682,0.455,0.989 +0.696,0.460,0.990 +0.710,0.464,0.991 +0.724,0.468,0.992 +0.738,0.472,0.994 +0.752,0.476,0.995 +0.766,0.480,0.996 +0.780,0.484,0.997 +0.794,0.488,0.998 +0.807,0.492,0.999 +0.821,0.496,1.000 +0.834,0.500,1.000 +0.847,0.503,1.000 +0.860,0.507,1.000 +0.873,0.510,1.000 +0.885,0.513,1.000 +0.897,0.516,1.000 +0.909,0.519,1.000 +0.919,0.521,1.000 +0.930,0.523,0.999 +0.939,0.524,0.996 +0.948,0.525,0.993 +0.956,0.524,0.989 +0.964,0.524,0.984 +0.970,0.522,0.978 +0.976,0.520,0.971 +0.980,0.517,0.963 +0.984,0.514,0.954 +0.987,0.509,0.945 +0.990,0.504,0.934 +0.991,0.499,0.923 +0.992,0.492,0.911 +0.992,0.486,0.899 +0.992,0.478,0.886 +0.992,0.471,0.872 +0.991,0.463,0.858 +0.989,0.455,0.844 +0.988,0.446,0.830 +0.986,0.438,0.815 +0.984,0.429,0.800 +0.981,0.420,0.786 +0.979,0.411,0.771 +0.976,0.402,0.756 +0.973,0.393,0.741 +0.971,0.384,0.726 +0.968,0.375,0.711 +0.964,0.365,0.696 +0.961,0.356,0.682 +0.958,0.347,0.667 +0.954,0.337,0.652 +0.951,0.328,0.637 +0.947,0.318,0.623 +0.943,0.309,0.608 +0.938,0.300,0.593 +0.934,0.291,0.578 +0.929,0.282,0.564 +0.924,0.273,0.549 +0.919,0.264,0.534 +0.914,0.256,0.519 +0.908,0.247,0.504 +0.903,0.239,0.489 +0.897,0.231,0.474 +0.890,0.223,0.459 +0.884,0.215,0.444 +0.877,0.207,0.429 +0.871,0.200,0.414 +0.864,0.193,0.399 +0.857,0.185,0.384 +0.850,0.178,0.369 +0.842,0.171,0.354 +0.835,0.164,0.339 +0.828,0.157,0.324 +0.820,0.150,0.309 +0.812,0.143,0.295 +0.805,0.136,0.280 +0.797,0.129,0.265 +0.790,0.122,0.251 +0.782,0.116,0.236 +0.775,0.110,0.222 +0.767,0.104,0.208 +0.760,0.099,0.194 +0.753,0.095,0.180 +0.747,0.091,0.167 +0.740,0.089,0.154 +0.734,0.088,0.142 +0.729,0.089,0.130 +0.724,0.091,0.118 +0.720,0.095,0.107 +0.716,0.100,0.096 +0.713,0.106,0.086 +0.711,0.113,0.077 +0.710,0.121,0.068 +0.709,0.130,0.060 +0.709,0.139,0.052 +0.710,0.149,0.045 +0.711,0.159,0.039 +0.713,0.169,0.033 +0.715,0.180,0.029 +0.717,0.191,0.025 +0.720,0.201,0.023 +0.723,0.212,0.021 +0.727,0.222,0.019 +0.730,0.233,0.018 +0.734,0.243,0.017 +0.738,0.253,0.017 +0.742,0.263,0.016 +0.746,0.273,0.016 +0.750,0.283,0.016 +0.754,0.293,0.016 +0.758,0.303,0.016 +0.762,0.312,0.017 +0.765,0.322,0.017 +0.769,0.331,0.017 +0.773,0.341,0.018 +0.777,0.350,0.018 +0.780,0.359,0.018 +0.784,0.369,0.018 +0.787,0.378,0.019 +0.791,0.387,0.019 +0.794,0.396,0.019 +0.797,0.406,0.019 +0.800,0.415,0.019 +0.803,0.424,0.019 +0.806,0.433,0.019 +0.809,0.443,0.019 +0.811,0.452,0.019 +0.814,0.461,0.019 +0.816,0.471,0.018 +0.819,0.480,0.018 +0.821,0.489,0.018 +0.823,0.498,0.017 +0.825,0.508,0.017 +0.827,0.517,0.017 +0.829,0.526,0.016 +0.831,0.535,0.016 +0.833,0.544,0.016 +0.834,0.554,0.016 +0.836,0.563,0.016 +0.837,0.572,0.017 +0.839,0.580,0.018 +0.840,0.589,0.020 +0.841,0.598,0.023 +0.841,0.606,0.027 +0.842,0.614,0.032 +0.842,0.622,0.040 +0.841,0.629,0.049 +0.840,0.636,0.059 +0.839,0.643,0.070 +0.836,0.649,0.083 +0.834,0.654,0.096 +0.830,0.658,0.109 +0.825,0.662,0.123 +0.820,0.665,0.138 +0.814,0.667,0.153 +0.807,0.669,0.169 +0.799,0.669,0.184 +0.791,0.669,0.200 +0.782,0.668,0.215 +0.772,0.666,0.231 +0.761,0.664,0.246 +0.750,0.661,0.261 +0.739,0.658,0.276 +0.727,0.655,0.291 +0.714,0.651,0.306 +0.701,0.647,0.320 +0.688,0.642,0.334 +0.675,0.638,0.348 +0.661,0.633,0.361 +0.647,0.628,0.375 +0.632,0.624,0.388 +0.618,0.619,0.401 +0.602,0.614,0.413 +0.587,0.609,0.426 +0.571,0.604,0.438 +0.555,0.599,0.450 +0.539,0.594,0.463 +0.522,0.590,0.475 +0.504,0.585,0.486 +0.486,0.580,0.498 +0.468,0.575,0.510 +0.449,0.570,0.522 +0.430,0.565,0.533 +0.410,0.560,0.545 +0.390,0.555,0.556 +0.369,0.549,0.568 +0.348,0.544,0.579 +0.327,0.538,0.591 +0.306,0.532,0.603 +0.284,0.526,0.614 +0.263,0.519,0.626 +0.242,0.513,0.638 +0.223,0.506,0.649 +0.204,0.498,0.661 +0.186,0.490,0.673 +0.171,0.482,0.685 +0.157,0.473,0.697 +0.146,0.464,0.709 +0.139,0.454,0.722 +0.134,0.445,0.734 +0.132,0.434,0.746 +0.133,0.424,0.759 +0.135,0.413,0.771 +0.139,0.401,0.783 +0.144,0.390,0.796 +0.150,0.378,0.808 +0.156,0.366,0.820 +0.162,0.354,0.833 +0.169,0.342,0.845 +0.175,0.330,0.856 +0.181,0.318,0.868 +0.187,0.306,0.879 +0.194,0.295,0.889 +0.201,0.285,0.900 +0.208,0.275,0.909 +0.216,0.266,0.918 +0.225,0.258,0.927 +0.234,0.251,0.934 diff --git a/pyqtgraph/colors/maps/CET-C2.csv b/pyqtgraph/colors/maps/CET-C2.csv new file mode 100644 index 00000000..74424d90 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-C2.csv @@ -0,0 +1,256 @@ +0.938,0.334,0.948 +0.944,0.343,0.942 +0.949,0.353,0.936 +0.954,0.363,0.929 +0.959,0.374,0.922 +0.963,0.386,0.914 +0.966,0.397,0.906 +0.969,0.409,0.897 +0.972,0.421,0.888 +0.975,0.433,0.879 +0.977,0.446,0.869 +0.978,0.458,0.859 +0.980,0.470,0.849 +0.981,0.482,0.839 +0.983,0.494,0.829 +0.984,0.506,0.819 +0.985,0.518,0.808 +0.985,0.530,0.798 +0.986,0.541,0.787 +0.986,0.553,0.776 +0.987,0.564,0.766 +0.987,0.575,0.755 +0.987,0.586,0.744 +0.987,0.597,0.733 +0.987,0.608,0.722 +0.987,0.618,0.712 +0.987,0.629,0.701 +0.987,0.639,0.690 +0.987,0.649,0.679 +0.987,0.659,0.668 +0.987,0.670,0.657 +0.986,0.679,0.645 +0.986,0.689,0.634 +0.986,0.699,0.623 +0.986,0.708,0.612 +0.986,0.718,0.601 +0.986,0.727,0.589 +0.986,0.736,0.578 +0.987,0.745,0.566 +0.987,0.754,0.555 +0.987,0.763,0.543 +0.987,0.772,0.531 +0.988,0.781,0.519 +0.988,0.789,0.507 +0.988,0.798,0.495 +0.988,0.807,0.483 +0.989,0.815,0.470 +0.989,0.824,0.458 +0.989,0.832,0.445 +0.989,0.840,0.432 +0.988,0.849,0.418 +0.988,0.857,0.404 +0.987,0.865,0.390 +0.986,0.873,0.376 +0.985,0.880,0.362 +0.983,0.888,0.347 +0.981,0.895,0.332 +0.978,0.901,0.316 +0.975,0.907,0.301 +0.972,0.913,0.285 +0.967,0.918,0.270 +0.962,0.923,0.254 +0.957,0.927,0.239 +0.951,0.930,0.224 +0.944,0.932,0.209 +0.936,0.934,0.195 +0.928,0.935,0.182 +0.920,0.935,0.169 +0.910,0.935,0.157 +0.901,0.934,0.146 +0.891,0.933,0.136 +0.881,0.931,0.127 +0.870,0.928,0.120 +0.859,0.925,0.113 +0.848,0.922,0.107 +0.837,0.919,0.103 +0.826,0.915,0.099 +0.815,0.911,0.095 +0.803,0.907,0.092 +0.792,0.903,0.090 +0.780,0.899,0.088 +0.769,0.895,0.086 +0.757,0.891,0.084 +0.746,0.887,0.082 +0.734,0.882,0.081 +0.722,0.878,0.079 +0.711,0.874,0.078 +0.699,0.869,0.076 +0.687,0.865,0.075 +0.675,0.861,0.074 +0.663,0.856,0.072 +0.652,0.852,0.071 +0.640,0.848,0.070 +0.628,0.843,0.068 +0.616,0.839,0.067 +0.604,0.835,0.066 +0.591,0.830,0.064 +0.579,0.826,0.063 +0.567,0.822,0.062 +0.554,0.817,0.060 +0.542,0.813,0.059 +0.529,0.808,0.058 +0.517,0.804,0.057 +0.504,0.800,0.055 +0.491,0.795,0.054 +0.478,0.791,0.053 +0.465,0.786,0.051 +0.452,0.782,0.050 +0.438,0.777,0.049 +0.424,0.773,0.048 +0.411,0.768,0.047 +0.397,0.764,0.047 +0.382,0.759,0.046 +0.368,0.755,0.047 +0.354,0.750,0.047 +0.339,0.745,0.049 +0.324,0.741,0.051 +0.310,0.736,0.054 +0.295,0.731,0.058 +0.281,0.726,0.064 +0.267,0.721,0.070 +0.254,0.716,0.078 +0.241,0.711,0.087 +0.230,0.706,0.097 +0.220,0.700,0.107 +0.211,0.695,0.119 +0.204,0.689,0.131 +0.199,0.683,0.144 +0.196,0.677,0.158 +0.195,0.671,0.172 +0.196,0.664,0.186 +0.198,0.658,0.200 +0.202,0.651,0.215 +0.206,0.644,0.230 +0.212,0.638,0.245 +0.218,0.631,0.261 +0.224,0.623,0.276 +0.230,0.616,0.291 +0.236,0.609,0.306 +0.242,0.602,0.321 +0.247,0.595,0.335 +0.252,0.587,0.350 +0.256,0.580,0.365 +0.260,0.572,0.379 +0.263,0.565,0.393 +0.266,0.558,0.407 +0.268,0.550,0.421 +0.270,0.543,0.435 +0.271,0.535,0.449 +0.272,0.528,0.462 +0.272,0.521,0.476 +0.271,0.513,0.489 +0.270,0.506,0.503 +0.268,0.498,0.516 +0.266,0.491,0.529 +0.263,0.484,0.542 +0.260,0.476,0.555 +0.256,0.469,0.568 +0.252,0.461,0.581 +0.247,0.454,0.594 +0.242,0.446,0.606 +0.236,0.438,0.619 +0.230,0.431,0.631 +0.224,0.423,0.644 +0.218,0.415,0.656 +0.212,0.407,0.667 +0.206,0.399,0.679 +0.199,0.391,0.691 +0.194,0.382,0.702 +0.188,0.374,0.713 +0.183,0.365,0.724 +0.178,0.356,0.735 +0.174,0.347,0.745 +0.170,0.337,0.756 +0.166,0.327,0.766 +0.163,0.317,0.776 +0.160,0.307,0.786 +0.157,0.297,0.796 +0.155,0.286,0.805 +0.152,0.275,0.815 +0.150,0.264,0.824 +0.147,0.253,0.833 +0.146,0.241,0.843 +0.144,0.230,0.851 +0.143,0.218,0.860 +0.143,0.206,0.869 +0.144,0.195,0.877 +0.146,0.183,0.885 +0.150,0.172,0.892 +0.155,0.161,0.900 +0.162,0.151,0.906 +0.171,0.141,0.913 +0.181,0.132,0.919 +0.192,0.124,0.924 +0.204,0.118,0.929 +0.217,0.112,0.933 +0.230,0.108,0.937 +0.244,0.105,0.941 +0.258,0.104,0.944 +0.272,0.104,0.947 +0.287,0.106,0.950 +0.301,0.108,0.952 +0.314,0.112,0.954 +0.328,0.116,0.956 +0.341,0.120,0.958 +0.354,0.125,0.960 +0.367,0.131,0.961 +0.379,0.136,0.963 +0.392,0.142,0.964 +0.404,0.148,0.966 +0.415,0.154,0.967 +0.427,0.159,0.969 +0.438,0.165,0.970 +0.449,0.171,0.971 +0.460,0.176,0.973 +0.471,0.182,0.974 +0.482,0.188,0.975 +0.493,0.193,0.976 +0.504,0.198,0.978 +0.514,0.203,0.979 +0.525,0.208,0.980 +0.536,0.213,0.981 +0.548,0.217,0.982 +0.559,0.221,0.982 +0.571,0.225,0.983 +0.582,0.229,0.984 +0.594,0.233,0.984 +0.606,0.236,0.985 +0.619,0.239,0.985 +0.631,0.242,0.985 +0.644,0.245,0.985 +0.657,0.247,0.985 +0.669,0.250,0.985 +0.682,0.252,0.985 +0.695,0.254,0.985 +0.708,0.256,0.985 +0.721,0.258,0.984 +0.734,0.260,0.984 +0.747,0.261,0.984 +0.760,0.263,0.983 +0.773,0.265,0.983 +0.785,0.267,0.982 +0.798,0.269,0.982 +0.810,0.271,0.981 +0.822,0.273,0.980 +0.834,0.275,0.979 +0.846,0.278,0.978 +0.857,0.281,0.977 +0.868,0.284,0.975 +0.878,0.288,0.973 +0.889,0.293,0.971 +0.898,0.298,0.968 +0.907,0.303,0.965 +0.916,0.310,0.962 +0.924,0.317,0.958 +0.931,0.325,0.953 diff --git a/pyqtgraph/colors/maps/CET-C2s.csv b/pyqtgraph/colors/maps/CET-C2s.csv new file mode 100644 index 00000000..fada4a2d --- /dev/null +++ b/pyqtgraph/colors/maps/CET-C2s.csv @@ -0,0 +1,256 @@ +0.181,0.132,0.919 +0.192,0.124,0.924 +0.204,0.118,0.929 +0.217,0.112,0.933 +0.230,0.108,0.937 +0.244,0.105,0.941 +0.258,0.104,0.944 +0.272,0.104,0.947 +0.287,0.106,0.950 +0.301,0.108,0.952 +0.314,0.112,0.954 +0.328,0.116,0.956 +0.341,0.120,0.958 +0.354,0.125,0.960 +0.367,0.131,0.961 +0.379,0.136,0.963 +0.392,0.142,0.964 +0.404,0.148,0.966 +0.415,0.154,0.967 +0.427,0.159,0.969 +0.438,0.165,0.970 +0.449,0.171,0.971 +0.460,0.176,0.973 +0.471,0.182,0.974 +0.482,0.188,0.975 +0.493,0.193,0.976 +0.504,0.198,0.978 +0.514,0.203,0.979 +0.525,0.208,0.980 +0.536,0.213,0.981 +0.548,0.217,0.982 +0.559,0.221,0.982 +0.571,0.225,0.983 +0.582,0.229,0.984 +0.594,0.233,0.984 +0.606,0.236,0.985 +0.619,0.239,0.985 +0.631,0.242,0.985 +0.644,0.245,0.985 +0.657,0.247,0.985 +0.669,0.250,0.985 +0.682,0.252,0.985 +0.695,0.254,0.985 +0.708,0.256,0.985 +0.721,0.258,0.984 +0.734,0.260,0.984 +0.747,0.261,0.984 +0.760,0.263,0.983 +0.773,0.265,0.983 +0.785,0.267,0.982 +0.798,0.269,0.982 +0.810,0.271,0.981 +0.822,0.273,0.980 +0.834,0.275,0.979 +0.846,0.278,0.978 +0.857,0.281,0.977 +0.868,0.284,0.975 +0.878,0.288,0.973 +0.889,0.293,0.971 +0.898,0.298,0.968 +0.907,0.303,0.965 +0.916,0.310,0.962 +0.924,0.317,0.958 +0.931,0.325,0.953 +0.938,0.334,0.948 +0.944,0.343,0.942 +0.949,0.353,0.936 +0.954,0.363,0.929 +0.959,0.374,0.922 +0.963,0.386,0.914 +0.966,0.397,0.906 +0.969,0.409,0.897 +0.972,0.421,0.888 +0.975,0.433,0.879 +0.977,0.446,0.869 +0.978,0.458,0.859 +0.980,0.470,0.849 +0.981,0.482,0.839 +0.983,0.494,0.829 +0.984,0.506,0.819 +0.985,0.518,0.808 +0.985,0.530,0.798 +0.986,0.541,0.787 +0.986,0.553,0.776 +0.987,0.564,0.766 +0.987,0.575,0.755 +0.987,0.586,0.744 +0.987,0.597,0.733 +0.987,0.608,0.722 +0.987,0.618,0.712 +0.987,0.629,0.701 +0.987,0.639,0.690 +0.987,0.649,0.679 +0.987,0.659,0.668 +0.987,0.670,0.657 +0.986,0.679,0.645 +0.986,0.689,0.634 +0.986,0.699,0.623 +0.986,0.708,0.612 +0.986,0.718,0.601 +0.986,0.727,0.589 +0.986,0.736,0.578 +0.987,0.745,0.566 +0.987,0.754,0.555 +0.987,0.763,0.543 +0.987,0.772,0.531 +0.988,0.781,0.519 +0.988,0.789,0.507 +0.988,0.798,0.495 +0.988,0.807,0.483 +0.989,0.815,0.470 +0.989,0.824,0.458 +0.989,0.832,0.445 +0.989,0.840,0.432 +0.988,0.849,0.418 +0.988,0.857,0.404 +0.987,0.865,0.390 +0.986,0.873,0.376 +0.985,0.880,0.362 +0.983,0.888,0.347 +0.981,0.895,0.332 +0.978,0.901,0.316 +0.975,0.907,0.301 +0.972,0.913,0.285 +0.967,0.918,0.270 +0.962,0.923,0.254 +0.957,0.927,0.239 +0.951,0.930,0.224 +0.944,0.932,0.209 +0.936,0.934,0.195 +0.928,0.935,0.182 +0.920,0.935,0.169 +0.910,0.935,0.157 +0.901,0.934,0.146 +0.891,0.933,0.136 +0.881,0.931,0.127 +0.870,0.928,0.120 +0.859,0.925,0.113 +0.848,0.922,0.107 +0.837,0.919,0.103 +0.826,0.915,0.099 +0.815,0.911,0.095 +0.803,0.907,0.092 +0.792,0.903,0.090 +0.780,0.899,0.088 +0.769,0.895,0.086 +0.757,0.891,0.084 +0.746,0.887,0.082 +0.734,0.882,0.081 +0.722,0.878,0.079 +0.711,0.874,0.078 +0.699,0.869,0.076 +0.687,0.865,0.075 +0.675,0.861,0.074 +0.663,0.856,0.072 +0.652,0.852,0.071 +0.640,0.848,0.070 +0.628,0.843,0.068 +0.616,0.839,0.067 +0.604,0.835,0.066 +0.591,0.830,0.064 +0.579,0.826,0.063 +0.567,0.822,0.062 +0.554,0.817,0.060 +0.542,0.813,0.059 +0.529,0.808,0.058 +0.517,0.804,0.057 +0.504,0.800,0.055 +0.491,0.795,0.054 +0.478,0.791,0.053 +0.465,0.786,0.051 +0.452,0.782,0.050 +0.438,0.777,0.049 +0.424,0.773,0.048 +0.411,0.768,0.047 +0.397,0.764,0.047 +0.382,0.759,0.046 +0.368,0.755,0.047 +0.354,0.750,0.047 +0.339,0.745,0.049 +0.324,0.741,0.051 +0.310,0.736,0.054 +0.295,0.731,0.058 +0.281,0.726,0.064 +0.267,0.721,0.070 +0.254,0.716,0.078 +0.241,0.711,0.087 +0.230,0.706,0.097 +0.220,0.700,0.107 +0.211,0.695,0.119 +0.204,0.689,0.131 +0.199,0.683,0.144 +0.196,0.677,0.158 +0.195,0.671,0.172 +0.196,0.664,0.186 +0.198,0.658,0.200 +0.202,0.651,0.215 +0.206,0.644,0.230 +0.212,0.638,0.245 +0.218,0.631,0.261 +0.224,0.623,0.276 +0.230,0.616,0.291 +0.236,0.609,0.306 +0.242,0.602,0.321 +0.247,0.595,0.335 +0.252,0.587,0.350 +0.256,0.580,0.365 +0.260,0.572,0.379 +0.263,0.565,0.393 +0.266,0.558,0.407 +0.268,0.550,0.421 +0.270,0.543,0.435 +0.271,0.535,0.449 +0.272,0.528,0.462 +0.272,0.521,0.476 +0.271,0.513,0.489 +0.270,0.506,0.503 +0.268,0.498,0.516 +0.266,0.491,0.529 +0.263,0.484,0.542 +0.260,0.476,0.555 +0.256,0.469,0.568 +0.252,0.461,0.581 +0.247,0.454,0.594 +0.242,0.446,0.606 +0.236,0.438,0.619 +0.230,0.431,0.631 +0.224,0.423,0.644 +0.218,0.415,0.656 +0.212,0.407,0.667 +0.206,0.399,0.679 +0.199,0.391,0.691 +0.194,0.382,0.702 +0.188,0.374,0.713 +0.183,0.365,0.724 +0.178,0.356,0.735 +0.174,0.347,0.745 +0.170,0.337,0.756 +0.166,0.327,0.766 +0.163,0.317,0.776 +0.160,0.307,0.786 +0.157,0.297,0.796 +0.155,0.286,0.805 +0.152,0.275,0.815 +0.150,0.264,0.824 +0.147,0.253,0.833 +0.146,0.241,0.843 +0.144,0.230,0.851 +0.143,0.218,0.860 +0.143,0.206,0.869 +0.144,0.195,0.877 +0.146,0.183,0.885 +0.150,0.172,0.892 +0.155,0.161,0.900 +0.162,0.151,0.906 +0.171,0.141,0.913 diff --git a/pyqtgraph/colors/maps/CET-C3.csv b/pyqtgraph/colors/maps/CET-C3.csv new file mode 100644 index 00000000..39f6da23 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-C3.csv @@ -0,0 +1,256 @@ +0.881,0.843,0.856 +0.886,0.842,0.849 +0.891,0.839,0.840 +0.896,0.835,0.831 +0.900,0.830,0.821 +0.904,0.825,0.811 +0.907,0.819,0.800 +0.911,0.812,0.789 +0.914,0.804,0.778 +0.917,0.797,0.766 +0.919,0.788,0.754 +0.922,0.780,0.742 +0.924,0.771,0.730 +0.926,0.762,0.717 +0.928,0.752,0.705 +0.930,0.743,0.692 +0.932,0.734,0.679 +0.933,0.724,0.667 +0.935,0.714,0.654 +0.936,0.705,0.641 +0.937,0.695,0.629 +0.938,0.685,0.616 +0.939,0.676,0.604 +0.940,0.666,0.591 +0.940,0.656,0.579 +0.941,0.646,0.566 +0.941,0.636,0.554 +0.941,0.627,0.541 +0.941,0.617,0.529 +0.941,0.607,0.517 +0.941,0.597,0.504 +0.941,0.587,0.492 +0.941,0.577,0.480 +0.940,0.567,0.468 +0.940,0.557,0.456 +0.939,0.547,0.444 +0.939,0.537,0.431 +0.938,0.527,0.419 +0.937,0.516,0.407 +0.936,0.506,0.395 +0.935,0.496,0.383 +0.934,0.485,0.371 +0.932,0.475,0.359 +0.931,0.464,0.348 +0.930,0.454,0.336 +0.928,0.443,0.324 +0.926,0.432,0.312 +0.925,0.421,0.300 +0.923,0.410,0.288 +0.921,0.399,0.277 +0.919,0.388,0.265 +0.916,0.377,0.254 +0.914,0.365,0.242 +0.911,0.354,0.231 +0.908,0.343,0.220 +0.905,0.332,0.209 +0.901,0.320,0.198 +0.898,0.309,0.188 +0.893,0.299,0.178 +0.889,0.288,0.168 +0.883,0.278,0.159 +0.877,0.268,0.151 +0.871,0.259,0.143 +0.864,0.250,0.136 +0.857,0.242,0.130 +0.849,0.235,0.124 +0.840,0.229,0.119 +0.831,0.223,0.115 +0.821,0.218,0.111 +0.811,0.214,0.109 +0.800,0.211,0.107 +0.789,0.208,0.105 +0.778,0.206,0.104 +0.766,0.204,0.103 +0.755,0.202,0.103 +0.743,0.201,0.103 +0.730,0.200,0.103 +0.718,0.199,0.103 +0.706,0.198,0.104 +0.694,0.198,0.104 +0.681,0.197,0.105 +0.669,0.196,0.105 +0.656,0.195,0.106 +0.644,0.195,0.106 +0.631,0.194,0.107 +0.619,0.193,0.107 +0.607,0.192,0.108 +0.594,0.191,0.108 +0.582,0.190,0.109 +0.570,0.189,0.109 +0.558,0.188,0.110 +0.546,0.187,0.110 +0.534,0.186,0.110 +0.521,0.184,0.111 +0.509,0.183,0.111 +0.497,0.182,0.111 +0.485,0.180,0.112 +0.474,0.179,0.112 +0.462,0.177,0.112 +0.450,0.176,0.112 +0.438,0.174,0.112 +0.426,0.172,0.112 +0.414,0.171,0.112 +0.403,0.169,0.113 +0.391,0.167,0.113 +0.379,0.165,0.113 +0.368,0.163,0.113 +0.356,0.161,0.113 +0.345,0.159,0.113 +0.333,0.157,0.113 +0.322,0.155,0.113 +0.310,0.153,0.113 +0.299,0.151,0.113 +0.288,0.149,0.113 +0.277,0.146,0.113 +0.266,0.144,0.113 +0.255,0.142,0.114 +0.244,0.140,0.114 +0.234,0.138,0.115 +0.224,0.136,0.116 +0.215,0.135,0.118 +0.206,0.133,0.120 +0.197,0.132,0.122 +0.189,0.131,0.125 +0.182,0.130,0.129 +0.176,0.130,0.133 +0.170,0.130,0.138 +0.165,0.131,0.144 +0.161,0.131,0.150 +0.157,0.133,0.157 +0.155,0.134,0.164 +0.153,0.136,0.173 +0.152,0.139,0.182 +0.151,0.142,0.191 +0.151,0.145,0.201 +0.152,0.148,0.212 +0.152,0.152,0.223 +0.154,0.156,0.235 +0.155,0.160,0.246 +0.157,0.164,0.258 +0.159,0.169,0.271 +0.162,0.173,0.283 +0.164,0.178,0.296 +0.166,0.182,0.309 +0.168,0.187,0.322 +0.170,0.192,0.335 +0.172,0.196,0.348 +0.174,0.201,0.361 +0.176,0.206,0.375 +0.178,0.211,0.388 +0.180,0.216,0.402 +0.181,0.221,0.415 +0.183,0.226,0.429 +0.184,0.230,0.443 +0.185,0.235,0.457 +0.186,0.240,0.470 +0.187,0.245,0.484 +0.188,0.250,0.499 +0.188,0.255,0.513 +0.188,0.261,0.527 +0.189,0.266,0.541 +0.189,0.271,0.555 +0.188,0.276,0.570 +0.188,0.281,0.584 +0.187,0.286,0.599 +0.187,0.291,0.614 +0.186,0.297,0.628 +0.184,0.302,0.643 +0.183,0.307,0.658 +0.181,0.312,0.673 +0.179,0.317,0.687 +0.177,0.323,0.702 +0.174,0.328,0.717 +0.171,0.333,0.732 +0.168,0.339,0.747 +0.165,0.344,0.762 +0.161,0.349,0.777 +0.158,0.355,0.792 +0.154,0.360,0.807 +0.150,0.366,0.822 +0.146,0.371,0.837 +0.143,0.377,0.851 +0.140,0.382,0.865 +0.138,0.388,0.878 +0.137,0.393,0.892 +0.138,0.399,0.904 +0.141,0.405,0.916 +0.146,0.410,0.927 +0.153,0.416,0.937 +0.162,0.422,0.947 +0.173,0.428,0.955 +0.186,0.434,0.963 +0.200,0.440,0.969 +0.216,0.446,0.975 +0.232,0.452,0.979 +0.248,0.458,0.983 +0.265,0.465,0.986 +0.282,0.471,0.988 +0.299,0.477,0.989 +0.316,0.484,0.990 +0.332,0.490,0.990 +0.348,0.497,0.990 +0.364,0.503,0.989 +0.380,0.510,0.989 +0.394,0.517,0.988 +0.409,0.523,0.986 +0.423,0.530,0.985 +0.437,0.537,0.983 +0.450,0.544,0.982 +0.463,0.551,0.980 +0.476,0.557,0.979 +0.488,0.564,0.977 +0.500,0.571,0.975 +0.512,0.578,0.973 +0.524,0.585,0.972 +0.535,0.592,0.970 +0.546,0.599,0.968 +0.557,0.606,0.966 +0.568,0.613,0.964 +0.578,0.620,0.963 +0.589,0.627,0.961 +0.599,0.635,0.959 +0.609,0.642,0.957 +0.619,0.649,0.955 +0.629,0.656,0.953 +0.638,0.663,0.951 +0.648,0.671,0.950 +0.657,0.678,0.948 +0.666,0.685,0.946 +0.675,0.692,0.944 +0.685,0.700,0.942 +0.693,0.707,0.940 +0.702,0.714,0.938 +0.711,0.722,0.936 +0.720,0.729,0.934 +0.728,0.736,0.932 +0.737,0.744,0.930 +0.745,0.751,0.928 +0.754,0.759,0.925 +0.762,0.766,0.923 +0.770,0.773,0.921 +0.778,0.780,0.919 +0.786,0.788,0.917 +0.794,0.795,0.914 +0.802,0.801,0.912 +0.810,0.808,0.909 +0.817,0.814,0.906 +0.825,0.820,0.903 +0.832,0.826,0.900 +0.839,0.831,0.896 +0.846,0.835,0.892 +0.852,0.838,0.887 +0.859,0.841,0.882 +0.865,0.843,0.877 +0.871,0.844,0.870 +0.876,0.844,0.864 diff --git a/pyqtgraph/colors/maps/CET-C3s.csv b/pyqtgraph/colors/maps/CET-C3s.csv new file mode 100644 index 00000000..7b9bfab5 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-C3s.csv @@ -0,0 +1,256 @@ +0.200,0.440,0.969 +0.216,0.446,0.975 +0.232,0.452,0.979 +0.248,0.458,0.983 +0.265,0.465,0.986 +0.282,0.471,0.988 +0.299,0.477,0.989 +0.316,0.484,0.990 +0.332,0.490,0.990 +0.348,0.497,0.990 +0.364,0.503,0.989 +0.380,0.510,0.989 +0.394,0.517,0.988 +0.409,0.523,0.986 +0.423,0.530,0.985 +0.437,0.537,0.983 +0.450,0.544,0.982 +0.463,0.551,0.980 +0.476,0.557,0.979 +0.488,0.564,0.977 +0.500,0.571,0.975 +0.512,0.578,0.973 +0.524,0.585,0.972 +0.535,0.592,0.970 +0.546,0.599,0.968 +0.557,0.606,0.966 +0.568,0.613,0.964 +0.578,0.620,0.963 +0.589,0.627,0.961 +0.599,0.635,0.959 +0.609,0.642,0.957 +0.619,0.649,0.955 +0.629,0.656,0.953 +0.638,0.663,0.951 +0.648,0.671,0.950 +0.657,0.678,0.948 +0.666,0.685,0.946 +0.675,0.692,0.944 +0.685,0.700,0.942 +0.693,0.707,0.940 +0.702,0.714,0.938 +0.711,0.722,0.936 +0.720,0.729,0.934 +0.728,0.736,0.932 +0.737,0.744,0.930 +0.745,0.751,0.928 +0.754,0.759,0.925 +0.762,0.766,0.923 +0.770,0.773,0.921 +0.778,0.780,0.919 +0.786,0.788,0.917 +0.794,0.795,0.914 +0.802,0.801,0.912 +0.810,0.808,0.909 +0.817,0.814,0.906 +0.825,0.820,0.903 +0.832,0.826,0.900 +0.839,0.831,0.896 +0.846,0.835,0.892 +0.852,0.838,0.887 +0.859,0.841,0.882 +0.865,0.843,0.877 +0.871,0.844,0.870 +0.876,0.844,0.864 +0.881,0.843,0.856 +0.886,0.842,0.849 +0.891,0.839,0.840 +0.896,0.835,0.831 +0.900,0.830,0.821 +0.904,0.825,0.811 +0.907,0.819,0.800 +0.911,0.812,0.789 +0.914,0.804,0.778 +0.917,0.797,0.766 +0.919,0.788,0.754 +0.922,0.780,0.742 +0.924,0.771,0.730 +0.926,0.762,0.717 +0.928,0.752,0.705 +0.930,0.743,0.692 +0.932,0.734,0.679 +0.933,0.724,0.667 +0.935,0.714,0.654 +0.936,0.705,0.641 +0.937,0.695,0.629 +0.938,0.685,0.616 +0.939,0.676,0.604 +0.940,0.666,0.591 +0.940,0.656,0.579 +0.941,0.646,0.566 +0.941,0.636,0.554 +0.941,0.627,0.541 +0.941,0.617,0.529 +0.941,0.607,0.517 +0.941,0.597,0.504 +0.941,0.587,0.492 +0.941,0.577,0.480 +0.940,0.567,0.468 +0.940,0.557,0.456 +0.939,0.547,0.444 +0.939,0.537,0.431 +0.938,0.527,0.419 +0.937,0.516,0.407 +0.936,0.506,0.395 +0.935,0.496,0.383 +0.934,0.485,0.371 +0.932,0.475,0.359 +0.931,0.464,0.348 +0.930,0.454,0.336 +0.928,0.443,0.324 +0.926,0.432,0.312 +0.925,0.421,0.300 +0.923,0.410,0.288 +0.921,0.399,0.277 +0.919,0.388,0.265 +0.916,0.377,0.254 +0.914,0.365,0.242 +0.911,0.354,0.231 +0.908,0.343,0.220 +0.905,0.332,0.209 +0.901,0.320,0.198 +0.898,0.309,0.188 +0.893,0.299,0.178 +0.889,0.288,0.168 +0.883,0.278,0.159 +0.877,0.268,0.151 +0.871,0.259,0.143 +0.864,0.250,0.136 +0.857,0.242,0.130 +0.849,0.235,0.124 +0.840,0.229,0.119 +0.831,0.223,0.115 +0.821,0.218,0.111 +0.811,0.214,0.109 +0.800,0.211,0.107 +0.789,0.208,0.105 +0.778,0.206,0.104 +0.766,0.204,0.103 +0.755,0.202,0.103 +0.743,0.201,0.103 +0.730,0.200,0.103 +0.718,0.199,0.103 +0.706,0.198,0.104 +0.694,0.198,0.104 +0.681,0.197,0.105 +0.669,0.196,0.105 +0.656,0.195,0.106 +0.644,0.195,0.106 +0.631,0.194,0.107 +0.619,0.193,0.107 +0.607,0.192,0.108 +0.594,0.191,0.108 +0.582,0.190,0.109 +0.570,0.189,0.109 +0.558,0.188,0.110 +0.546,0.187,0.110 +0.534,0.186,0.110 +0.521,0.184,0.111 +0.509,0.183,0.111 +0.497,0.182,0.111 +0.485,0.180,0.112 +0.474,0.179,0.112 +0.462,0.177,0.112 +0.450,0.176,0.112 +0.438,0.174,0.112 +0.426,0.172,0.112 +0.414,0.171,0.112 +0.403,0.169,0.113 +0.391,0.167,0.113 +0.379,0.165,0.113 +0.368,0.163,0.113 +0.356,0.161,0.113 +0.345,0.159,0.113 +0.333,0.157,0.113 +0.322,0.155,0.113 +0.310,0.153,0.113 +0.299,0.151,0.113 +0.288,0.149,0.113 +0.277,0.146,0.113 +0.266,0.144,0.113 +0.255,0.142,0.114 +0.244,0.140,0.114 +0.234,0.138,0.115 +0.224,0.136,0.116 +0.215,0.135,0.118 +0.206,0.133,0.120 +0.197,0.132,0.122 +0.189,0.131,0.125 +0.182,0.130,0.129 +0.176,0.130,0.133 +0.170,0.130,0.138 +0.165,0.131,0.144 +0.161,0.131,0.150 +0.157,0.133,0.157 +0.155,0.134,0.164 +0.153,0.136,0.173 +0.152,0.139,0.182 +0.151,0.142,0.191 +0.151,0.145,0.201 +0.152,0.148,0.212 +0.152,0.152,0.223 +0.154,0.156,0.235 +0.155,0.160,0.246 +0.157,0.164,0.258 +0.159,0.169,0.271 +0.162,0.173,0.283 +0.164,0.178,0.296 +0.166,0.182,0.309 +0.168,0.187,0.322 +0.170,0.192,0.335 +0.172,0.196,0.348 +0.174,0.201,0.361 +0.176,0.206,0.375 +0.178,0.211,0.388 +0.180,0.216,0.402 +0.181,0.221,0.415 +0.183,0.226,0.429 +0.184,0.230,0.443 +0.185,0.235,0.457 +0.186,0.240,0.470 +0.187,0.245,0.484 +0.188,0.250,0.499 +0.188,0.255,0.513 +0.188,0.261,0.527 +0.189,0.266,0.541 +0.189,0.271,0.555 +0.188,0.276,0.570 +0.188,0.281,0.584 +0.187,0.286,0.599 +0.187,0.291,0.614 +0.186,0.297,0.628 +0.184,0.302,0.643 +0.183,0.307,0.658 +0.181,0.312,0.673 +0.179,0.317,0.687 +0.177,0.323,0.702 +0.174,0.328,0.717 +0.171,0.333,0.732 +0.168,0.339,0.747 +0.165,0.344,0.762 +0.161,0.349,0.777 +0.158,0.355,0.792 +0.154,0.360,0.807 +0.150,0.366,0.822 +0.146,0.371,0.837 +0.143,0.377,0.851 +0.140,0.382,0.865 +0.138,0.388,0.878 +0.137,0.393,0.892 +0.138,0.399,0.904 +0.141,0.405,0.916 +0.146,0.410,0.927 +0.153,0.416,0.937 +0.162,0.422,0.947 +0.173,0.428,0.955 +0.186,0.434,0.963 diff --git a/pyqtgraph/colors/maps/CET-C4.csv b/pyqtgraph/colors/maps/CET-C4.csv new file mode 100644 index 00000000..f2f82bb3 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-C4.csv @@ -0,0 +1,256 @@ +0.873,0.836,0.849 +0.878,0.834,0.841 +0.882,0.831,0.832 +0.886,0.827,0.823 +0.889,0.821,0.812 +0.892,0.815,0.802 +0.895,0.808,0.790 +0.897,0.800,0.778 +0.898,0.792,0.766 +0.900,0.783,0.753 +0.901,0.773,0.740 +0.902,0.763,0.727 +0.903,0.753,0.713 +0.903,0.743,0.700 +0.904,0.732,0.686 +0.904,0.722,0.672 +0.904,0.711,0.658 +0.903,0.700,0.644 +0.903,0.689,0.630 +0.902,0.678,0.617 +0.902,0.667,0.603 +0.901,0.656,0.589 +0.900,0.645,0.575 +0.899,0.634,0.562 +0.898,0.623,0.548 +0.896,0.612,0.534 +0.895,0.601,0.521 +0.893,0.589,0.507 +0.892,0.578,0.494 +0.890,0.567,0.480 +0.888,0.556,0.467 +0.886,0.545,0.454 +0.884,0.533,0.440 +0.881,0.522,0.427 +0.879,0.511,0.414 +0.876,0.500,0.401 +0.874,0.488,0.388 +0.871,0.477,0.375 +0.868,0.465,0.362 +0.866,0.454,0.349 +0.863,0.442,0.336 +0.859,0.430,0.323 +0.856,0.419,0.310 +0.853,0.407,0.297 +0.850,0.395,0.284 +0.846,0.383,0.271 +0.843,0.371,0.259 +0.839,0.358,0.246 +0.835,0.346,0.233 +0.832,0.334,0.221 +0.828,0.321,0.208 +0.824,0.309,0.196 +0.820,0.296,0.184 +0.816,0.284,0.172 +0.813,0.271,0.161 +0.809,0.260,0.150 +0.805,0.248,0.139 +0.802,0.237,0.130 +0.799,0.226,0.120 +0.796,0.217,0.112 +0.794,0.209,0.105 +0.792,0.202,0.099 +0.791,0.196,0.095 +0.790,0.193,0.092 +0.789,0.191,0.090 +0.789,0.191,0.090 +0.790,0.193,0.092 +0.791,0.198,0.096 +0.793,0.203,0.101 +0.795,0.211,0.107 +0.797,0.219,0.114 +0.800,0.229,0.123 +0.803,0.240,0.132 +0.806,0.251,0.142 +0.810,0.263,0.153 +0.814,0.275,0.164 +0.817,0.287,0.176 +0.821,0.300,0.187 +0.825,0.312,0.199 +0.829,0.324,0.212 +0.833,0.337,0.224 +0.836,0.349,0.237 +0.840,0.362,0.249 +0.844,0.374,0.262 +0.847,0.386,0.275 +0.851,0.398,0.288 +0.854,0.410,0.300 +0.857,0.422,0.313 +0.860,0.433,0.326 +0.863,0.445,0.339 +0.866,0.457,0.352 +0.869,0.468,0.365 +0.872,0.480,0.378 +0.875,0.491,0.391 +0.877,0.503,0.404 +0.880,0.514,0.418 +0.882,0.525,0.431 +0.884,0.537,0.444 +0.886,0.548,0.457 +0.888,0.559,0.471 +0.890,0.570,0.484 +0.892,0.581,0.497 +0.894,0.592,0.511 +0.895,0.604,0.524 +0.897,0.615,0.538 +0.898,0.626,0.552 +0.899,0.637,0.565 +0.900,0.648,0.579 +0.901,0.659,0.593 +0.902,0.670,0.607 +0.902,0.681,0.620 +0.903,0.692,0.634 +0.903,0.703,0.648 +0.903,0.713,0.662 +0.903,0.724,0.676 +0.903,0.735,0.690 +0.902,0.745,0.703 +0.901,0.755,0.717 +0.900,0.764,0.731 +0.899,0.774,0.744 +0.897,0.782,0.757 +0.894,0.790,0.770 +0.891,0.798,0.782 +0.888,0.804,0.794 +0.884,0.810,0.806 +0.880,0.815,0.816 +0.875,0.818,0.827 +0.870,0.821,0.836 +0.864,0.822,0.844 +0.857,0.822,0.852 +0.851,0.821,0.859 +0.843,0.819,0.865 +0.836,0.816,0.871 +0.828,0.812,0.875 +0.819,0.807,0.879 +0.811,0.802,0.883 +0.802,0.795,0.886 +0.793,0.788,0.888 +0.784,0.781,0.890 +0.775,0.773,0.891 +0.765,0.765,0.892 +0.756,0.757,0.893 +0.746,0.749,0.894 +0.737,0.740,0.895 +0.727,0.731,0.895 +0.717,0.723,0.896 +0.707,0.714,0.896 +0.697,0.705,0.897 +0.687,0.697,0.897 +0.677,0.688,0.897 +0.667,0.679,0.897 +0.657,0.670,0.898 +0.646,0.662,0.898 +0.636,0.653,0.898 +0.625,0.644,0.898 +0.615,0.636,0.898 +0.604,0.627,0.899 +0.593,0.619,0.899 +0.582,0.610,0.899 +0.571,0.602,0.899 +0.559,0.593,0.899 +0.548,0.585,0.899 +0.536,0.576,0.899 +0.524,0.568,0.899 +0.512,0.560,0.899 +0.500,0.551,0.899 +0.487,0.543,0.899 +0.475,0.535,0.899 +0.462,0.526,0.899 +0.448,0.518,0.899 +0.435,0.510,0.899 +0.421,0.502,0.899 +0.406,0.494,0.899 +0.392,0.486,0.899 +0.376,0.478,0.899 +0.361,0.470,0.899 +0.344,0.462,0.899 +0.328,0.455,0.898 +0.311,0.447,0.898 +0.293,0.440,0.898 +0.274,0.433,0.898 +0.255,0.426,0.898 +0.236,0.420,0.898 +0.216,0.414,0.898 +0.196,0.409,0.897 +0.177,0.404,0.897 +0.157,0.400,0.897 +0.139,0.396,0.897 +0.123,0.393,0.897 +0.110,0.391,0.897 +0.101,0.390,0.897 +0.099,0.390,0.897 +0.102,0.390,0.897 +0.112,0.392,0.897 +0.126,0.394,0.897 +0.143,0.397,0.897 +0.161,0.400,0.897 +0.181,0.405,0.897 +0.201,0.410,0.897 +0.221,0.415,0.898 +0.240,0.421,0.898 +0.260,0.428,0.898 +0.278,0.435,0.898 +0.297,0.442,0.898 +0.314,0.449,0.898 +0.331,0.456,0.898 +0.348,0.464,0.899 +0.364,0.472,0.899 +0.380,0.480,0.899 +0.395,0.488,0.899 +0.409,0.496,0.899 +0.424,0.504,0.899 +0.438,0.512,0.899 +0.451,0.520,0.899 +0.465,0.528,0.899 +0.477,0.536,0.899 +0.490,0.545,0.899 +0.503,0.553,0.899 +0.515,0.561,0.899 +0.527,0.570,0.899 +0.539,0.578,0.899 +0.550,0.586,0.899 +0.562,0.595,0.899 +0.573,0.603,0.899 +0.584,0.612,0.899 +0.595,0.620,0.899 +0.606,0.629,0.899 +0.617,0.638,0.898 +0.628,0.646,0.898 +0.638,0.655,0.898 +0.648,0.664,0.898 +0.659,0.672,0.898 +0.669,0.681,0.897 +0.679,0.690,0.897 +0.689,0.698,0.897 +0.699,0.707,0.897 +0.709,0.716,0.896 +0.719,0.725,0.896 +0.729,0.734,0.896 +0.739,0.742,0.895 +0.748,0.751,0.895 +0.758,0.760,0.894 +0.767,0.768,0.894 +0.776,0.777,0.893 +0.785,0.785,0.892 +0.794,0.793,0.891 +0.803,0.800,0.889 +0.811,0.807,0.888 +0.820,0.814,0.886 +0.828,0.820,0.883 +0.835,0.825,0.880 +0.843,0.829,0.877 +0.850,0.833,0.873 +0.856,0.835,0.868 +0.862,0.837,0.862 +0.868,0.837,0.856 diff --git a/pyqtgraph/colors/maps/CET-C4s.csv b/pyqtgraph/colors/maps/CET-C4s.csv new file mode 100644 index 00000000..67dd578a --- /dev/null +++ b/pyqtgraph/colors/maps/CET-C4s.csv @@ -0,0 +1,256 @@ +0.102,0.390,0.897 +0.112,0.392,0.897 +0.126,0.394,0.897 +0.143,0.397,0.897 +0.161,0.400,0.897 +0.181,0.405,0.897 +0.201,0.410,0.897 +0.221,0.415,0.898 +0.240,0.421,0.898 +0.260,0.428,0.898 +0.278,0.435,0.898 +0.297,0.442,0.898 +0.314,0.449,0.898 +0.331,0.456,0.898 +0.348,0.464,0.899 +0.364,0.472,0.899 +0.380,0.480,0.899 +0.395,0.488,0.899 +0.409,0.496,0.899 +0.424,0.504,0.899 +0.438,0.512,0.899 +0.451,0.520,0.899 +0.465,0.528,0.899 +0.477,0.536,0.899 +0.490,0.545,0.899 +0.503,0.553,0.899 +0.515,0.561,0.899 +0.527,0.570,0.899 +0.539,0.578,0.899 +0.550,0.586,0.899 +0.562,0.595,0.899 +0.573,0.603,0.899 +0.584,0.612,0.899 +0.595,0.620,0.899 +0.606,0.629,0.899 +0.617,0.638,0.898 +0.628,0.646,0.898 +0.638,0.655,0.898 +0.648,0.664,0.898 +0.659,0.672,0.898 +0.669,0.681,0.897 +0.679,0.690,0.897 +0.689,0.698,0.897 +0.699,0.707,0.897 +0.709,0.716,0.896 +0.719,0.725,0.896 +0.729,0.734,0.896 +0.739,0.742,0.895 +0.748,0.751,0.895 +0.758,0.760,0.894 +0.767,0.768,0.894 +0.776,0.777,0.893 +0.785,0.785,0.892 +0.794,0.793,0.891 +0.803,0.800,0.889 +0.811,0.807,0.888 +0.820,0.814,0.886 +0.828,0.820,0.883 +0.835,0.825,0.880 +0.843,0.829,0.877 +0.850,0.833,0.873 +0.856,0.835,0.868 +0.862,0.837,0.862 +0.868,0.837,0.856 +0.873,0.836,0.849 +0.878,0.834,0.841 +0.882,0.831,0.832 +0.886,0.827,0.823 +0.889,0.821,0.812 +0.892,0.815,0.802 +0.895,0.808,0.790 +0.897,0.800,0.778 +0.898,0.792,0.766 +0.900,0.783,0.753 +0.901,0.773,0.740 +0.902,0.763,0.727 +0.903,0.753,0.713 +0.903,0.743,0.700 +0.904,0.732,0.686 +0.904,0.722,0.672 +0.904,0.711,0.658 +0.903,0.700,0.644 +0.903,0.689,0.630 +0.902,0.678,0.617 +0.902,0.667,0.603 +0.901,0.656,0.589 +0.900,0.645,0.575 +0.899,0.634,0.562 +0.898,0.623,0.548 +0.896,0.612,0.534 +0.895,0.601,0.521 +0.893,0.589,0.507 +0.892,0.578,0.494 +0.890,0.567,0.480 +0.888,0.556,0.467 +0.886,0.545,0.454 +0.884,0.533,0.440 +0.881,0.522,0.427 +0.879,0.511,0.414 +0.876,0.500,0.401 +0.874,0.488,0.388 +0.871,0.477,0.375 +0.868,0.465,0.362 +0.866,0.454,0.349 +0.863,0.442,0.336 +0.859,0.430,0.323 +0.856,0.419,0.310 +0.853,0.407,0.297 +0.850,0.395,0.284 +0.846,0.383,0.271 +0.843,0.371,0.259 +0.839,0.358,0.246 +0.835,0.346,0.233 +0.832,0.334,0.221 +0.828,0.321,0.208 +0.824,0.309,0.196 +0.820,0.296,0.184 +0.816,0.284,0.172 +0.813,0.271,0.161 +0.809,0.260,0.150 +0.805,0.248,0.139 +0.802,0.237,0.130 +0.799,0.226,0.120 +0.796,0.217,0.112 +0.794,0.209,0.105 +0.792,0.202,0.099 +0.791,0.196,0.095 +0.790,0.193,0.092 +0.789,0.191,0.090 +0.789,0.191,0.090 +0.790,0.193,0.092 +0.791,0.198,0.096 +0.793,0.203,0.101 +0.795,0.211,0.107 +0.797,0.219,0.114 +0.800,0.229,0.123 +0.803,0.240,0.132 +0.806,0.251,0.142 +0.810,0.263,0.153 +0.814,0.275,0.164 +0.817,0.287,0.176 +0.821,0.300,0.187 +0.825,0.312,0.199 +0.829,0.324,0.212 +0.833,0.337,0.224 +0.836,0.349,0.237 +0.840,0.362,0.249 +0.844,0.374,0.262 +0.847,0.386,0.275 +0.851,0.398,0.288 +0.854,0.410,0.300 +0.857,0.422,0.313 +0.860,0.433,0.326 +0.863,0.445,0.339 +0.866,0.457,0.352 +0.869,0.468,0.365 +0.872,0.480,0.378 +0.875,0.491,0.391 +0.877,0.503,0.404 +0.880,0.514,0.418 +0.882,0.525,0.431 +0.884,0.537,0.444 +0.886,0.548,0.457 +0.888,0.559,0.471 +0.890,0.570,0.484 +0.892,0.581,0.497 +0.894,0.592,0.511 +0.895,0.604,0.524 +0.897,0.615,0.538 +0.898,0.626,0.552 +0.899,0.637,0.565 +0.900,0.648,0.579 +0.901,0.659,0.593 +0.902,0.670,0.607 +0.902,0.681,0.620 +0.903,0.692,0.634 +0.903,0.703,0.648 +0.903,0.713,0.662 +0.903,0.724,0.676 +0.903,0.735,0.690 +0.902,0.745,0.703 +0.901,0.755,0.717 +0.900,0.764,0.731 +0.899,0.774,0.744 +0.897,0.782,0.757 +0.894,0.790,0.770 +0.891,0.798,0.782 +0.888,0.804,0.794 +0.884,0.810,0.806 +0.880,0.815,0.816 +0.875,0.818,0.827 +0.870,0.821,0.836 +0.864,0.822,0.844 +0.857,0.822,0.852 +0.851,0.821,0.859 +0.843,0.819,0.865 +0.836,0.816,0.871 +0.828,0.812,0.875 +0.819,0.807,0.879 +0.811,0.802,0.883 +0.802,0.795,0.886 +0.793,0.788,0.888 +0.784,0.781,0.890 +0.775,0.773,0.891 +0.765,0.765,0.892 +0.756,0.757,0.893 +0.746,0.749,0.894 +0.737,0.740,0.895 +0.727,0.731,0.895 +0.717,0.723,0.896 +0.707,0.714,0.896 +0.697,0.705,0.897 +0.687,0.697,0.897 +0.677,0.688,0.897 +0.667,0.679,0.897 +0.657,0.670,0.898 +0.646,0.662,0.898 +0.636,0.653,0.898 +0.625,0.644,0.898 +0.615,0.636,0.898 +0.604,0.627,0.899 +0.593,0.619,0.899 +0.582,0.610,0.899 +0.571,0.602,0.899 +0.559,0.593,0.899 +0.548,0.585,0.899 +0.536,0.576,0.899 +0.524,0.568,0.899 +0.512,0.560,0.899 +0.500,0.551,0.899 +0.487,0.543,0.899 +0.475,0.535,0.899 +0.462,0.526,0.899 +0.448,0.518,0.899 +0.435,0.510,0.899 +0.421,0.502,0.899 +0.406,0.494,0.899 +0.392,0.486,0.899 +0.376,0.478,0.899 +0.361,0.470,0.899 +0.344,0.462,0.899 +0.328,0.455,0.898 +0.311,0.447,0.898 +0.293,0.440,0.898 +0.274,0.433,0.898 +0.255,0.426,0.898 +0.236,0.420,0.898 +0.216,0.414,0.898 +0.196,0.409,0.897 +0.177,0.404,0.897 +0.157,0.400,0.897 +0.139,0.396,0.897 +0.123,0.393,0.897 +0.110,0.391,0.897 +0.101,0.390,0.897 +0.099,0.390,0.897 diff --git a/pyqtgraph/colors/maps/CET-C5.csv b/pyqtgraph/colors/maps/CET-C5.csv new file mode 100644 index 00000000..c9256c44 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-C5.csv @@ -0,0 +1,256 @@ +0.469,0.469,0.469 +0.474,0.474,0.474 +0.479,0.479,0.479 +0.484,0.484,0.484 +0.489,0.489,0.489 +0.494,0.494,0.494 +0.499,0.499,0.499 +0.505,0.505,0.505 +0.510,0.510,0.510 +0.515,0.515,0.515 +0.520,0.521,0.521 +0.526,0.526,0.526 +0.531,0.531,0.531 +0.537,0.537,0.537 +0.542,0.542,0.542 +0.548,0.548,0.548 +0.553,0.553,0.553 +0.558,0.559,0.559 +0.564,0.564,0.564 +0.569,0.570,0.570 +0.575,0.575,0.575 +0.581,0.581,0.581 +0.586,0.586,0.586 +0.592,0.592,0.592 +0.597,0.597,0.597 +0.603,0.603,0.603 +0.608,0.609,0.609 +0.614,0.614,0.614 +0.620,0.620,0.620 +0.625,0.625,0.625 +0.631,0.631,0.631 +0.637,0.637,0.637 +0.642,0.642,0.642 +0.648,0.648,0.648 +0.653,0.654,0.654 +0.659,0.659,0.659 +0.665,0.665,0.665 +0.671,0.671,0.671 +0.676,0.676,0.676 +0.682,0.682,0.682 +0.688,0.688,0.688 +0.693,0.694,0.693 +0.699,0.699,0.699 +0.705,0.705,0.705 +0.711,0.711,0.711 +0.716,0.717,0.716 +0.722,0.722,0.722 +0.728,0.728,0.728 +0.733,0.734,0.734 +0.739,0.739,0.739 +0.745,0.745,0.745 +0.750,0.750,0.750 +0.755,0.756,0.756 +0.761,0.761,0.761 +0.766,0.766,0.766 +0.770,0.771,0.771 +0.775,0.775,0.775 +0.779,0.779,0.779 +0.783,0.783,0.783 +0.786,0.786,0.786 +0.788,0.788,0.788 +0.790,0.790,0.790 +0.792,0.792,0.792 +0.792,0.793,0.793 +0.793,0.793,0.793 +0.792,0.792,0.792 +0.791,0.791,0.791 +0.789,0.789,0.789 +0.786,0.786,0.786 +0.783,0.783,0.783 +0.780,0.780,0.780 +0.776,0.776,0.776 +0.771,0.772,0.772 +0.767,0.767,0.767 +0.762,0.762,0.762 +0.757,0.757,0.757 +0.751,0.752,0.752 +0.746,0.746,0.746 +0.740,0.741,0.741 +0.735,0.735,0.735 +0.729,0.729,0.729 +0.723,0.724,0.724 +0.718,0.718,0.718 +0.712,0.712,0.712 +0.706,0.706,0.706 +0.701,0.701,0.701 +0.695,0.695,0.695 +0.689,0.689,0.689 +0.683,0.683,0.683 +0.678,0.678,0.678 +0.672,0.672,0.672 +0.666,0.666,0.666 +0.661,0.661,0.661 +0.655,0.655,0.655 +0.649,0.649,0.649 +0.644,0.644,0.644 +0.638,0.638,0.638 +0.632,0.632,0.632 +0.627,0.627,0.627 +0.621,0.621,0.621 +0.615,0.615,0.615 +0.610,0.610,0.610 +0.604,0.604,0.604 +0.599,0.599,0.599 +0.593,0.593,0.593 +0.587,0.588,0.588 +0.582,0.582,0.582 +0.576,0.576,0.576 +0.571,0.571,0.571 +0.565,0.565,0.565 +0.560,0.560,0.560 +0.554,0.554,0.554 +0.549,0.549,0.549 +0.543,0.543,0.543 +0.538,0.538,0.538 +0.532,0.532,0.532 +0.527,0.527,0.527 +0.521,0.522,0.522 +0.516,0.516,0.516 +0.511,0.511,0.511 +0.505,0.505,0.505 +0.500,0.500,0.500 +0.494,0.494,0.494 +0.489,0.489,0.489 +0.484,0.484,0.484 +0.478,0.478,0.478 +0.473,0.473,0.473 +0.468,0.468,0.468 +0.462,0.462,0.462 +0.457,0.457,0.457 +0.452,0.452,0.452 +0.446,0.446,0.446 +0.441,0.441,0.441 +0.436,0.436,0.436 +0.430,0.431,0.431 +0.425,0.425,0.425 +0.420,0.420,0.420 +0.415,0.415,0.415 +0.410,0.410,0.410 +0.404,0.404,0.404 +0.399,0.399,0.399 +0.394,0.394,0.394 +0.389,0.389,0.389 +0.384,0.384,0.384 +0.378,0.379,0.379 +0.373,0.373,0.373 +0.368,0.368,0.368 +0.363,0.363,0.363 +0.358,0.358,0.358 +0.353,0.353,0.353 +0.348,0.348,0.348 +0.343,0.343,0.343 +0.338,0.338,0.338 +0.333,0.333,0.333 +0.328,0.328,0.328 +0.323,0.323,0.323 +0.318,0.318,0.318 +0.313,0.313,0.313 +0.308,0.308,0.308 +0.303,0.303,0.303 +0.298,0.298,0.298 +0.293,0.293,0.293 +0.288,0.288,0.288 +0.283,0.283,0.283 +0.278,0.278,0.278 +0.273,0.273,0.273 +0.269,0.269,0.269 +0.264,0.264,0.264 +0.259,0.259,0.259 +0.254,0.254,0.254 +0.249,0.249,0.249 +0.244,0.245,0.245 +0.240,0.240,0.240 +0.235,0.235,0.235 +0.230,0.230,0.230 +0.226,0.226,0.226 +0.221,0.221,0.221 +0.217,0.217,0.217 +0.212,0.212,0.212 +0.208,0.208,0.208 +0.204,0.204,0.204 +0.200,0.200,0.200 +0.196,0.196,0.196 +0.192,0.192,0.192 +0.189,0.189,0.189 +0.186,0.186,0.186 +0.183,0.183,0.183 +0.181,0.181,0.181 +0.179,0.179,0.179 +0.178,0.178,0.178 +0.177,0.177,0.177 +0.177,0.177,0.177 +0.177,0.177,0.177 +0.178,0.178,0.178 +0.179,0.179,0.179 +0.180,0.180,0.180 +0.183,0.183,0.183 +0.185,0.185,0.185 +0.188,0.188,0.188 +0.191,0.191,0.191 +0.195,0.195,0.195 +0.199,0.199,0.199 +0.203,0.203,0.203 +0.207,0.207,0.207 +0.211,0.211,0.211 +0.215,0.216,0.216 +0.220,0.220,0.220 +0.225,0.225,0.225 +0.229,0.229,0.229 +0.234,0.234,0.234 +0.239,0.239,0.239 +0.243,0.243,0.243 +0.248,0.248,0.248 +0.253,0.253,0.253 +0.258,0.258,0.258 +0.263,0.263,0.263 +0.267,0.267,0.267 +0.272,0.272,0.272 +0.277,0.277,0.277 +0.282,0.282,0.282 +0.287,0.287,0.287 +0.292,0.292,0.292 +0.297,0.297,0.297 +0.302,0.302,0.302 +0.307,0.307,0.307 +0.312,0.312,0.312 +0.317,0.317,0.317 +0.321,0.322,0.322 +0.326,0.327,0.327 +0.332,0.332,0.332 +0.337,0.337,0.337 +0.342,0.342,0.342 +0.347,0.347,0.347 +0.352,0.352,0.352 +0.357,0.357,0.357 +0.362,0.362,0.362 +0.367,0.367,0.367 +0.372,0.372,0.372 +0.377,0.377,0.377 +0.382,0.382,0.382 +0.387,0.388,0.388 +0.393,0.393,0.393 +0.398,0.398,0.398 +0.403,0.403,0.403 +0.408,0.408,0.408 +0.413,0.413,0.413 +0.418,0.418,0.418 +0.423,0.423,0.423 +0.428,0.429,0.429 +0.434,0.434,0.434 +0.439,0.439,0.439 +0.444,0.444,0.444 +0.449,0.449,0.449 +0.454,0.454,0.454 +0.459,0.459,0.459 +0.464,0.464,0.464 diff --git a/pyqtgraph/colors/maps/CET-C5s.csv b/pyqtgraph/colors/maps/CET-C5s.csv new file mode 100644 index 00000000..64e44ca7 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-C5s.csv @@ -0,0 +1,256 @@ +0.177,0.177,0.177 +0.178,0.178,0.178 +0.179,0.179,0.179 +0.180,0.180,0.180 +0.183,0.183,0.183 +0.185,0.185,0.185 +0.188,0.188,0.188 +0.191,0.191,0.191 +0.195,0.195,0.195 +0.199,0.199,0.199 +0.203,0.203,0.203 +0.207,0.207,0.207 +0.211,0.211,0.211 +0.215,0.216,0.216 +0.220,0.220,0.220 +0.225,0.225,0.225 +0.229,0.229,0.229 +0.234,0.234,0.234 +0.239,0.239,0.239 +0.243,0.243,0.243 +0.248,0.248,0.248 +0.253,0.253,0.253 +0.258,0.258,0.258 +0.263,0.263,0.263 +0.267,0.267,0.267 +0.272,0.272,0.272 +0.277,0.277,0.277 +0.282,0.282,0.282 +0.287,0.287,0.287 +0.292,0.292,0.292 +0.297,0.297,0.297 +0.302,0.302,0.302 +0.307,0.307,0.307 +0.312,0.312,0.312 +0.317,0.317,0.317 +0.321,0.322,0.322 +0.326,0.327,0.327 +0.332,0.332,0.332 +0.337,0.337,0.337 +0.342,0.342,0.342 +0.347,0.347,0.347 +0.352,0.352,0.352 +0.357,0.357,0.357 +0.362,0.362,0.362 +0.367,0.367,0.367 +0.372,0.372,0.372 +0.377,0.377,0.377 +0.382,0.382,0.382 +0.387,0.388,0.388 +0.393,0.393,0.393 +0.398,0.398,0.398 +0.403,0.403,0.403 +0.408,0.408,0.408 +0.413,0.413,0.413 +0.418,0.418,0.418 +0.423,0.423,0.423 +0.428,0.429,0.429 +0.434,0.434,0.434 +0.439,0.439,0.439 +0.444,0.444,0.444 +0.449,0.449,0.449 +0.454,0.454,0.454 +0.459,0.459,0.459 +0.464,0.464,0.464 +0.469,0.469,0.469 +0.474,0.474,0.474 +0.479,0.479,0.479 +0.484,0.484,0.484 +0.489,0.489,0.489 +0.494,0.494,0.494 +0.499,0.499,0.499 +0.505,0.505,0.505 +0.510,0.510,0.510 +0.515,0.515,0.515 +0.520,0.521,0.521 +0.526,0.526,0.526 +0.531,0.531,0.531 +0.537,0.537,0.537 +0.542,0.542,0.542 +0.548,0.548,0.548 +0.553,0.553,0.553 +0.558,0.559,0.559 +0.564,0.564,0.564 +0.569,0.570,0.570 +0.575,0.575,0.575 +0.581,0.581,0.581 +0.586,0.586,0.586 +0.592,0.592,0.592 +0.597,0.597,0.597 +0.603,0.603,0.603 +0.608,0.609,0.609 +0.614,0.614,0.614 +0.620,0.620,0.620 +0.625,0.625,0.625 +0.631,0.631,0.631 +0.637,0.637,0.637 +0.642,0.642,0.642 +0.648,0.648,0.648 +0.653,0.654,0.654 +0.659,0.659,0.659 +0.665,0.665,0.665 +0.671,0.671,0.671 +0.676,0.676,0.676 +0.682,0.682,0.682 +0.688,0.688,0.688 +0.693,0.694,0.693 +0.699,0.699,0.699 +0.705,0.705,0.705 +0.711,0.711,0.711 +0.716,0.717,0.716 +0.722,0.722,0.722 +0.728,0.728,0.728 +0.733,0.734,0.734 +0.739,0.739,0.739 +0.745,0.745,0.745 +0.750,0.750,0.750 +0.755,0.756,0.756 +0.761,0.761,0.761 +0.766,0.766,0.766 +0.770,0.771,0.771 +0.775,0.775,0.775 +0.779,0.779,0.779 +0.783,0.783,0.783 +0.786,0.786,0.786 +0.788,0.788,0.788 +0.790,0.790,0.790 +0.792,0.792,0.792 +0.792,0.793,0.793 +0.793,0.793,0.793 +0.792,0.792,0.792 +0.791,0.791,0.791 +0.789,0.789,0.789 +0.786,0.786,0.786 +0.783,0.783,0.783 +0.780,0.780,0.780 +0.776,0.776,0.776 +0.771,0.772,0.772 +0.767,0.767,0.767 +0.762,0.762,0.762 +0.757,0.757,0.757 +0.751,0.752,0.752 +0.746,0.746,0.746 +0.740,0.741,0.741 +0.735,0.735,0.735 +0.729,0.729,0.729 +0.723,0.724,0.724 +0.718,0.718,0.718 +0.712,0.712,0.712 +0.706,0.706,0.706 +0.701,0.701,0.701 +0.695,0.695,0.695 +0.689,0.689,0.689 +0.683,0.683,0.683 +0.678,0.678,0.678 +0.672,0.672,0.672 +0.666,0.666,0.666 +0.661,0.661,0.661 +0.655,0.655,0.655 +0.649,0.649,0.649 +0.644,0.644,0.644 +0.638,0.638,0.638 +0.632,0.632,0.632 +0.627,0.627,0.627 +0.621,0.621,0.621 +0.615,0.615,0.615 +0.610,0.610,0.610 +0.604,0.604,0.604 +0.599,0.599,0.599 +0.593,0.593,0.593 +0.587,0.588,0.588 +0.582,0.582,0.582 +0.576,0.576,0.576 +0.571,0.571,0.571 +0.565,0.565,0.565 +0.560,0.560,0.560 +0.554,0.554,0.554 +0.549,0.549,0.549 +0.543,0.543,0.543 +0.538,0.538,0.538 +0.532,0.532,0.532 +0.527,0.527,0.527 +0.521,0.522,0.522 +0.516,0.516,0.516 +0.511,0.511,0.511 +0.505,0.505,0.505 +0.500,0.500,0.500 +0.494,0.494,0.494 +0.489,0.489,0.489 +0.484,0.484,0.484 +0.478,0.478,0.478 +0.473,0.473,0.473 +0.468,0.468,0.468 +0.462,0.462,0.462 +0.457,0.457,0.457 +0.452,0.452,0.452 +0.446,0.446,0.446 +0.441,0.441,0.441 +0.436,0.436,0.436 +0.430,0.431,0.431 +0.425,0.425,0.425 +0.420,0.420,0.420 +0.415,0.415,0.415 +0.410,0.410,0.410 +0.404,0.404,0.404 +0.399,0.399,0.399 +0.394,0.394,0.394 +0.389,0.389,0.389 +0.384,0.384,0.384 +0.378,0.379,0.379 +0.373,0.373,0.373 +0.368,0.368,0.368 +0.363,0.363,0.363 +0.358,0.358,0.358 +0.353,0.353,0.353 +0.348,0.348,0.348 +0.343,0.343,0.343 +0.338,0.338,0.338 +0.333,0.333,0.333 +0.328,0.328,0.328 +0.323,0.323,0.323 +0.318,0.318,0.318 +0.313,0.313,0.313 +0.308,0.308,0.308 +0.303,0.303,0.303 +0.298,0.298,0.298 +0.293,0.293,0.293 +0.288,0.288,0.288 +0.283,0.283,0.283 +0.278,0.278,0.278 +0.273,0.273,0.273 +0.269,0.269,0.269 +0.264,0.264,0.264 +0.259,0.259,0.259 +0.254,0.254,0.254 +0.249,0.249,0.249 +0.244,0.245,0.245 +0.240,0.240,0.240 +0.235,0.235,0.235 +0.230,0.230,0.230 +0.226,0.226,0.226 +0.221,0.221,0.221 +0.217,0.217,0.217 +0.212,0.212,0.212 +0.208,0.208,0.208 +0.204,0.204,0.204 +0.200,0.200,0.200 +0.196,0.196,0.196 +0.192,0.192,0.192 +0.189,0.189,0.189 +0.186,0.186,0.186 +0.183,0.183,0.183 +0.181,0.181,0.181 +0.179,0.179,0.179 +0.178,0.178,0.178 +0.177,0.177,0.177 +0.177,0.177,0.177 diff --git a/pyqtgraph/colors/maps/CET-C6.csv b/pyqtgraph/colors/maps/CET-C6.csv new file mode 100644 index 00000000..aa39a478 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-C6.csv @@ -0,0 +1,256 @@ +0.967,0.214,0.103 +0.967,0.220,0.092 +0.966,0.228,0.082 +0.967,0.239,0.072 +0.967,0.252,0.063 +0.968,0.266,0.055 +0.969,0.282,0.047 +0.971,0.298,0.040 +0.972,0.315,0.033 +0.974,0.333,0.027 +0.976,0.350,0.023 +0.978,0.368,0.019 +0.980,0.386,0.015 +0.983,0.403,0.012 +0.985,0.421,0.010 +0.987,0.438,0.007 +0.989,0.455,0.005 +0.991,0.472,0.003 +0.992,0.489,0.001 +0.994,0.505,0.000 +0.996,0.522,0.000 +0.998,0.538,0.000 +0.999,0.554,0.000 +1.000,0.569,0.000 +1.000,0.585,0.000 +1.000,0.600,0.000 +1.000,0.616,0.000 +1.000,0.631,0.000 +1.000,0.646,0.000 +1.000,0.660,0.000 +1.000,0.675,0.000 +1.000,0.689,0.000 +1.000,0.703,0.000 +1.000,0.717,0.000 +1.000,0.730,0.000 +1.000,0.743,0.000 +0.997,0.755,0.000 +0.993,0.766,0.000 +0.988,0.777,0.000 +0.983,0.787,0.000 +0.976,0.795,0.000 +0.968,0.803,0.000 +0.959,0.809,0.000 +0.949,0.814,0.000 +0.938,0.817,0.000 +0.925,0.820,0.000 +0.912,0.821,0.000 +0.898,0.821,0.000 +0.883,0.820,0.000 +0.868,0.817,0.000 +0.852,0.814,0.000 +0.835,0.810,0.000 +0.818,0.805,0.000 +0.801,0.800,0.000 +0.783,0.794,0.000 +0.765,0.788,0.000 +0.747,0.781,0.000 +0.729,0.774,0.000 +0.711,0.767,0.000 +0.692,0.760,0.000 +0.674,0.752,0.000 +0.655,0.745,0.000 +0.637,0.737,0.000 +0.618,0.730,0.000 +0.600,0.722,0.000 +0.581,0.714,0.000 +0.562,0.707,0.001 +0.543,0.699,0.003 +0.524,0.691,0.004 +0.505,0.684,0.006 +0.486,0.676,0.008 +0.467,0.668,0.010 +0.448,0.661,0.014 +0.429,0.654,0.017 +0.409,0.647,0.022 +0.390,0.640,0.027 +0.371,0.633,0.034 +0.352,0.627,0.042 +0.334,0.621,0.051 +0.316,0.616,0.061 +0.298,0.611,0.071 +0.281,0.607,0.082 +0.265,0.604,0.094 +0.249,0.602,0.106 +0.235,0.601,0.119 +0.222,0.601,0.133 +0.210,0.601,0.147 +0.199,0.603,0.162 +0.190,0.606,0.177 +0.183,0.610,0.193 +0.177,0.614,0.210 +0.173,0.620,0.227 +0.170,0.626,0.244 +0.169,0.632,0.262 +0.169,0.640,0.281 +0.169,0.648,0.299 +0.171,0.656,0.318 +0.173,0.665,0.337 +0.176,0.674,0.356 +0.179,0.683,0.375 +0.181,0.692,0.395 +0.184,0.702,0.414 +0.187,0.711,0.434 +0.190,0.721,0.454 +0.192,0.731,0.473 +0.194,0.741,0.493 +0.195,0.751,0.513 +0.196,0.760,0.533 +0.197,0.770,0.552 +0.198,0.780,0.572 +0.197,0.790,0.592 +0.197,0.800,0.612 +0.196,0.810,0.632 +0.194,0.820,0.652 +0.192,0.830,0.672 +0.190,0.839,0.692 +0.187,0.848,0.712 +0.183,0.858,0.732 +0.180,0.866,0.752 +0.176,0.874,0.771 +0.172,0.882,0.790 +0.167,0.889,0.809 +0.163,0.895,0.827 +0.159,0.901,0.845 +0.155,0.905,0.862 +0.151,0.908,0.878 +0.149,0.910,0.893 +0.147,0.911,0.907 +0.146,0.911,0.920 +0.146,0.909,0.932 +0.147,0.906,0.943 +0.149,0.901,0.953 +0.152,0.896,0.961 +0.156,0.889,0.969 +0.160,0.881,0.975 +0.164,0.873,0.980 +0.168,0.863,0.985 +0.172,0.853,0.989 +0.176,0.843,0.992 +0.180,0.832,0.995 +0.183,0.820,0.997 +0.186,0.809,0.999 +0.188,0.797,1.000 +0.190,0.785,1.000 +0.192,0.773,1.000 +0.193,0.760,1.000 +0.193,0.748,1.000 +0.193,0.736,1.000 +0.192,0.723,1.000 +0.191,0.711,1.000 +0.189,0.699,1.000 +0.187,0.687,1.000 +0.184,0.674,1.000 +0.181,0.662,1.000 +0.177,0.650,1.000 +0.173,0.638,1.000 +0.169,0.626,1.000 +0.165,0.614,1.000 +0.161,0.603,1.000 +0.158,0.591,1.000 +0.156,0.580,1.000 +0.155,0.570,1.000 +0.155,0.559,1.000 +0.158,0.550,1.000 +0.163,0.541,1.000 +0.170,0.533,1.000 +0.180,0.525,1.000 +0.193,0.519,1.000 +0.207,0.513,1.000 +0.224,0.509,1.000 +0.242,0.506,1.000 +0.262,0.504,1.000 +0.283,0.503,1.000 +0.304,0.503,1.000 +0.326,0.504,1.000 +0.348,0.507,1.000 +0.370,0.510,1.000 +0.392,0.514,1.000 +0.414,0.519,1.000 +0.435,0.525,1.000 +0.457,0.531,1.000 +0.478,0.538,1.000 +0.498,0.546,1.000 +0.518,0.553,1.000 +0.538,0.561,1.000 +0.558,0.570,1.000 +0.577,0.578,1.000 +0.595,0.586,1.000 +0.614,0.595,1.000 +0.632,0.604,1.000 +0.649,0.613,1.000 +0.667,0.622,1.000 +0.684,0.631,1.000 +0.701,0.640,1.000 +0.718,0.648,1.000 +0.734,0.657,1.000 +0.751,0.666,1.000 +0.767,0.675,1.000 +0.783,0.684,1.000 +0.799,0.692,1.000 +0.814,0.701,1.000 +0.830,0.709,1.000 +0.845,0.716,1.000 +0.861,0.723,1.000 +0.876,0.730,1.000 +0.890,0.736,1.000 +0.905,0.740,0.994 +0.919,0.744,0.987 +0.932,0.747,0.979 +0.945,0.749,0.970 +0.957,0.750,0.959 +0.969,0.749,0.947 +0.980,0.747,0.934 +0.990,0.743,0.920 +0.999,0.738,0.904 +1.000,0.732,0.887 +1.000,0.725,0.870 +1.000,0.716,0.851 +1.000,0.707,0.832 +1.000,0.696,0.812 +1.000,0.685,0.792 +1.000,0.673,0.771 +1.000,0.661,0.750 +1.000,0.648,0.729 +1.000,0.635,0.707 +1.000,0.621,0.686 +1.000,0.607,0.664 +1.000,0.593,0.643 +1.000,0.579,0.621 +1.000,0.564,0.600 +1.000,0.549,0.578 +1.000,0.535,0.557 +1.000,0.520,0.536 +1.000,0.505,0.515 +1.000,0.489,0.494 +1.000,0.474,0.473 +1.000,0.458,0.452 +1.000,0.443,0.431 +1.000,0.427,0.411 +1.000,0.411,0.390 +1.000,0.395,0.370 +1.000,0.378,0.350 +1.000,0.362,0.330 +1.000,0.346,0.310 +1.000,0.329,0.291 +0.999,0.313,0.272 +0.995,0.297,0.254 +0.991,0.282,0.235 +0.987,0.267,0.218 +0.984,0.253,0.201 +0.980,0.240,0.185 +0.977,0.230,0.169 +0.974,0.221,0.154 +0.972,0.215,0.140 +0.970,0.212,0.127 +0.968,0.211,0.115 diff --git a/pyqtgraph/colors/maps/CET-C6s.csv b/pyqtgraph/colors/maps/CET-C6s.csv new file mode 100644 index 00000000..b34d26c9 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-C6s.csv @@ -0,0 +1,256 @@ +0.684,0.631,1.000 +0.701,0.640,1.000 +0.718,0.648,1.000 +0.734,0.657,1.000 +0.751,0.666,1.000 +0.767,0.675,1.000 +0.783,0.684,1.000 +0.799,0.692,1.000 +0.814,0.701,1.000 +0.830,0.709,1.000 +0.845,0.716,1.000 +0.861,0.723,1.000 +0.876,0.730,1.000 +0.890,0.736,1.000 +0.905,0.740,0.994 +0.919,0.744,0.987 +0.932,0.747,0.979 +0.945,0.749,0.970 +0.957,0.750,0.959 +0.969,0.749,0.947 +0.980,0.747,0.934 +0.990,0.743,0.920 +0.999,0.738,0.904 +1.000,0.732,0.887 +1.000,0.725,0.870 +1.000,0.716,0.851 +1.000,0.707,0.832 +1.000,0.696,0.812 +1.000,0.685,0.792 +1.000,0.673,0.771 +1.000,0.661,0.750 +1.000,0.648,0.729 +1.000,0.635,0.707 +1.000,0.621,0.686 +1.000,0.607,0.664 +1.000,0.593,0.643 +1.000,0.579,0.621 +1.000,0.564,0.600 +1.000,0.549,0.578 +1.000,0.535,0.557 +1.000,0.520,0.536 +1.000,0.505,0.515 +1.000,0.489,0.494 +1.000,0.474,0.473 +1.000,0.458,0.452 +1.000,0.443,0.431 +1.000,0.427,0.411 +1.000,0.411,0.390 +1.000,0.395,0.370 +1.000,0.378,0.350 +1.000,0.362,0.330 +1.000,0.346,0.310 +1.000,0.329,0.291 +0.999,0.313,0.272 +0.995,0.297,0.254 +0.991,0.282,0.235 +0.987,0.267,0.218 +0.984,0.253,0.201 +0.980,0.240,0.185 +0.977,0.230,0.169 +0.974,0.221,0.154 +0.972,0.215,0.140 +0.970,0.212,0.127 +0.968,0.211,0.115 +0.967,0.214,0.103 +0.967,0.220,0.092 +0.966,0.228,0.082 +0.967,0.239,0.072 +0.967,0.252,0.063 +0.968,0.266,0.055 +0.969,0.282,0.047 +0.971,0.298,0.040 +0.972,0.315,0.033 +0.974,0.333,0.027 +0.976,0.350,0.023 +0.978,0.368,0.019 +0.980,0.386,0.015 +0.983,0.403,0.012 +0.985,0.421,0.010 +0.987,0.438,0.007 +0.989,0.455,0.005 +0.991,0.472,0.003 +0.992,0.489,0.001 +0.994,0.505,0.000 +0.996,0.522,0.000 +0.998,0.538,0.000 +0.999,0.554,0.000 +1.000,0.569,0.000 +1.000,0.585,0.000 +1.000,0.600,0.000 +1.000,0.616,0.000 +1.000,0.631,0.000 +1.000,0.646,0.000 +1.000,0.660,0.000 +1.000,0.675,0.000 +1.000,0.689,0.000 +1.000,0.703,0.000 +1.000,0.717,0.000 +1.000,0.730,0.000 +1.000,0.743,0.000 +0.997,0.755,0.000 +0.993,0.766,0.000 +0.988,0.777,0.000 +0.983,0.787,0.000 +0.976,0.795,0.000 +0.968,0.803,0.000 +0.959,0.809,0.000 +0.949,0.814,0.000 +0.938,0.817,0.000 +0.925,0.820,0.000 +0.912,0.821,0.000 +0.898,0.821,0.000 +0.883,0.820,0.000 +0.868,0.817,0.000 +0.852,0.814,0.000 +0.835,0.810,0.000 +0.818,0.805,0.000 +0.801,0.800,0.000 +0.783,0.794,0.000 +0.765,0.788,0.000 +0.747,0.781,0.000 +0.729,0.774,0.000 +0.711,0.767,0.000 +0.692,0.760,0.000 +0.674,0.752,0.000 +0.655,0.745,0.000 +0.637,0.737,0.000 +0.618,0.730,0.000 +0.600,0.722,0.000 +0.581,0.714,0.000 +0.562,0.707,0.001 +0.543,0.699,0.003 +0.524,0.691,0.004 +0.505,0.684,0.006 +0.486,0.676,0.008 +0.467,0.668,0.010 +0.448,0.661,0.014 +0.429,0.654,0.017 +0.409,0.647,0.022 +0.390,0.640,0.027 +0.371,0.633,0.034 +0.352,0.627,0.042 +0.334,0.621,0.051 +0.316,0.616,0.061 +0.298,0.611,0.071 +0.281,0.607,0.082 +0.265,0.604,0.094 +0.249,0.602,0.106 +0.235,0.601,0.119 +0.222,0.601,0.133 +0.210,0.601,0.147 +0.199,0.603,0.162 +0.190,0.606,0.177 +0.183,0.610,0.193 +0.177,0.614,0.210 +0.173,0.620,0.227 +0.170,0.626,0.244 +0.169,0.632,0.262 +0.169,0.640,0.281 +0.169,0.648,0.299 +0.171,0.656,0.318 +0.173,0.665,0.337 +0.176,0.674,0.356 +0.179,0.683,0.375 +0.181,0.692,0.395 +0.184,0.702,0.414 +0.187,0.711,0.434 +0.190,0.721,0.454 +0.192,0.731,0.473 +0.194,0.741,0.493 +0.195,0.751,0.513 +0.196,0.760,0.533 +0.197,0.770,0.552 +0.198,0.780,0.572 +0.197,0.790,0.592 +0.197,0.800,0.612 +0.196,0.810,0.632 +0.194,0.820,0.652 +0.192,0.830,0.672 +0.190,0.839,0.692 +0.187,0.848,0.712 +0.183,0.858,0.732 +0.180,0.866,0.752 +0.176,0.874,0.771 +0.172,0.882,0.790 +0.167,0.889,0.809 +0.163,0.895,0.827 +0.159,0.901,0.845 +0.155,0.905,0.862 +0.151,0.908,0.878 +0.149,0.910,0.893 +0.147,0.911,0.907 +0.146,0.911,0.920 +0.146,0.909,0.932 +0.147,0.906,0.943 +0.149,0.901,0.953 +0.152,0.896,0.961 +0.156,0.889,0.969 +0.160,0.881,0.975 +0.164,0.873,0.980 +0.168,0.863,0.985 +0.172,0.853,0.989 +0.176,0.843,0.992 +0.180,0.832,0.995 +0.183,0.820,0.997 +0.186,0.809,0.999 +0.188,0.797,1.000 +0.190,0.785,1.000 +0.192,0.773,1.000 +0.193,0.760,1.000 +0.193,0.748,1.000 +0.193,0.736,1.000 +0.192,0.723,1.000 +0.191,0.711,1.000 +0.189,0.699,1.000 +0.187,0.687,1.000 +0.184,0.674,1.000 +0.181,0.662,1.000 +0.177,0.650,1.000 +0.173,0.638,1.000 +0.169,0.626,1.000 +0.165,0.614,1.000 +0.161,0.603,1.000 +0.158,0.591,1.000 +0.156,0.580,1.000 +0.155,0.570,1.000 +0.155,0.559,1.000 +0.158,0.550,1.000 +0.163,0.541,1.000 +0.170,0.533,1.000 +0.180,0.525,1.000 +0.193,0.519,1.000 +0.207,0.513,1.000 +0.224,0.509,1.000 +0.242,0.506,1.000 +0.262,0.504,1.000 +0.283,0.503,1.000 +0.304,0.503,1.000 +0.326,0.504,1.000 +0.348,0.507,1.000 +0.370,0.510,1.000 +0.392,0.514,1.000 +0.414,0.519,1.000 +0.435,0.525,1.000 +0.457,0.531,1.000 +0.478,0.538,1.000 +0.498,0.546,1.000 +0.518,0.553,1.000 +0.538,0.561,1.000 +0.558,0.570,1.000 +0.577,0.578,1.000 +0.595,0.586,1.000 +0.614,0.595,1.000 +0.632,0.604,1.000 +0.649,0.613,1.000 +0.667,0.622,1.000 diff --git a/pyqtgraph/colors/maps/CET-C7.csv b/pyqtgraph/colors/maps/CET-C7.csv new file mode 100644 index 00000000..f0136b55 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-C7.csv @@ -0,0 +1,256 @@ +0.914,0.894,0.098 +0.920,0.891,0.123 +0.926,0.887,0.147 +0.932,0.882,0.171 +0.937,0.876,0.193 +0.942,0.869,0.215 +0.947,0.862,0.236 +0.951,0.854,0.256 +0.955,0.846,0.275 +0.959,0.837,0.294 +0.963,0.829,0.312 +0.966,0.820,0.330 +0.970,0.811,0.346 +0.973,0.802,0.363 +0.976,0.793,0.379 +0.980,0.784,0.394 +0.983,0.774,0.409 +0.985,0.765,0.423 +0.988,0.756,0.438 +0.991,0.747,0.452 +0.993,0.737,0.465 +0.996,0.728,0.479 +0.998,0.718,0.492 +1.000,0.709,0.505 +1.000,0.699,0.518 +1.000,0.689,0.531 +1.000,0.680,0.544 +1.000,0.670,0.556 +1.000,0.660,0.568 +1.000,0.650,0.581 +1.000,0.640,0.593 +1.000,0.630,0.605 +1.000,0.619,0.617 +1.000,0.609,0.629 +1.000,0.598,0.641 +1.000,0.588,0.652 +1.000,0.577,0.664 +1.000,0.566,0.676 +1.000,0.555,0.687 +1.000,0.544,0.699 +1.000,0.533,0.710 +1.000,0.522,0.722 +1.000,0.510,0.733 +1.000,0.498,0.745 +1.000,0.486,0.756 +1.000,0.474,0.767 +1.000,0.462,0.779 +1.000,0.449,0.790 +1.000,0.436,0.801 +1.000,0.423,0.812 +1.000,0.409,0.824 +1.000,0.395,0.835 +1.000,0.381,0.846 +1.000,0.366,0.857 +1.000,0.351,0.868 +1.000,0.336,0.879 +1.000,0.321,0.890 +1.000,0.306,0.901 +1.000,0.291,0.912 +1.000,0.277,0.923 +1.000,0.265,0.933 +0.999,0.255,0.942 +0.996,0.248,0.951 +0.992,0.245,0.960 +0.987,0.246,0.967 +0.983,0.250,0.974 +0.978,0.259,0.979 +0.973,0.270,0.984 +0.967,0.284,0.988 +0.962,0.300,0.990 +0.956,0.316,0.993 +0.950,0.334,0.994 +0.944,0.351,0.995 +0.938,0.369,0.996 +0.932,0.386,0.997 +0.926,0.402,0.997 +0.920,0.419,0.997 +0.913,0.435,0.997 +0.907,0.450,0.997 +0.900,0.465,0.997 +0.893,0.480,0.997 +0.886,0.494,0.997 +0.879,0.507,0.997 +0.872,0.521,0.997 +0.865,0.534,0.997 +0.858,0.547,0.997 +0.850,0.560,0.997 +0.842,0.572,0.996 +0.835,0.584,0.996 +0.827,0.596,0.996 +0.818,0.608,0.996 +0.810,0.620,0.996 +0.802,0.631,0.996 +0.793,0.642,0.996 +0.784,0.653,0.996 +0.775,0.664,0.995 +0.766,0.675,0.995 +0.756,0.686,0.995 +0.747,0.697,0.995 +0.737,0.707,0.995 +0.726,0.718,0.995 +0.716,0.728,0.994 +0.705,0.738,0.994 +0.694,0.748,0.994 +0.683,0.758,0.994 +0.671,0.768,0.994 +0.659,0.778,0.993 +0.647,0.788,0.993 +0.634,0.798,0.993 +0.620,0.807,0.993 +0.607,0.817,0.992 +0.592,0.826,0.992 +0.578,0.836,0.992 +0.562,0.845,0.992 +0.546,0.855,0.991 +0.529,0.864,0.991 +0.511,0.873,0.990 +0.493,0.882,0.990 +0.473,0.891,0.989 +0.453,0.900,0.988 +0.431,0.908,0.987 +0.408,0.916,0.985 +0.385,0.924,0.983 +0.360,0.931,0.980 +0.334,0.937,0.976 +0.308,0.943,0.972 +0.282,0.947,0.966 +0.257,0.951,0.959 +0.232,0.953,0.951 +0.209,0.955,0.942 +0.189,0.955,0.933 +0.173,0.954,0.922 +0.160,0.952,0.910 +0.152,0.949,0.898 +0.148,0.946,0.886 +0.147,0.942,0.873 +0.149,0.938,0.860 +0.153,0.934,0.847 +0.157,0.929,0.834 +0.162,0.924,0.820 +0.167,0.919,0.807 +0.172,0.914,0.793 +0.177,0.909,0.780 +0.181,0.904,0.767 +0.185,0.899,0.753 +0.188,0.894,0.740 +0.191,0.889,0.726 +0.194,0.884,0.713 +0.196,0.879,0.700 +0.198,0.873,0.687 +0.199,0.868,0.673 +0.201,0.863,0.660 +0.202,0.858,0.647 +0.202,0.853,0.633 +0.203,0.848,0.620 +0.203,0.843,0.607 +0.203,0.838,0.594 +0.203,0.833,0.581 +0.202,0.828,0.567 +0.201,0.823,0.554 +0.200,0.819,0.541 +0.199,0.814,0.528 +0.198,0.809,0.515 +0.196,0.804,0.501 +0.194,0.799,0.488 +0.192,0.794,0.475 +0.189,0.789,0.462 +0.187,0.784,0.448 +0.184,0.779,0.435 +0.181,0.774,0.422 +0.177,0.769,0.408 +0.174,0.764,0.395 +0.170,0.760,0.381 +0.166,0.755,0.368 +0.161,0.750,0.354 +0.156,0.745,0.340 +0.151,0.740,0.326 +0.146,0.735,0.312 +0.140,0.730,0.298 +0.134,0.726,0.284 +0.128,0.721,0.269 +0.122,0.716,0.255 +0.116,0.712,0.240 +0.111,0.707,0.224 +0.107,0.703,0.209 +0.104,0.699,0.193 +0.103,0.695,0.177 +0.105,0.692,0.160 +0.109,0.690,0.144 +0.116,0.688,0.128 +0.126,0.686,0.111 +0.138,0.686,0.095 +0.152,0.686,0.078 +0.167,0.686,0.062 +0.183,0.688,0.046 +0.199,0.690,0.031 +0.216,0.692,0.019 +0.232,0.695,0.009 +0.249,0.698,0.002 +0.265,0.702,0.000 +0.281,0.705,0.000 +0.296,0.709,0.000 +0.311,0.713,0.000 +0.326,0.717,0.000 +0.340,0.721,0.000 +0.354,0.725,0.000 +0.368,0.729,0.000 +0.382,0.733,0.000 +0.395,0.737,0.000 +0.408,0.741,0.000 +0.421,0.745,0.000 +0.433,0.749,0.000 +0.446,0.753,0.000 +0.458,0.757,0.000 +0.470,0.761,0.000 +0.482,0.765,0.000 +0.494,0.769,0.000 +0.506,0.773,0.000 +0.518,0.777,0.000 +0.529,0.781,0.000 +0.541,0.785,0.000 +0.552,0.789,0.000 +0.564,0.792,0.000 +0.575,0.796,0.000 +0.586,0.800,0.000 +0.597,0.804,0.000 +0.609,0.808,0.000 +0.620,0.812,0.000 +0.631,0.816,0.000 +0.642,0.820,0.000 +0.653,0.823,0.000 +0.664,0.827,0.000 +0.675,0.831,0.000 +0.686,0.835,0.000 +0.696,0.839,0.000 +0.707,0.842,0.000 +0.718,0.846,0.000 +0.729,0.850,0.000 +0.740,0.854,0.000 +0.750,0.858,0.000 +0.761,0.861,0.000 +0.772,0.865,0.000 +0.782,0.869,0.000 +0.793,0.873,0.000 +0.803,0.876,0.000 +0.814,0.880,0.000 +0.824,0.883,0.000 +0.835,0.887,0.000 +0.845,0.890,0.000 +0.855,0.892,0.000 +0.864,0.895,0.000 +0.874,0.897,0.000 +0.883,0.898,0.000 +0.891,0.898,0.012 +0.899,0.898,0.042 +0.907,0.897,0.072 diff --git a/pyqtgraph/colors/maps/CET-C7s.csv b/pyqtgraph/colors/maps/CET-C7s.csv new file mode 100644 index 00000000..fb46113d --- /dev/null +++ b/pyqtgraph/colors/maps/CET-C7s.csv @@ -0,0 +1,256 @@ +0.152,0.686,0.078 +0.167,0.686,0.062 +0.183,0.688,0.046 +0.199,0.690,0.031 +0.216,0.692,0.019 +0.232,0.695,0.009 +0.249,0.698,0.002 +0.265,0.702,0.000 +0.281,0.705,0.000 +0.296,0.709,0.000 +0.311,0.713,0.000 +0.326,0.717,0.000 +0.340,0.721,0.000 +0.354,0.725,0.000 +0.368,0.729,0.000 +0.382,0.733,0.000 +0.395,0.737,0.000 +0.408,0.741,0.000 +0.421,0.745,0.000 +0.433,0.749,0.000 +0.446,0.753,0.000 +0.458,0.757,0.000 +0.470,0.761,0.000 +0.482,0.765,0.000 +0.494,0.769,0.000 +0.506,0.773,0.000 +0.518,0.777,0.000 +0.529,0.781,0.000 +0.541,0.785,0.000 +0.552,0.789,0.000 +0.564,0.792,0.000 +0.575,0.796,0.000 +0.586,0.800,0.000 +0.597,0.804,0.000 +0.609,0.808,0.000 +0.620,0.812,0.000 +0.631,0.816,0.000 +0.642,0.820,0.000 +0.653,0.823,0.000 +0.664,0.827,0.000 +0.675,0.831,0.000 +0.686,0.835,0.000 +0.696,0.839,0.000 +0.707,0.842,0.000 +0.718,0.846,0.000 +0.729,0.850,0.000 +0.740,0.854,0.000 +0.750,0.858,0.000 +0.761,0.861,0.000 +0.772,0.865,0.000 +0.782,0.869,0.000 +0.793,0.873,0.000 +0.803,0.876,0.000 +0.814,0.880,0.000 +0.824,0.883,0.000 +0.835,0.887,0.000 +0.845,0.890,0.000 +0.855,0.892,0.000 +0.864,0.895,0.000 +0.874,0.897,0.000 +0.883,0.898,0.000 +0.891,0.898,0.012 +0.899,0.898,0.042 +0.907,0.897,0.072 +0.914,0.894,0.098 +0.920,0.891,0.123 +0.926,0.887,0.147 +0.932,0.882,0.171 +0.937,0.876,0.193 +0.942,0.869,0.215 +0.947,0.862,0.236 +0.951,0.854,0.256 +0.955,0.846,0.275 +0.959,0.837,0.294 +0.963,0.829,0.312 +0.966,0.820,0.330 +0.970,0.811,0.346 +0.973,0.802,0.363 +0.976,0.793,0.379 +0.980,0.784,0.394 +0.983,0.774,0.409 +0.985,0.765,0.423 +0.988,0.756,0.438 +0.991,0.747,0.452 +0.993,0.737,0.465 +0.996,0.728,0.479 +0.998,0.718,0.492 +1.000,0.709,0.505 +1.000,0.699,0.518 +1.000,0.689,0.531 +1.000,0.680,0.544 +1.000,0.670,0.556 +1.000,0.660,0.568 +1.000,0.650,0.581 +1.000,0.640,0.593 +1.000,0.630,0.605 +1.000,0.619,0.617 +1.000,0.609,0.629 +1.000,0.598,0.641 +1.000,0.588,0.652 +1.000,0.577,0.664 +1.000,0.566,0.676 +1.000,0.555,0.687 +1.000,0.544,0.699 +1.000,0.533,0.710 +1.000,0.522,0.722 +1.000,0.510,0.733 +1.000,0.498,0.745 +1.000,0.486,0.756 +1.000,0.474,0.767 +1.000,0.462,0.779 +1.000,0.449,0.790 +1.000,0.436,0.801 +1.000,0.423,0.812 +1.000,0.409,0.824 +1.000,0.395,0.835 +1.000,0.381,0.846 +1.000,0.366,0.857 +1.000,0.351,0.868 +1.000,0.336,0.879 +1.000,0.321,0.890 +1.000,0.306,0.901 +1.000,0.291,0.912 +1.000,0.277,0.923 +1.000,0.265,0.933 +0.999,0.255,0.942 +0.996,0.248,0.951 +0.992,0.245,0.960 +0.987,0.246,0.967 +0.983,0.250,0.974 +0.978,0.259,0.979 +0.973,0.270,0.984 +0.967,0.284,0.988 +0.962,0.300,0.990 +0.956,0.316,0.993 +0.950,0.334,0.994 +0.944,0.351,0.995 +0.938,0.369,0.996 +0.932,0.386,0.997 +0.926,0.402,0.997 +0.920,0.419,0.997 +0.913,0.435,0.997 +0.907,0.450,0.997 +0.900,0.465,0.997 +0.893,0.480,0.997 +0.886,0.494,0.997 +0.879,0.507,0.997 +0.872,0.521,0.997 +0.865,0.534,0.997 +0.858,0.547,0.997 +0.850,0.560,0.997 +0.842,0.572,0.996 +0.835,0.584,0.996 +0.827,0.596,0.996 +0.818,0.608,0.996 +0.810,0.620,0.996 +0.802,0.631,0.996 +0.793,0.642,0.996 +0.784,0.653,0.996 +0.775,0.664,0.995 +0.766,0.675,0.995 +0.756,0.686,0.995 +0.747,0.697,0.995 +0.737,0.707,0.995 +0.726,0.718,0.995 +0.716,0.728,0.994 +0.705,0.738,0.994 +0.694,0.748,0.994 +0.683,0.758,0.994 +0.671,0.768,0.994 +0.659,0.778,0.993 +0.647,0.788,0.993 +0.634,0.798,0.993 +0.620,0.807,0.993 +0.607,0.817,0.992 +0.592,0.826,0.992 +0.578,0.836,0.992 +0.562,0.845,0.992 +0.546,0.855,0.991 +0.529,0.864,0.991 +0.511,0.873,0.990 +0.493,0.882,0.990 +0.473,0.891,0.989 +0.453,0.900,0.988 +0.431,0.908,0.987 +0.408,0.916,0.985 +0.385,0.924,0.983 +0.360,0.931,0.980 +0.334,0.937,0.976 +0.308,0.943,0.972 +0.282,0.947,0.966 +0.257,0.951,0.959 +0.232,0.953,0.951 +0.209,0.955,0.942 +0.189,0.955,0.933 +0.173,0.954,0.922 +0.160,0.952,0.910 +0.152,0.949,0.898 +0.148,0.946,0.886 +0.147,0.942,0.873 +0.149,0.938,0.860 +0.153,0.934,0.847 +0.157,0.929,0.834 +0.162,0.924,0.820 +0.167,0.919,0.807 +0.172,0.914,0.793 +0.177,0.909,0.780 +0.181,0.904,0.767 +0.185,0.899,0.753 +0.188,0.894,0.740 +0.191,0.889,0.726 +0.194,0.884,0.713 +0.196,0.879,0.700 +0.198,0.873,0.687 +0.199,0.868,0.673 +0.201,0.863,0.660 +0.202,0.858,0.647 +0.202,0.853,0.633 +0.203,0.848,0.620 +0.203,0.843,0.607 +0.203,0.838,0.594 +0.203,0.833,0.581 +0.202,0.828,0.567 +0.201,0.823,0.554 +0.200,0.819,0.541 +0.199,0.814,0.528 +0.198,0.809,0.515 +0.196,0.804,0.501 +0.194,0.799,0.488 +0.192,0.794,0.475 +0.189,0.789,0.462 +0.187,0.784,0.448 +0.184,0.779,0.435 +0.181,0.774,0.422 +0.177,0.769,0.408 +0.174,0.764,0.395 +0.170,0.760,0.381 +0.166,0.755,0.368 +0.161,0.750,0.354 +0.156,0.745,0.340 +0.151,0.740,0.326 +0.146,0.735,0.312 +0.140,0.730,0.298 +0.134,0.726,0.284 +0.128,0.721,0.269 +0.122,0.716,0.255 +0.116,0.712,0.240 +0.111,0.707,0.224 +0.107,0.703,0.209 +0.104,0.699,0.193 +0.103,0.695,0.177 +0.105,0.692,0.160 +0.109,0.690,0.144 +0.116,0.688,0.128 +0.126,0.686,0.111 +0.138,0.686,0.095 diff --git a/pyqtgraph/colors/maps/CET-CBC1.csv b/pyqtgraph/colors/maps/CET-CBC1.csv new file mode 100644 index 00000000..8f92542d --- /dev/null +++ b/pyqtgraph/colors/maps/CET-CBC1.csv @@ -0,0 +1,256 @@ +0.244,0.528,0.918 +0.254,0.534,0.923 +0.267,0.539,0.928 +0.280,0.545,0.931 +0.294,0.551,0.934 +0.309,0.557,0.936 +0.324,0.563,0.938 +0.340,0.569,0.939 +0.355,0.575,0.940 +0.370,0.581,0.941 +0.384,0.587,0.942 +0.399,0.593,0.942 +0.413,0.599,0.943 +0.426,0.606,0.943 +0.440,0.612,0.944 +0.453,0.618,0.944 +0.466,0.624,0.945 +0.478,0.631,0.945 +0.491,0.637,0.945 +0.503,0.644,0.946 +0.515,0.650,0.946 +0.526,0.656,0.947 +0.538,0.663,0.947 +0.549,0.669,0.947 +0.561,0.676,0.948 +0.572,0.682,0.948 +0.583,0.689,0.948 +0.593,0.695,0.949 +0.604,0.702,0.949 +0.615,0.708,0.949 +0.625,0.715,0.950 +0.636,0.722,0.950 +0.646,0.728,0.950 +0.656,0.735,0.951 +0.666,0.742,0.951 +0.676,0.748,0.951 +0.686,0.755,0.951 +0.696,0.762,0.952 +0.706,0.768,0.952 +0.716,0.775,0.952 +0.726,0.782,0.952 +0.735,0.789,0.952 +0.745,0.795,0.953 +0.754,0.802,0.953 +0.764,0.809,0.953 +0.773,0.816,0.953 +0.783,0.823,0.953 +0.792,0.829,0.954 +0.801,0.836,0.954 +0.811,0.843,0.954 +0.820,0.850,0.954 +0.829,0.857,0.954 +0.838,0.864,0.954 +0.847,0.870,0.954 +0.856,0.877,0.953 +0.865,0.884,0.953 +0.873,0.890,0.952 +0.882,0.896,0.950 +0.890,0.901,0.948 +0.897,0.906,0.945 +0.904,0.910,0.941 +0.910,0.914,0.936 +0.915,0.916,0.930 +0.919,0.917,0.923 +0.922,0.917,0.915 +0.924,0.916,0.906 +0.925,0.914,0.895 +0.925,0.911,0.884 +0.924,0.908,0.872 +0.922,0.903,0.860 +0.920,0.898,0.847 +0.917,0.892,0.834 +0.913,0.886,0.821 +0.909,0.879,0.807 +0.905,0.872,0.794 +0.901,0.866,0.780 +0.897,0.859,0.766 +0.892,0.852,0.753 +0.888,0.845,0.739 +0.883,0.838,0.726 +0.878,0.831,0.712 +0.873,0.824,0.699 +0.869,0.818,0.685 +0.864,0.811,0.672 +0.859,0.804,0.658 +0.854,0.797,0.645 +0.849,0.790,0.631 +0.844,0.784,0.618 +0.839,0.777,0.605 +0.834,0.770,0.591 +0.829,0.763,0.578 +0.824,0.757,0.565 +0.819,0.750,0.552 +0.814,0.743,0.538 +0.808,0.736,0.525 +0.803,0.730,0.512 +0.798,0.723,0.499 +0.792,0.717,0.486 +0.787,0.710,0.472 +0.782,0.703,0.459 +0.776,0.697,0.446 +0.771,0.690,0.433 +0.765,0.684,0.420 +0.759,0.677,0.406 +0.754,0.670,0.393 +0.748,0.664,0.380 +0.742,0.657,0.367 +0.737,0.651,0.353 +0.731,0.645,0.340 +0.725,0.638,0.327 +0.719,0.632,0.313 +0.713,0.625,0.299 +0.707,0.619,0.286 +0.701,0.612,0.272 +0.695,0.606,0.258 +0.689,0.600,0.244 +0.683,0.593,0.230 +0.677,0.587,0.216 +0.671,0.581,0.201 +0.665,0.574,0.187 +0.658,0.568,0.172 +0.652,0.562,0.157 +0.645,0.556,0.143 +0.639,0.550,0.129 +0.632,0.543,0.115 +0.626,0.537,0.102 +0.619,0.531,0.090 +0.612,0.525,0.079 +0.605,0.519,0.071 +0.598,0.512,0.064 +0.591,0.506,0.059 +0.584,0.500,0.057 +0.577,0.494,0.057 +0.570,0.488,0.058 +0.563,0.482,0.061 +0.556,0.476,0.065 +0.549,0.470,0.069 +0.542,0.464,0.073 +0.534,0.458,0.077 +0.527,0.452,0.081 +0.520,0.446,0.085 +0.513,0.440,0.089 +0.506,0.434,0.093 +0.499,0.428,0.096 +0.492,0.422,0.099 +0.485,0.416,0.102 +0.478,0.410,0.105 +0.470,0.404,0.108 +0.463,0.398,0.111 +0.456,0.392,0.113 +0.449,0.386,0.116 +0.442,0.380,0.118 +0.435,0.375,0.120 +0.428,0.369,0.122 +0.421,0.363,0.124 +0.414,0.357,0.126 +0.407,0.352,0.128 +0.400,0.346,0.130 +0.393,0.340,0.131 +0.387,0.334,0.133 +0.380,0.329,0.134 +0.373,0.323,0.136 +0.366,0.317,0.137 +0.359,0.312,0.138 +0.352,0.306,0.140 +0.345,0.301,0.141 +0.338,0.295,0.142 +0.331,0.289,0.143 +0.325,0.284,0.144 +0.318,0.278,0.145 +0.311,0.273,0.146 +0.304,0.267,0.147 +0.297,0.262,0.148 +0.290,0.256,0.148 +0.283,0.251,0.149 +0.277,0.246,0.150 +0.270,0.240,0.150 +0.263,0.235,0.151 +0.256,0.230,0.152 +0.249,0.224,0.152 +0.242,0.219,0.153 +0.236,0.214,0.154 +0.229,0.209,0.155 +0.223,0.204,0.156 +0.216,0.200,0.157 +0.210,0.195,0.159 +0.205,0.192,0.161 +0.199,0.188,0.163 +0.195,0.186,0.167 +0.190,0.183,0.171 +0.187,0.182,0.176 +0.184,0.182,0.181 +0.183,0.182,0.188 +0.181,0.183,0.195 +0.181,0.185,0.203 +0.181,0.187,0.212 +0.182,0.191,0.221 +0.184,0.194,0.231 +0.186,0.198,0.241 +0.188,0.203,0.251 +0.190,0.208,0.261 +0.192,0.213,0.272 +0.195,0.218,0.283 +0.198,0.223,0.294 +0.200,0.228,0.305 +0.203,0.233,0.316 +0.205,0.239,0.327 +0.207,0.244,0.338 +0.210,0.250,0.350 +0.212,0.255,0.361 +0.214,0.260,0.373 +0.216,0.266,0.384 +0.218,0.271,0.396 +0.220,0.277,0.407 +0.222,0.283,0.419 +0.224,0.288,0.431 +0.225,0.294,0.442 +0.227,0.299,0.454 +0.228,0.305,0.466 +0.229,0.311,0.478 +0.231,0.316,0.490 +0.232,0.322,0.502 +0.233,0.328,0.514 +0.234,0.333,0.526 +0.235,0.339,0.538 +0.235,0.345,0.550 +0.236,0.351,0.563 +0.236,0.356,0.575 +0.237,0.362,0.587 +0.237,0.368,0.600 +0.237,0.374,0.612 +0.237,0.380,0.625 +0.237,0.386,0.637 +0.237,0.392,0.650 +0.237,0.397,0.662 +0.236,0.403,0.675 +0.236,0.409,0.688 +0.235,0.415,0.701 +0.234,0.421,0.713 +0.233,0.427,0.726 +0.232,0.433,0.739 +0.230,0.439,0.752 +0.229,0.445,0.765 +0.227,0.452,0.778 +0.225,0.458,0.791 +0.223,0.464,0.804 +0.221,0.470,0.816 +0.220,0.476,0.829 +0.218,0.482,0.841 +0.217,0.488,0.853 +0.216,0.494,0.865 +0.217,0.499,0.876 +0.219,0.505,0.886 +0.222,0.511,0.895 +0.228,0.517,0.904 +0.235,0.522,0.911 diff --git a/pyqtgraph/colors/maps/CET-CBC2.csv b/pyqtgraph/colors/maps/CET-CBC2.csv new file mode 100644 index 00000000..8cd0edad --- /dev/null +++ b/pyqtgraph/colors/maps/CET-CBC2.csv @@ -0,0 +1,256 @@ +0.933,0.930,0.927 +0.935,0.929,0.918 +0.935,0.926,0.909 +0.935,0.923,0.899 +0.933,0.919,0.887 +0.931,0.914,0.875 +0.929,0.909,0.863 +0.925,0.903,0.849 +0.922,0.896,0.836 +0.918,0.890,0.822 +0.914,0.883,0.808 +0.910,0.876,0.793 +0.906,0.869,0.779 +0.901,0.862,0.765 +0.897,0.855,0.750 +0.893,0.848,0.736 +0.888,0.841,0.721 +0.883,0.834,0.707 +0.879,0.827,0.693 +0.874,0.820,0.678 +0.869,0.813,0.664 +0.864,0.806,0.650 +0.860,0.799,0.636 +0.855,0.792,0.622 +0.850,0.785,0.607 +0.845,0.779,0.593 +0.840,0.772,0.579 +0.835,0.765,0.565 +0.829,0.758,0.551 +0.824,0.751,0.537 +0.819,0.744,0.523 +0.814,0.738,0.509 +0.808,0.731,0.495 +0.803,0.724,0.481 +0.798,0.717,0.467 +0.792,0.711,0.452 +0.787,0.704,0.438 +0.781,0.697,0.424 +0.775,0.691,0.410 +0.770,0.684,0.396 +0.764,0.677,0.382 +0.758,0.671,0.368 +0.753,0.664,0.353 +0.747,0.658,0.339 +0.741,0.651,0.325 +0.735,0.644,0.310 +0.729,0.638,0.296 +0.723,0.631,0.281 +0.717,0.625,0.266 +0.711,0.618,0.251 +0.704,0.612,0.235 +0.698,0.605,0.220 +0.692,0.599,0.204 +0.686,0.593,0.187 +0.680,0.587,0.171 +0.674,0.580,0.154 +0.668,0.575,0.136 +0.662,0.569,0.118 +0.657,0.564,0.099 +0.652,0.559,0.080 +0.647,0.555,0.060 +0.643,0.551,0.040 +0.641,0.548,0.023 +0.639,0.546,0.011 +0.638,0.546,0.006 +0.638,0.546,0.007 +0.639,0.547,0.014 +0.641,0.549,0.027 +0.644,0.552,0.046 +0.648,0.556,0.066 +0.653,0.560,0.085 +0.658,0.565,0.104 +0.663,0.570,0.123 +0.669,0.576,0.141 +0.675,0.582,0.158 +0.681,0.588,0.175 +0.688,0.594,0.192 +0.694,0.601,0.208 +0.700,0.607,0.224 +0.706,0.614,0.240 +0.712,0.620,0.255 +0.718,0.627,0.270 +0.724,0.633,0.285 +0.730,0.640,0.300 +0.736,0.646,0.314 +0.742,0.653,0.329 +0.748,0.659,0.343 +0.754,0.666,0.357 +0.760,0.672,0.372 +0.766,0.679,0.386 +0.771,0.686,0.400 +0.777,0.692,0.414 +0.783,0.699,0.428 +0.788,0.706,0.442 +0.794,0.712,0.456 +0.799,0.719,0.470 +0.805,0.726,0.484 +0.810,0.733,0.498 +0.815,0.739,0.512 +0.820,0.746,0.527 +0.826,0.753,0.541 +0.831,0.760,0.555 +0.836,0.767,0.569 +0.841,0.773,0.583 +0.846,0.780,0.597 +0.851,0.787,0.611 +0.856,0.794,0.625 +0.861,0.801,0.640 +0.866,0.808,0.654 +0.871,0.815,0.668 +0.875,0.822,0.682 +0.880,0.829,0.697 +0.885,0.836,0.711 +0.889,0.843,0.725 +0.894,0.850,0.740 +0.898,0.857,0.754 +0.902,0.864,0.768 +0.907,0.871,0.783 +0.911,0.877,0.797 +0.915,0.884,0.812 +0.918,0.890,0.826 +0.921,0.897,0.840 +0.924,0.902,0.854 +0.926,0.907,0.867 +0.927,0.912,0.880 +0.927,0.915,0.892 +0.927,0.918,0.903 +0.925,0.919,0.913 +0.922,0.919,0.922 +0.918,0.919,0.930 +0.913,0.917,0.937 +0.908,0.914,0.943 +0.901,0.910,0.948 +0.894,0.905,0.951 +0.886,0.900,0.954 +0.877,0.894,0.956 +0.869,0.888,0.958 +0.860,0.881,0.960 +0.850,0.874,0.961 +0.841,0.868,0.961 +0.832,0.861,0.962 +0.822,0.854,0.963 +0.812,0.847,0.963 +0.803,0.840,0.964 +0.793,0.833,0.964 +0.783,0.826,0.964 +0.773,0.819,0.965 +0.763,0.812,0.965 +0.753,0.805,0.966 +0.743,0.798,0.966 +0.733,0.791,0.966 +0.723,0.785,0.967 +0.713,0.778,0.967 +0.703,0.771,0.968 +0.692,0.764,0.968 +0.682,0.757,0.968 +0.671,0.750,0.969 +0.660,0.744,0.969 +0.650,0.737,0.969 +0.639,0.730,0.969 +0.628,0.724,0.970 +0.616,0.717,0.970 +0.605,0.710,0.970 +0.594,0.704,0.971 +0.582,0.697,0.971 +0.570,0.690,0.971 +0.559,0.684,0.971 +0.546,0.677,0.971 +0.534,0.671,0.972 +0.522,0.664,0.972 +0.509,0.657,0.972 +0.496,0.651,0.972 +0.483,0.644,0.972 +0.469,0.638,0.973 +0.455,0.632,0.973 +0.441,0.625,0.973 +0.426,0.619,0.973 +0.411,0.612,0.973 +0.396,0.606,0.973 +0.380,0.600,0.973 +0.363,0.594,0.973 +0.346,0.588,0.973 +0.329,0.582,0.974 +0.311,0.576,0.974 +0.293,0.571,0.974 +0.276,0.566,0.974 +0.259,0.561,0.974 +0.244,0.557,0.974 +0.231,0.554,0.974 +0.221,0.552,0.974 +0.214,0.551,0.974 +0.212,0.550,0.974 +0.215,0.551,0.974 +0.222,0.552,0.974 +0.233,0.555,0.974 +0.247,0.558,0.974 +0.263,0.562,0.974 +0.280,0.567,0.974 +0.297,0.572,0.974 +0.315,0.577,0.974 +0.333,0.583,0.974 +0.350,0.589,0.973 +0.367,0.595,0.973 +0.383,0.601,0.973 +0.399,0.607,0.973 +0.415,0.614,0.973 +0.430,0.620,0.973 +0.444,0.627,0.973 +0.458,0.633,0.973 +0.472,0.639,0.972 +0.486,0.646,0.972 +0.499,0.652,0.972 +0.512,0.659,0.972 +0.524,0.665,0.972 +0.537,0.672,0.972 +0.549,0.679,0.971 +0.561,0.685,0.971 +0.573,0.692,0.971 +0.585,0.698,0.971 +0.596,0.705,0.970 +0.608,0.712,0.970 +0.619,0.718,0.970 +0.630,0.725,0.970 +0.641,0.732,0.969 +0.652,0.738,0.969 +0.663,0.745,0.969 +0.673,0.752,0.968 +0.684,0.759,0.968 +0.694,0.766,0.968 +0.705,0.772,0.968 +0.715,0.779,0.967 +0.725,0.786,0.967 +0.736,0.793,0.966 +0.746,0.800,0.966 +0.756,0.807,0.966 +0.766,0.814,0.965 +0.775,0.820,0.965 +0.785,0.827,0.964 +0.795,0.834,0.964 +0.805,0.841,0.963 +0.814,0.848,0.963 +0.824,0.855,0.963 +0.834,0.862,0.962 +0.843,0.869,0.962 +0.852,0.876,0.961 +0.862,0.883,0.960 +0.871,0.890,0.960 +0.880,0.896,0.959 +0.888,0.903,0.957 +0.896,0.909,0.956 +0.904,0.914,0.954 +0.911,0.919,0.952 +0.918,0.923,0.948 +0.923,0.926,0.944 +0.928,0.929,0.940 +0.931,0.930,0.934 diff --git a/pyqtgraph/colors/maps/CET-CBD1.csv b/pyqtgraph/colors/maps/CET-CBD1.csv new file mode 100644 index 00000000..3ba00bde --- /dev/null +++ b/pyqtgraph/colors/maps/CET-CBD1.csv @@ -0,0 +1,256 @@ +0.229,0.566,0.997 +0.242,0.569,0.996 +0.253,0.571,0.996 +0.265,0.574,0.996 +0.276,0.577,0.996 +0.286,0.580,0.995 +0.296,0.582,0.995 +0.306,0.585,0.995 +0.315,0.588,0.994 +0.324,0.590,0.994 +0.333,0.593,0.994 +0.342,0.596,0.993 +0.350,0.599,0.993 +0.359,0.601,0.993 +0.367,0.604,0.993 +0.375,0.607,0.992 +0.382,0.610,0.992 +0.390,0.612,0.992 +0.397,0.615,0.991 +0.405,0.618,0.991 +0.412,0.621,0.991 +0.419,0.624,0.990 +0.426,0.626,0.990 +0.433,0.629,0.990 +0.440,0.632,0.989 +0.446,0.635,0.989 +0.453,0.638,0.989 +0.459,0.640,0.988 +0.466,0.643,0.988 +0.472,0.646,0.988 +0.478,0.649,0.987 +0.485,0.652,0.987 +0.491,0.654,0.987 +0.497,0.657,0.986 +0.503,0.660,0.986 +0.509,0.663,0.986 +0.515,0.666,0.985 +0.520,0.669,0.985 +0.526,0.672,0.985 +0.532,0.674,0.984 +0.538,0.677,0.984 +0.543,0.680,0.983 +0.549,0.683,0.983 +0.554,0.686,0.983 +0.560,0.689,0.982 +0.565,0.692,0.982 +0.571,0.694,0.982 +0.576,0.697,0.981 +0.581,0.700,0.981 +0.587,0.703,0.980 +0.592,0.706,0.980 +0.597,0.709,0.980 +0.602,0.712,0.979 +0.608,0.715,0.979 +0.613,0.718,0.979 +0.618,0.721,0.978 +0.623,0.724,0.978 +0.628,0.726,0.977 +0.633,0.729,0.977 +0.638,0.732,0.977 +0.643,0.735,0.976 +0.648,0.738,0.976 +0.653,0.741,0.975 +0.658,0.744,0.975 +0.663,0.747,0.975 +0.667,0.750,0.974 +0.672,0.753,0.974 +0.677,0.756,0.973 +0.682,0.759,0.973 +0.687,0.762,0.973 +0.691,0.765,0.972 +0.696,0.768,0.972 +0.701,0.771,0.971 +0.705,0.774,0.971 +0.710,0.777,0.970 +0.715,0.780,0.970 +0.719,0.783,0.970 +0.724,0.786,0.969 +0.728,0.789,0.969 +0.733,0.792,0.968 +0.738,0.795,0.968 +0.742,0.798,0.967 +0.747,0.801,0.967 +0.751,0.804,0.966 +0.756,0.807,0.966 +0.760,0.810,0.966 +0.765,0.813,0.965 +0.769,0.816,0.965 +0.773,0.819,0.964 +0.778,0.822,0.964 +0.782,0.825,0.963 +0.787,0.828,0.963 +0.791,0.831,0.962 +0.795,0.834,0.962 +0.800,0.837,0.961 +0.804,0.840,0.961 +0.808,0.843,0.960 +0.813,0.846,0.960 +0.817,0.849,0.959 +0.821,0.852,0.959 +0.826,0.855,0.958 +0.830,0.858,0.958 +0.834,0.862,0.957 +0.838,0.865,0.957 +0.843,0.868,0.956 +0.847,0.871,0.956 +0.851,0.874,0.955 +0.855,0.877,0.955 +0.860,0.880,0.954 +0.864,0.883,0.954 +0.868,0.886,0.953 +0.872,0.889,0.953 +0.876,0.892,0.952 +0.880,0.896,0.952 +0.885,0.899,0.951 +0.889,0.902,0.951 +0.893,0.905,0.950 +0.897,0.908,0.949 +0.901,0.911,0.949 +0.905,0.914,0.948 +0.909,0.916,0.947 +0.912,0.919,0.946 +0.916,0.922,0.944 +0.919,0.924,0.942 +0.922,0.925,0.940 +0.925,0.927,0.937 +0.927,0.928,0.934 +0.929,0.928,0.930 +0.931,0.928,0.926 +0.932,0.928,0.922 +0.932,0.927,0.917 +0.932,0.925,0.911 +0.932,0.924,0.905 +0.931,0.921,0.899 +0.931,0.919,0.893 +0.929,0.916,0.887 +0.928,0.914,0.880 +0.927,0.911,0.874 +0.925,0.908,0.867 +0.924,0.905,0.860 +0.922,0.902,0.854 +0.920,0.898,0.847 +0.919,0.895,0.840 +0.917,0.892,0.834 +0.915,0.889,0.827 +0.914,0.886,0.820 +0.912,0.883,0.814 +0.910,0.880,0.807 +0.908,0.877,0.801 +0.907,0.874,0.794 +0.905,0.870,0.787 +0.903,0.867,0.781 +0.901,0.864,0.774 +0.899,0.861,0.768 +0.898,0.858,0.761 +0.896,0.855,0.754 +0.894,0.852,0.748 +0.892,0.849,0.741 +0.890,0.846,0.735 +0.888,0.843,0.728 +0.886,0.840,0.722 +0.884,0.837,0.715 +0.882,0.834,0.709 +0.881,0.831,0.702 +0.879,0.827,0.695 +0.877,0.824,0.689 +0.875,0.821,0.682 +0.873,0.818,0.676 +0.871,0.815,0.669 +0.869,0.812,0.663 +0.867,0.809,0.656 +0.865,0.806,0.650 +0.863,0.803,0.643 +0.861,0.800,0.637 +0.859,0.797,0.630 +0.856,0.794,0.624 +0.854,0.791,0.617 +0.852,0.788,0.611 +0.850,0.785,0.604 +0.848,0.782,0.598 +0.846,0.779,0.592 +0.844,0.776,0.585 +0.842,0.773,0.579 +0.840,0.770,0.572 +0.837,0.767,0.566 +0.835,0.764,0.559 +0.833,0.761,0.553 +0.831,0.758,0.546 +0.829,0.755,0.540 +0.826,0.752,0.533 +0.824,0.749,0.527 +0.822,0.746,0.521 +0.820,0.743,0.514 +0.817,0.740,0.508 +0.815,0.737,0.501 +0.813,0.734,0.495 +0.811,0.731,0.488 +0.808,0.728,0.482 +0.806,0.726,0.476 +0.804,0.723,0.469 +0.801,0.720,0.463 +0.799,0.717,0.456 +0.797,0.714,0.450 +0.794,0.711,0.443 +0.792,0.708,0.437 +0.789,0.705,0.430 +0.787,0.702,0.424 +0.785,0.699,0.418 +0.782,0.696,0.411 +0.780,0.693,0.405 +0.777,0.690,0.398 +0.775,0.688,0.392 +0.772,0.685,0.385 +0.770,0.682,0.379 +0.767,0.679,0.372 +0.765,0.676,0.366 +0.762,0.673,0.359 +0.760,0.670,0.352 +0.757,0.667,0.346 +0.755,0.664,0.339 +0.752,0.662,0.333 +0.750,0.659,0.326 +0.747,0.656,0.319 +0.745,0.653,0.313 +0.742,0.650,0.306 +0.740,0.647,0.299 +0.737,0.644,0.292 +0.734,0.641,0.286 +0.732,0.639,0.279 +0.729,0.636,0.272 +0.726,0.633,0.265 +0.724,0.630,0.258 +0.721,0.627,0.251 +0.718,0.624,0.244 +0.716,0.622,0.237 +0.713,0.619,0.230 +0.710,0.616,0.222 +0.708,0.613,0.215 +0.705,0.610,0.207 +0.702,0.608,0.200 +0.700,0.605,0.192 +0.697,0.602,0.184 +0.694,0.599,0.176 +0.691,0.596,0.168 +0.689,0.594,0.160 +0.686,0.591,0.151 +0.683,0.588,0.142 +0.680,0.585,0.133 +0.677,0.582,0.124 +0.675,0.580,0.114 +0.672,0.577,0.103 +0.669,0.574,0.092 +0.666,0.571,0.080 +0.663,0.569,0.067 +0.660,0.566,0.051 +0.657,0.563,0.033 diff --git a/pyqtgraph/colors/maps/CET-CBL1.csv b/pyqtgraph/colors/maps/CET-CBL1.csv new file mode 100644 index 00000000..4e9df604 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-CBL1.csv @@ -0,0 +1,256 @@ +0.066,0.066,0.066 +0.068,0.069,0.075 +0.070,0.073,0.084 +0.072,0.076,0.091 +0.073,0.079,0.099 +0.075,0.082,0.106 +0.076,0.085,0.113 +0.077,0.088,0.120 +0.077,0.090,0.127 +0.077,0.093,0.135 +0.078,0.096,0.142 +0.078,0.098,0.149 +0.078,0.101,0.157 +0.078,0.104,0.164 +0.078,0.107,0.171 +0.078,0.109,0.179 +0.077,0.112,0.186 +0.077,0.115,0.193 +0.076,0.118,0.200 +0.075,0.120,0.208 +0.075,0.123,0.215 +0.074,0.126,0.222 +0.072,0.129,0.229 +0.071,0.132,0.237 +0.070,0.135,0.244 +0.068,0.138,0.251 +0.067,0.140,0.258 +0.065,0.143,0.265 +0.063,0.146,0.272 +0.061,0.149,0.279 +0.059,0.152,0.286 +0.056,0.155,0.293 +0.054,0.158,0.300 +0.051,0.161,0.307 +0.048,0.164,0.314 +0.045,0.167,0.321 +0.042,0.170,0.328 +0.039,0.173,0.335 +0.036,0.176,0.341 +0.032,0.179,0.348 +0.029,0.182,0.355 +0.025,0.185,0.361 +0.022,0.188,0.368 +0.019,0.191,0.374 +0.015,0.194,0.381 +0.012,0.197,0.387 +0.009,0.200,0.393 +0.006,0.203,0.400 +0.004,0.206,0.406 +0.001,0.209,0.412 +0.000,0.212,0.418 +0.000,0.215,0.424 +0.000,0.218,0.430 +0.000,0.221,0.436 +0.000,0.224,0.441 +0.000,0.228,0.447 +0.000,0.231,0.452 +0.000,0.234,0.458 +0.000,0.237,0.463 +0.000,0.240,0.468 +0.000,0.243,0.474 +0.000,0.246,0.479 +0.000,0.249,0.484 +0.002,0.252,0.488 +0.005,0.255,0.493 +0.010,0.259,0.498 +0.015,0.262,0.502 +0.021,0.265,0.507 +0.028,0.268,0.511 +0.035,0.271,0.515 +0.043,0.274,0.519 +0.052,0.277,0.523 +0.060,0.281,0.526 +0.068,0.284,0.530 +0.076,0.287,0.533 +0.084,0.290,0.536 +0.092,0.293,0.539 +0.100,0.296,0.542 +0.108,0.299,0.545 +0.117,0.303,0.547 +0.125,0.306,0.549 +0.133,0.309,0.552 +0.141,0.312,0.553 +0.149,0.315,0.555 +0.158,0.319,0.556 +0.166,0.322,0.558 +0.175,0.325,0.558 +0.183,0.328,0.559 +0.191,0.331,0.560 +0.200,0.335,0.560 +0.209,0.338,0.559 +0.217,0.341,0.559 +0.226,0.344,0.558 +0.235,0.348,0.557 +0.243,0.351,0.556 +0.252,0.354,0.554 +0.261,0.357,0.551 +0.270,0.361,0.549 +0.279,0.364,0.546 +0.287,0.367,0.544 +0.295,0.370,0.541 +0.303,0.374,0.539 +0.311,0.377,0.536 +0.318,0.380,0.533 +0.326,0.384,0.531 +0.333,0.387,0.528 +0.340,0.390,0.525 +0.347,0.394,0.523 +0.354,0.397,0.520 +0.361,0.401,0.517 +0.368,0.404,0.515 +0.374,0.407,0.512 +0.381,0.411,0.509 +0.387,0.414,0.507 +0.394,0.418,0.504 +0.400,0.421,0.501 +0.406,0.424,0.498 +0.412,0.428,0.496 +0.419,0.431,0.493 +0.425,0.435,0.490 +0.431,0.438,0.487 +0.437,0.442,0.484 +0.442,0.445,0.481 +0.448,0.448,0.479 +0.454,0.452,0.476 +0.460,0.455,0.473 +0.466,0.459,0.470 +0.471,0.462,0.467 +0.477,0.466,0.464 +0.483,0.469,0.461 +0.488,0.473,0.458 +0.494,0.476,0.455 +0.499,0.480,0.452 +0.505,0.483,0.449 +0.510,0.487,0.446 +0.516,0.490,0.443 +0.521,0.494,0.440 +0.527,0.497,0.437 +0.532,0.501,0.434 +0.537,0.504,0.431 +0.543,0.508,0.428 +0.548,0.511,0.425 +0.553,0.515,0.422 +0.559,0.518,0.418 +0.564,0.522,0.415 +0.569,0.525,0.412 +0.574,0.529,0.409 +0.580,0.532,0.405 +0.585,0.536,0.402 +0.590,0.539,0.399 +0.595,0.543,0.395 +0.600,0.547,0.392 +0.606,0.550,0.389 +0.611,0.554,0.385 +0.616,0.557,0.382 +0.621,0.561,0.378 +0.626,0.564,0.375 +0.631,0.568,0.371 +0.637,0.571,0.367 +0.642,0.575,0.364 +0.647,0.578,0.361 +0.652,0.582,0.358 +0.657,0.586,0.355 +0.661,0.589,0.353 +0.666,0.593,0.351 +0.671,0.596,0.350 +0.675,0.600,0.349 +0.680,0.604,0.348 +0.684,0.607,0.348 +0.689,0.611,0.347 +0.693,0.614,0.348 +0.698,0.618,0.348 +0.702,0.622,0.349 +0.706,0.625,0.350 +0.710,0.629,0.351 +0.715,0.633,0.353 +0.719,0.636,0.354 +0.723,0.640,0.357 +0.727,0.644,0.359 +0.731,0.647,0.361 +0.735,0.651,0.364 +0.739,0.655,0.367 +0.743,0.658,0.370 +0.747,0.662,0.373 +0.751,0.666,0.377 +0.755,0.670,0.381 +0.759,0.673,0.385 +0.763,0.677,0.389 +0.766,0.681,0.393 +0.770,0.685,0.398 +0.774,0.688,0.402 +0.778,0.692,0.407 +0.781,0.696,0.412 +0.785,0.699,0.417 +0.789,0.703,0.422 +0.792,0.707,0.428 +0.796,0.711,0.433 +0.800,0.715,0.439 +0.803,0.718,0.445 +0.807,0.722,0.451 +0.810,0.726,0.457 +0.814,0.730,0.463 +0.817,0.733,0.470 +0.820,0.737,0.476 +0.824,0.741,0.483 +0.827,0.745,0.489 +0.830,0.749,0.496 +0.834,0.753,0.503 +0.837,0.756,0.510 +0.840,0.760,0.517 +0.843,0.764,0.525 +0.847,0.768,0.532 +0.850,0.772,0.540 +0.853,0.776,0.547 +0.856,0.780,0.555 +0.859,0.783,0.563 +0.862,0.787,0.571 +0.865,0.791,0.579 +0.868,0.795,0.587 +0.871,0.799,0.595 +0.873,0.803,0.603 +0.876,0.807,0.611 +0.879,0.811,0.620 +0.882,0.815,0.628 +0.884,0.818,0.637 +0.887,0.822,0.646 +0.890,0.826,0.655 +0.892,0.830,0.664 +0.895,0.834,0.672 +0.897,0.838,0.682 +0.900,0.842,0.691 +0.902,0.846,0.700 +0.904,0.850,0.709 +0.907,0.854,0.719 +0.909,0.858,0.728 +0.911,0.862,0.738 +0.913,0.866,0.747 +0.915,0.870,0.757 +0.917,0.874,0.767 +0.919,0.878,0.776 +0.921,0.882,0.786 +0.923,0.886,0.796 +0.925,0.890,0.806 +0.927,0.894,0.816 +0.928,0.898,0.827 +0.930,0.902,0.837 +0.932,0.907,0.847 +0.933,0.911,0.858 +0.935,0.915,0.868 +0.936,0.919,0.879 +0.937,0.923,0.889 +0.939,0.927,0.900 +0.940,0.931,0.911 +0.941,0.935,0.922 +0.942,0.939,0.933 +0.943,0.944,0.943 diff --git a/pyqtgraph/colors/maps/CET-CBL2.csv b/pyqtgraph/colors/maps/CET-CBL2.csv new file mode 100644 index 00000000..f221f71a --- /dev/null +++ b/pyqtgraph/colors/maps/CET-CBL2.csv @@ -0,0 +1,256 @@ +0.066,0.066,0.066 +0.068,0.070,0.074 +0.071,0.073,0.082 +0.073,0.076,0.089 +0.075,0.079,0.095 +0.077,0.082,0.101 +0.079,0.085,0.108 +0.080,0.088,0.114 +0.081,0.091,0.121 +0.082,0.094,0.128 +0.083,0.097,0.134 +0.084,0.099,0.141 +0.085,0.102,0.148 +0.086,0.105,0.154 +0.087,0.108,0.161 +0.087,0.111,0.168 +0.088,0.114,0.175 +0.088,0.116,0.182 +0.089,0.119,0.189 +0.089,0.122,0.196 +0.089,0.125,0.203 +0.089,0.128,0.210 +0.089,0.131,0.217 +0.089,0.134,0.224 +0.088,0.137,0.231 +0.088,0.140,0.238 +0.087,0.143,0.246 +0.087,0.146,0.253 +0.086,0.149,0.260 +0.085,0.152,0.267 +0.084,0.155,0.274 +0.083,0.158,0.281 +0.082,0.161,0.289 +0.081,0.164,0.296 +0.080,0.167,0.303 +0.078,0.170,0.310 +0.077,0.173,0.317 +0.076,0.176,0.324 +0.074,0.179,0.331 +0.073,0.182,0.338 +0.072,0.185,0.344 +0.070,0.189,0.351 +0.069,0.192,0.358 +0.068,0.195,0.364 +0.067,0.198,0.371 +0.066,0.201,0.377 +0.065,0.204,0.383 +0.064,0.207,0.390 +0.063,0.210,0.396 +0.062,0.214,0.402 +0.062,0.217,0.408 +0.061,0.220,0.414 +0.061,0.223,0.421 +0.060,0.226,0.427 +0.060,0.230,0.433 +0.060,0.233,0.439 +0.060,0.236,0.445 +0.060,0.239,0.451 +0.060,0.242,0.456 +0.060,0.246,0.462 +0.060,0.249,0.468 +0.060,0.252,0.474 +0.060,0.255,0.480 +0.060,0.259,0.486 +0.060,0.262,0.492 +0.060,0.265,0.498 +0.060,0.268,0.504 +0.060,0.272,0.510 +0.059,0.275,0.516 +0.059,0.278,0.522 +0.059,0.282,0.528 +0.059,0.285,0.534 +0.059,0.288,0.541 +0.059,0.292,0.547 +0.059,0.295,0.553 +0.058,0.298,0.559 +0.058,0.302,0.565 +0.058,0.305,0.571 +0.057,0.308,0.577 +0.057,0.312,0.583 +0.057,0.315,0.590 +0.056,0.318,0.596 +0.056,0.322,0.602 +0.056,0.325,0.608 +0.055,0.329,0.614 +0.055,0.332,0.621 +0.054,0.335,0.627 +0.053,0.339,0.633 +0.053,0.342,0.639 +0.052,0.346,0.646 +0.051,0.349,0.652 +0.051,0.352,0.658 +0.050,0.356,0.664 +0.049,0.359,0.671 +0.048,0.363,0.677 +0.047,0.366,0.683 +0.046,0.370,0.690 +0.045,0.373,0.696 +0.044,0.377,0.703 +0.043,0.380,0.709 +0.042,0.384,0.715 +0.041,0.387,0.722 +0.040,0.391,0.728 +0.038,0.394,0.735 +0.037,0.398,0.741 +0.036,0.401,0.747 +0.034,0.405,0.754 +0.032,0.408,0.760 +0.031,0.412,0.767 +0.029,0.415,0.773 +0.027,0.419,0.780 +0.026,0.422,0.786 +0.024,0.426,0.793 +0.022,0.429,0.799 +0.020,0.433,0.806 +0.018,0.436,0.812 +0.016,0.440,0.819 +0.014,0.444,0.826 +0.012,0.447,0.832 +0.010,0.451,0.839 +0.008,0.454,0.845 +0.006,0.458,0.852 +0.005,0.462,0.858 +0.003,0.465,0.865 +0.002,0.469,0.871 +0.001,0.472,0.878 +0.001,0.476,0.884 +0.002,0.480,0.891 +0.004,0.483,0.897 +0.007,0.487,0.903 +0.012,0.490,0.909 +0.019,0.494,0.915 +0.029,0.498,0.920 +0.042,0.501,0.925 +0.056,0.505,0.930 +0.071,0.509,0.935 +0.087,0.512,0.939 +0.104,0.516,0.942 +0.121,0.519,0.945 +0.138,0.523,0.947 +0.156,0.526,0.949 +0.175,0.530,0.950 +0.194,0.534,0.950 +0.213,0.537,0.949 +0.232,0.541,0.947 +0.252,0.544,0.945 +0.271,0.548,0.941 +0.291,0.551,0.937 +0.310,0.555,0.932 +0.329,0.558,0.926 +0.348,0.562,0.919 +0.366,0.565,0.911 +0.385,0.569,0.903 +0.402,0.573,0.894 +0.419,0.576,0.884 +0.436,0.580,0.874 +0.452,0.584,0.864 +0.468,0.587,0.853 +0.483,0.591,0.841 +0.498,0.595,0.829 +0.512,0.598,0.817 +0.525,0.602,0.805 +0.539,0.606,0.793 +0.551,0.610,0.781 +0.563,0.614,0.768 +0.575,0.617,0.756 +0.587,0.621,0.743 +0.598,0.625,0.730 +0.608,0.629,0.718 +0.619,0.633,0.705 +0.629,0.637,0.693 +0.639,0.640,0.681 +0.648,0.644,0.668 +0.658,0.648,0.656 +0.667,0.652,0.644 +0.676,0.656,0.632 +0.685,0.660,0.620 +0.693,0.663,0.608 +0.702,0.667,0.596 +0.710,0.671,0.584 +0.718,0.675,0.573 +0.726,0.678,0.561 +0.734,0.682,0.549 +0.742,0.686,0.537 +0.750,0.690,0.525 +0.758,0.693,0.514 +0.765,0.697,0.502 +0.772,0.701,0.490 +0.780,0.705,0.478 +0.787,0.708,0.466 +0.794,0.712,0.454 +0.801,0.716,0.442 +0.808,0.720,0.429 +0.815,0.723,0.417 +0.821,0.727,0.404 +0.828,0.731,0.391 +0.834,0.735,0.378 +0.841,0.739,0.365 +0.847,0.743,0.351 +0.853,0.746,0.337 +0.859,0.750,0.324 +0.865,0.754,0.309 +0.871,0.758,0.295 +0.877,0.762,0.281 +0.883,0.766,0.266 +0.889,0.770,0.251 +0.894,0.774,0.236 +0.900,0.778,0.222 +0.905,0.782,0.207 +0.910,0.786,0.193 +0.916,0.790,0.179 +0.921,0.794,0.166 +0.926,0.798,0.155 +0.931,0.802,0.145 +0.935,0.806,0.138 +0.940,0.809,0.134 +0.945,0.813,0.134 +0.949,0.817,0.137 +0.954,0.821,0.144 +0.958,0.825,0.155 +0.962,0.829,0.168 +0.966,0.833,0.185 +0.970,0.837,0.203 +0.973,0.841,0.223 +0.977,0.845,0.244 +0.980,0.849,0.267 +0.983,0.853,0.290 +0.986,0.857,0.314 +0.989,0.861,0.339 +0.991,0.865,0.364 +0.993,0.869,0.389 +0.995,0.873,0.415 +0.997,0.877,0.441 +0.998,0.882,0.467 +0.999,0.886,0.493 +1.000,0.890,0.519 +1.000,0.894,0.545 +1.000,0.898,0.571 +1.000,0.903,0.597 +1.000,0.907,0.622 +1.000,0.911,0.647 +1.000,0.915,0.672 +0.999,0.920,0.696 +0.998,0.924,0.720 +0.997,0.928,0.743 +0.996,0.933,0.765 +0.995,0.937,0.787 +0.994,0.942,0.808 +0.993,0.946,0.829 +0.992,0.950,0.849 +0.991,0.955,0.868 +0.990,0.959,0.886 +0.989,0.964,0.904 +0.988,0.968,0.921 +0.988,0.972,0.937 +0.987,0.977,0.953 diff --git a/pyqtgraph/colors/maps/CET-CBTC1.csv b/pyqtgraph/colors/maps/CET-CBTC1.csv new file mode 100644 index 00000000..fe8c1838 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-CBTC1.csv @@ -0,0 +1,256 @@ +0.149,0.735,0.842 +0.163,0.740,0.847 +0.179,0.744,0.851 +0.198,0.748,0.854 +0.217,0.752,0.857 +0.237,0.757,0.860 +0.257,0.761,0.863 +0.277,0.765,0.866 +0.296,0.769,0.868 +0.315,0.773,0.871 +0.333,0.777,0.873 +0.351,0.781,0.875 +0.368,0.785,0.878 +0.385,0.789,0.880 +0.401,0.793,0.882 +0.416,0.797,0.885 +0.432,0.801,0.887 +0.446,0.806,0.889 +0.461,0.810,0.891 +0.475,0.814,0.894 +0.489,0.818,0.896 +0.503,0.822,0.898 +0.516,0.826,0.901 +0.529,0.830,0.903 +0.542,0.834,0.905 +0.555,0.838,0.908 +0.568,0.842,0.910 +0.580,0.846,0.912 +0.593,0.850,0.915 +0.605,0.854,0.917 +0.617,0.858,0.919 +0.629,0.862,0.922 +0.641,0.867,0.924 +0.653,0.871,0.926 +0.664,0.875,0.928 +0.676,0.879,0.931 +0.688,0.883,0.933 +0.699,0.887,0.935 +0.710,0.891,0.938 +0.722,0.895,0.940 +0.733,0.899,0.942 +0.744,0.903,0.945 +0.755,0.907,0.947 +0.766,0.911,0.949 +0.777,0.915,0.952 +0.788,0.919,0.954 +0.799,0.923,0.956 +0.810,0.927,0.958 +0.821,0.931,0.961 +0.832,0.935,0.963 +0.842,0.939,0.965 +0.853,0.943,0.968 +0.864,0.947,0.970 +0.874,0.951,0.972 +0.885,0.955,0.974 +0.895,0.959,0.976 +0.906,0.962,0.978 +0.916,0.965,0.979 +0.926,0.968,0.980 +0.936,0.970,0.980 +0.945,0.972,0.980 +0.953,0.973,0.980 +0.961,0.973,0.978 +0.969,0.973,0.976 +0.975,0.972,0.973 +0.981,0.969,0.969 +0.985,0.966,0.964 +0.989,0.963,0.959 +0.992,0.958,0.953 +0.994,0.953,0.947 +0.995,0.948,0.940 +0.996,0.942,0.934 +0.997,0.936,0.926 +0.997,0.930,0.919 +0.997,0.923,0.912 +0.997,0.917,0.904 +0.997,0.911,0.897 +0.996,0.904,0.890 +0.996,0.898,0.882 +0.995,0.891,0.875 +0.995,0.885,0.867 +0.994,0.878,0.860 +0.993,0.871,0.852 +0.993,0.865,0.845 +0.992,0.858,0.838 +0.991,0.852,0.830 +0.990,0.845,0.823 +0.990,0.839,0.816 +0.989,0.832,0.808 +0.988,0.826,0.801 +0.987,0.819,0.794 +0.986,0.813,0.786 +0.985,0.806,0.779 +0.984,0.800,0.772 +0.983,0.793,0.765 +0.982,0.787,0.757 +0.981,0.780,0.750 +0.980,0.774,0.743 +0.979,0.767,0.736 +0.978,0.761,0.728 +0.976,0.754,0.721 +0.975,0.748,0.714 +0.974,0.741,0.707 +0.973,0.735,0.700 +0.971,0.728,0.693 +0.970,0.722,0.685 +0.969,0.715,0.678 +0.967,0.709,0.671 +0.966,0.702,0.664 +0.964,0.696,0.657 +0.963,0.689,0.650 +0.961,0.683,0.643 +0.960,0.676,0.636 +0.958,0.670,0.629 +0.957,0.663,0.622 +0.955,0.657,0.615 +0.953,0.650,0.608 +0.951,0.644,0.601 +0.949,0.638,0.594 +0.947,0.631,0.587 +0.945,0.625,0.581 +0.943,0.619,0.574 +0.940,0.612,0.568 +0.937,0.607,0.561 +0.934,0.601,0.556 +0.930,0.595,0.550 +0.926,0.590,0.545 +0.921,0.585,0.540 +0.915,0.580,0.535 +0.909,0.575,0.531 +0.903,0.571,0.527 +0.896,0.567,0.523 +0.888,0.563,0.520 +0.880,0.560,0.517 +0.872,0.556,0.514 +0.864,0.553,0.511 +0.856,0.550,0.508 +0.847,0.546,0.505 +0.838,0.543,0.503 +0.830,0.540,0.500 +0.821,0.537,0.498 +0.812,0.534,0.495 +0.804,0.531,0.493 +0.795,0.527,0.490 +0.786,0.524,0.488 +0.777,0.521,0.485 +0.769,0.518,0.483 +0.760,0.515,0.480 +0.751,0.512,0.478 +0.743,0.509,0.475 +0.734,0.505,0.473 +0.725,0.502,0.470 +0.717,0.499,0.468 +0.708,0.496,0.465 +0.699,0.493,0.463 +0.691,0.490,0.460 +0.682,0.486,0.458 +0.673,0.483,0.456 +0.665,0.480,0.453 +0.656,0.477,0.451 +0.648,0.474,0.448 +0.639,0.471,0.446 +0.630,0.467,0.443 +0.622,0.464,0.441 +0.613,0.461,0.438 +0.605,0.458,0.436 +0.596,0.455,0.433 +0.588,0.451,0.431 +0.579,0.448,0.429 +0.570,0.445,0.426 +0.562,0.442,0.424 +0.553,0.439,0.421 +0.545,0.435,0.419 +0.536,0.432,0.416 +0.528,0.429,0.414 +0.519,0.426,0.411 +0.510,0.423,0.409 +0.502,0.419,0.407 +0.493,0.416,0.404 +0.485,0.413,0.402 +0.476,0.410,0.400 +0.468,0.407,0.397 +0.459,0.404,0.395 +0.451,0.401,0.393 +0.442,0.398,0.392 +0.434,0.396,0.390 +0.426,0.394,0.389 +0.419,0.392,0.389 +0.411,0.391,0.389 +0.405,0.391,0.389 +0.398,0.391,0.391 +0.393,0.392,0.393 +0.388,0.393,0.396 +0.384,0.395,0.400 +0.380,0.398,0.404 +0.377,0.402,0.409 +0.374,0.405,0.414 +0.372,0.410,0.420 +0.371,0.414,0.426 +0.369,0.419,0.433 +0.368,0.424,0.439 +0.367,0.430,0.446 +0.366,0.435,0.453 +0.365,0.440,0.460 +0.364,0.446,0.467 +0.363,0.451,0.474 +0.362,0.457,0.481 +0.361,0.462,0.488 +0.360,0.468,0.495 +0.359,0.473,0.503 +0.357,0.479,0.510 +0.356,0.484,0.517 +0.354,0.490,0.524 +0.352,0.495,0.532 +0.351,0.501,0.539 +0.349,0.507,0.546 +0.347,0.512,0.553 +0.344,0.518,0.561 +0.342,0.523,0.568 +0.340,0.529,0.575 +0.337,0.535,0.583 +0.334,0.540,0.590 +0.332,0.546,0.597 +0.329,0.551,0.605 +0.325,0.557,0.612 +0.322,0.563,0.620 +0.319,0.568,0.627 +0.315,0.574,0.635 +0.311,0.580,0.642 +0.307,0.585,0.650 +0.303,0.591,0.657 +0.298,0.597,0.665 +0.294,0.603,0.672 +0.289,0.608,0.680 +0.284,0.614,0.687 +0.278,0.620,0.695 +0.272,0.626,0.703 +0.266,0.631,0.710 +0.260,0.637,0.718 +0.253,0.643,0.725 +0.246,0.649,0.733 +0.238,0.654,0.741 +0.230,0.660,0.748 +0.222,0.666,0.756 +0.212,0.672,0.764 +0.203,0.677,0.771 +0.193,0.683,0.779 +0.182,0.689,0.787 +0.171,0.694,0.794 +0.161,0.700,0.801 +0.151,0.705,0.808 +0.142,0.711,0.815 +0.136,0.716,0.821 +0.133,0.721,0.827 +0.134,0.726,0.833 +0.139,0.731,0.838 diff --git a/pyqtgraph/colors/maps/CET-CBTC2.csv b/pyqtgraph/colors/maps/CET-CBTC2.csv new file mode 100644 index 00000000..b04636a6 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-CBTC2.csv @@ -0,0 +1,256 @@ +0.985,0.981,0.982 +0.989,0.979,0.978 +0.992,0.976,0.974 +0.995,0.973,0.970 +0.997,0.968,0.964 +0.998,0.964,0.958 +0.999,0.958,0.952 +1.000,0.953,0.945 +1.000,0.947,0.938 +1.000,0.940,0.931 +1.000,0.934,0.924 +1.000,0.928,0.916 +1.000,0.921,0.909 +1.000,0.915,0.901 +1.000,0.908,0.894 +1.000,0.902,0.886 +1.000,0.895,0.879 +0.999,0.889,0.871 +0.999,0.882,0.864 +0.998,0.876,0.857 +0.998,0.869,0.849 +0.997,0.863,0.842 +0.997,0.856,0.834 +0.996,0.850,0.827 +0.996,0.843,0.819 +0.995,0.836,0.812 +0.995,0.830,0.805 +0.994,0.823,0.797 +0.993,0.817,0.790 +0.992,0.810,0.783 +0.992,0.804,0.775 +0.991,0.797,0.768 +0.990,0.791,0.761 +0.989,0.784,0.753 +0.988,0.778,0.746 +0.987,0.771,0.739 +0.986,0.765,0.732 +0.985,0.758,0.724 +0.984,0.752,0.717 +0.983,0.745,0.710 +0.982,0.739,0.703 +0.981,0.732,0.695 +0.980,0.726,0.688 +0.979,0.719,0.681 +0.977,0.713,0.674 +0.976,0.706,0.667 +0.975,0.700,0.660 +0.974,0.693,0.653 +0.972,0.687,0.646 +0.971,0.680,0.638 +0.970,0.673,0.631 +0.968,0.667,0.624 +0.967,0.660,0.617 +0.965,0.654,0.610 +0.964,0.648,0.604 +0.962,0.641,0.597 +0.961,0.635,0.590 +0.959,0.629,0.584 +0.958,0.624,0.578 +0.957,0.619,0.573 +0.956,0.614,0.568 +0.955,0.611,0.564 +0.954,0.608,0.561 +0.954,0.606,0.559 +0.953,0.605,0.558 +0.953,0.605,0.558 +0.954,0.606,0.560 +0.954,0.609,0.562 +0.955,0.612,0.565 +0.956,0.616,0.569 +0.957,0.620,0.574 +0.958,0.625,0.580 +0.960,0.631,0.586 +0.961,0.637,0.592 +0.963,0.643,0.599 +0.964,0.649,0.605 +0.966,0.656,0.612 +0.967,0.662,0.619 +0.969,0.669,0.626 +0.970,0.675,0.633 +0.971,0.682,0.640 +0.973,0.688,0.647 +0.974,0.695,0.655 +0.975,0.701,0.662 +0.977,0.708,0.669 +0.978,0.714,0.676 +0.979,0.721,0.683 +0.980,0.727,0.690 +0.981,0.734,0.697 +0.982,0.740,0.705 +0.984,0.747,0.712 +0.985,0.754,0.719 +0.986,0.760,0.726 +0.987,0.767,0.734 +0.988,0.773,0.741 +0.988,0.780,0.748 +0.989,0.786,0.755 +0.990,0.793,0.763 +0.991,0.799,0.770 +0.992,0.806,0.777 +0.993,0.812,0.785 +0.993,0.819,0.792 +0.994,0.825,0.799 +0.995,0.832,0.807 +0.995,0.838,0.814 +0.996,0.845,0.821 +0.997,0.851,0.829 +0.997,0.858,0.836 +0.998,0.864,0.844 +0.998,0.871,0.851 +0.999,0.877,0.858 +0.999,0.884,0.866 +0.999,0.890,0.873 +1.000,0.897,0.881 +1.000,0.903,0.888 +1.000,0.910,0.896 +1.000,0.916,0.903 +1.000,0.923,0.911 +1.000,0.929,0.918 +1.000,0.936,0.926 +0.999,0.942,0.933 +0.998,0.948,0.940 +0.996,0.953,0.947 +0.994,0.958,0.953 +0.992,0.963,0.959 +0.988,0.967,0.964 +0.984,0.970,0.969 +0.979,0.973,0.973 +0.973,0.975,0.977 +0.966,0.976,0.979 +0.959,0.976,0.981 +0.950,0.975,0.982 +0.941,0.973,0.983 +0.932,0.971,0.982 +0.922,0.969,0.982 +0.912,0.966,0.981 +0.902,0.963,0.979 +0.891,0.959,0.978 +0.881,0.956,0.976 +0.870,0.952,0.974 +0.859,0.948,0.972 +0.848,0.944,0.970 +0.837,0.940,0.968 +0.826,0.936,0.965 +0.815,0.932,0.963 +0.804,0.928,0.961 +0.793,0.924,0.959 +0.782,0.920,0.957 +0.771,0.916,0.955 +0.760,0.912,0.953 +0.748,0.908,0.950 +0.737,0.905,0.948 +0.725,0.901,0.946 +0.714,0.897,0.944 +0.702,0.893,0.942 +0.691,0.889,0.940 +0.679,0.885,0.938 +0.667,0.881,0.935 +0.655,0.877,0.933 +0.643,0.873,0.931 +0.631,0.869,0.929 +0.618,0.865,0.927 +0.606,0.861,0.925 +0.593,0.857,0.923 +0.581,0.853,0.920 +0.568,0.849,0.918 +0.555,0.845,0.916 +0.542,0.841,0.914 +0.528,0.837,0.912 +0.515,0.833,0.910 +0.501,0.829,0.907 +0.487,0.825,0.905 +0.472,0.821,0.903 +0.457,0.817,0.901 +0.442,0.813,0.899 +0.427,0.809,0.897 +0.411,0.805,0.895 +0.395,0.801,0.892 +0.378,0.797,0.890 +0.360,0.793,0.888 +0.342,0.789,0.886 +0.324,0.785,0.884 +0.305,0.782,0.882 +0.285,0.778,0.880 +0.265,0.774,0.878 +0.246,0.771,0.876 +0.227,0.768,0.875 +0.209,0.766,0.874 +0.193,0.764,0.872 +0.181,0.762,0.872 +0.174,0.762,0.871 +0.171,0.761,0.871 +0.175,0.762,0.871 +0.184,0.763,0.872 +0.197,0.764,0.873 +0.213,0.766,0.874 +0.231,0.769,0.875 +0.250,0.772,0.877 +0.270,0.775,0.879 +0.289,0.779,0.880 +0.309,0.782,0.882 +0.328,0.786,0.884 +0.346,0.790,0.887 +0.364,0.794,0.889 +0.381,0.798,0.891 +0.398,0.802,0.893 +0.414,0.806,0.895 +0.430,0.810,0.897 +0.446,0.814,0.899 +0.461,0.818,0.901 +0.475,0.822,0.904 +0.490,0.826,0.906 +0.504,0.830,0.908 +0.518,0.834,0.910 +0.531,0.838,0.912 +0.545,0.842,0.914 +0.558,0.846,0.917 +0.571,0.850,0.919 +0.584,0.854,0.921 +0.596,0.858,0.923 +0.609,0.862,0.925 +0.621,0.866,0.927 +0.633,0.870,0.929 +0.646,0.874,0.932 +0.658,0.878,0.934 +0.670,0.882,0.936 +0.681,0.886,0.938 +0.693,0.890,0.940 +0.705,0.893,0.942 +0.716,0.897,0.944 +0.728,0.901,0.947 +0.739,0.905,0.949 +0.751,0.909,0.951 +0.762,0.913,0.953 +0.773,0.917,0.955 +0.785,0.921,0.957 +0.796,0.925,0.959 +0.807,0.929,0.962 +0.818,0.933,0.964 +0.829,0.937,0.966 +0.840,0.941,0.968 +0.851,0.945,0.970 +0.861,0.949,0.972 +0.872,0.953,0.974 +0.883,0.957,0.976 +0.893,0.960,0.978 +0.904,0.964,0.980 +0.914,0.968,0.982 +0.924,0.971,0.984 +0.934,0.974,0.985 +0.943,0.977,0.986 +0.952,0.979,0.987 +0.960,0.981,0.987 +0.967,0.982,0.987 +0.974,0.983,0.986 +0.980,0.982,0.984 diff --git a/pyqtgraph/colors/maps/CET-CBTD1.csv b/pyqtgraph/colors/maps/CET-CBTD1.csv new file mode 100644 index 00000000..504f1dee --- /dev/null +++ b/pyqtgraph/colors/maps/CET-CBTD1.csv @@ -0,0 +1,256 @@ +0.161,0.791,0.905 +0.179,0.792,0.906 +0.195,0.794,0.907 +0.210,0.795,0.907 +0.224,0.797,0.908 +0.237,0.798,0.908 +0.250,0.799,0.909 +0.261,0.801,0.909 +0.273,0.802,0.910 +0.284,0.804,0.911 +0.294,0.805,0.911 +0.304,0.807,0.912 +0.314,0.808,0.912 +0.324,0.810,0.913 +0.333,0.811,0.913 +0.342,0.813,0.914 +0.351,0.814,0.915 +0.359,0.816,0.915 +0.368,0.817,0.916 +0.376,0.819,0.916 +0.384,0.820,0.917 +0.392,0.822,0.917 +0.400,0.823,0.918 +0.408,0.825,0.919 +0.415,0.826,0.919 +0.423,0.828,0.920 +0.430,0.829,0.920 +0.437,0.831,0.921 +0.444,0.832,0.921 +0.451,0.834,0.922 +0.458,0.835,0.923 +0.465,0.837,0.923 +0.472,0.838,0.924 +0.479,0.840,0.924 +0.485,0.841,0.925 +0.492,0.843,0.925 +0.498,0.844,0.926 +0.505,0.845,0.927 +0.511,0.847,0.927 +0.518,0.848,0.928 +0.524,0.850,0.928 +0.530,0.851,0.929 +0.536,0.853,0.929 +0.542,0.854,0.930 +0.549,0.856,0.930 +0.555,0.857,0.931 +0.561,0.859,0.932 +0.566,0.860,0.932 +0.572,0.862,0.933 +0.578,0.863,0.933 +0.584,0.865,0.934 +0.590,0.866,0.934 +0.596,0.867,0.935 +0.601,0.869,0.936 +0.607,0.870,0.936 +0.613,0.872,0.937 +0.618,0.873,0.937 +0.624,0.875,0.938 +0.629,0.876,0.938 +0.635,0.878,0.939 +0.640,0.879,0.939 +0.646,0.881,0.940 +0.651,0.882,0.941 +0.657,0.884,0.941 +0.662,0.885,0.942 +0.667,0.886,0.942 +0.673,0.888,0.943 +0.678,0.889,0.943 +0.683,0.891,0.944 +0.689,0.892,0.945 +0.694,0.894,0.945 +0.699,0.895,0.946 +0.704,0.897,0.946 +0.710,0.898,0.947 +0.715,0.899,0.947 +0.720,0.901,0.948 +0.725,0.902,0.948 +0.730,0.904,0.949 +0.735,0.905,0.950 +0.740,0.907,0.950 +0.746,0.908,0.951 +0.751,0.910,0.951 +0.756,0.911,0.952 +0.761,0.912,0.952 +0.766,0.914,0.953 +0.771,0.915,0.953 +0.776,0.917,0.954 +0.781,0.918,0.955 +0.786,0.920,0.955 +0.791,0.921,0.956 +0.795,0.923,0.956 +0.800,0.924,0.957 +0.805,0.925,0.957 +0.810,0.927,0.958 +0.815,0.928,0.958 +0.820,0.930,0.959 +0.825,0.931,0.960 +0.830,0.933,0.960 +0.834,0.934,0.961 +0.839,0.936,0.961 +0.844,0.937,0.962 +0.849,0.938,0.962 +0.854,0.940,0.963 +0.858,0.941,0.963 +0.863,0.943,0.964 +0.868,0.944,0.965 +0.873,0.946,0.965 +0.878,0.947,0.966 +0.882,0.948,0.966 +0.887,0.950,0.967 +0.892,0.951,0.967 +0.896,0.953,0.968 +0.901,0.954,0.968 +0.906,0.956,0.969 +0.911,0.957,0.969 +0.915,0.958,0.970 +0.920,0.960,0.970 +0.925,0.961,0.971 +0.929,0.962,0.971 +0.934,0.964,0.972 +0.938,0.965,0.972 +0.943,0.966,0.972 +0.947,0.967,0.972 +0.951,0.968,0.972 +0.956,0.968,0.972 +0.959,0.968,0.971 +0.963,0.968,0.970 +0.966,0.968,0.969 +0.969,0.967,0.967 +0.972,0.966,0.966 +0.974,0.965,0.964 +0.976,0.963,0.961 +0.978,0.961,0.959 +0.979,0.959,0.956 +0.980,0.957,0.953 +0.981,0.954,0.950 +0.982,0.952,0.947 +0.983,0.949,0.944 +0.984,0.947,0.941 +0.984,0.944,0.938 +0.985,0.941,0.934 +0.985,0.939,0.931 +0.986,0.936,0.928 +0.986,0.933,0.925 +0.987,0.931,0.922 +0.987,0.928,0.918 +0.988,0.925,0.915 +0.988,0.922,0.912 +0.988,0.920,0.909 +0.989,0.917,0.906 +0.989,0.914,0.903 +0.990,0.912,0.899 +0.990,0.909,0.896 +0.991,0.906,0.893 +0.991,0.904,0.890 +0.991,0.901,0.887 +0.992,0.898,0.884 +0.992,0.895,0.880 +0.992,0.893,0.877 +0.993,0.890,0.874 +0.993,0.887,0.871 +0.993,0.885,0.868 +0.994,0.882,0.865 +0.994,0.879,0.861 +0.994,0.877,0.858 +0.995,0.874,0.855 +0.995,0.871,0.852 +0.995,0.869,0.849 +0.995,0.866,0.846 +0.996,0.863,0.843 +0.996,0.860,0.839 +0.996,0.858,0.836 +0.996,0.855,0.833 +0.997,0.852,0.830 +0.997,0.850,0.827 +0.997,0.847,0.824 +0.997,0.844,0.821 +0.998,0.842,0.817 +0.998,0.839,0.814 +0.998,0.836,0.811 +0.998,0.833,0.808 +0.998,0.831,0.805 +0.998,0.828,0.802 +0.999,0.825,0.799 +0.999,0.823,0.796 +0.999,0.820,0.793 +0.999,0.817,0.789 +0.999,0.815,0.786 +0.999,0.812,0.783 +0.999,0.809,0.780 +0.999,0.806,0.777 +1.000,0.804,0.774 +1.000,0.801,0.771 +1.000,0.798,0.768 +1.000,0.796,0.765 +1.000,0.793,0.762 +1.000,0.790,0.759 +1.000,0.787,0.755 +1.000,0.785,0.752 +1.000,0.782,0.749 +1.000,0.779,0.746 +1.000,0.777,0.743 +1.000,0.774,0.740 +1.000,0.771,0.737 +1.000,0.769,0.734 +1.000,0.766,0.731 +1.000,0.763,0.728 +1.000,0.760,0.725 +1.000,0.758,0.722 +1.000,0.755,0.719 +1.000,0.752,0.716 +1.000,0.750,0.713 +1.000,0.747,0.709 +1.000,0.744,0.706 +1.000,0.741,0.703 +1.000,0.739,0.700 +1.000,0.736,0.697 +1.000,0.733,0.694 +0.999,0.731,0.691 +0.999,0.728,0.688 +0.999,0.725,0.685 +0.999,0.722,0.682 +0.999,0.720,0.679 +0.999,0.717,0.676 +0.999,0.714,0.673 +0.999,0.711,0.670 +0.998,0.709,0.667 +0.998,0.706,0.664 +0.998,0.703,0.661 +0.998,0.701,0.658 +0.998,0.698,0.655 +0.998,0.695,0.652 +0.997,0.692,0.649 +0.997,0.690,0.646 +0.997,0.687,0.643 +0.997,0.684,0.640 +0.997,0.681,0.637 +0.996,0.679,0.634 +0.996,0.676,0.631 +0.996,0.673,0.628 +0.996,0.670,0.625 +0.996,0.668,0.622 +0.995,0.665,0.619 +0.995,0.662,0.616 +0.995,0.659,0.613 +0.995,0.657,0.610 +0.994,0.654,0.607 +0.994,0.651,0.604 +0.994,0.648,0.601 +0.993,0.646,0.598 +0.993,0.643,0.595 +0.993,0.640,0.592 +0.993,0.637,0.589 +0.992,0.635,0.586 +0.992,0.632,0.583 +0.992,0.629,0.580 diff --git a/pyqtgraph/colors/maps/CET-CBTL1.csv b/pyqtgraph/colors/maps/CET-CBTL1.csv new file mode 100644 index 00000000..315c8481 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-CBTL1.csv @@ -0,0 +1,256 @@ +0.066,0.066,0.066 +0.078,0.067,0.065 +0.089,0.069,0.065 +0.099,0.070,0.064 +0.108,0.071,0.064 +0.116,0.072,0.063 +0.124,0.073,0.063 +0.133,0.074,0.062 +0.141,0.075,0.061 +0.149,0.075,0.061 +0.157,0.075,0.060 +0.165,0.075,0.060 +0.173,0.075,0.059 +0.181,0.075,0.058 +0.190,0.075,0.058 +0.198,0.075,0.057 +0.206,0.074,0.057 +0.214,0.074,0.056 +0.222,0.073,0.055 +0.230,0.072,0.055 +0.238,0.071,0.054 +0.246,0.070,0.053 +0.254,0.069,0.053 +0.262,0.068,0.052 +0.270,0.066,0.052 +0.278,0.065,0.051 +0.286,0.063,0.050 +0.294,0.061,0.050 +0.302,0.059,0.049 +0.310,0.057,0.049 +0.318,0.054,0.048 +0.326,0.052,0.048 +0.333,0.049,0.047 +0.341,0.046,0.047 +0.349,0.043,0.047 +0.357,0.040,0.047 +0.364,0.036,0.047 +0.372,0.033,0.047 +0.379,0.030,0.047 +0.386,0.027,0.048 +0.393,0.024,0.048 +0.401,0.021,0.049 +0.408,0.018,0.049 +0.414,0.016,0.050 +0.421,0.014,0.051 +0.428,0.012,0.052 +0.435,0.010,0.053 +0.441,0.009,0.054 +0.447,0.007,0.056 +0.454,0.006,0.057 +0.460,0.005,0.058 +0.466,0.005,0.060 +0.473,0.004,0.061 +0.479,0.004,0.063 +0.485,0.004,0.064 +0.491,0.004,0.065 +0.497,0.004,0.067 +0.503,0.004,0.068 +0.509,0.004,0.070 +0.515,0.005,0.071 +0.521,0.005,0.072 +0.527,0.006,0.074 +0.533,0.007,0.075 +0.539,0.007,0.077 +0.545,0.008,0.078 +0.551,0.009,0.080 +0.557,0.009,0.081 +0.563,0.010,0.083 +0.569,0.011,0.084 +0.575,0.012,0.086 +0.581,0.013,0.087 +0.588,0.014,0.089 +0.594,0.015,0.090 +0.600,0.016,0.092 +0.606,0.017,0.093 +0.612,0.018,0.095 +0.618,0.019,0.096 +0.624,0.020,0.098 +0.631,0.021,0.099 +0.637,0.022,0.101 +0.643,0.023,0.103 +0.649,0.025,0.104 +0.655,0.026,0.106 +0.662,0.027,0.107 +0.668,0.028,0.109 +0.674,0.030,0.110 +0.680,0.031,0.112 +0.687,0.032,0.113 +0.693,0.034,0.115 +0.699,0.035,0.117 +0.705,0.037,0.118 +0.712,0.038,0.120 +0.718,0.040,0.121 +0.724,0.041,0.123 +0.731,0.043,0.124 +0.737,0.044,0.126 +0.743,0.046,0.128 +0.750,0.047,0.129 +0.756,0.049,0.131 +0.763,0.050,0.132 +0.769,0.052,0.134 +0.775,0.053,0.136 +0.782,0.055,0.137 +0.788,0.056,0.139 +0.795,0.057,0.140 +0.801,0.059,0.142 +0.808,0.060,0.144 +0.814,0.062,0.145 +0.821,0.063,0.147 +0.827,0.065,0.149 +0.834,0.066,0.150 +0.840,0.068,0.152 +0.847,0.069,0.153 +0.853,0.071,0.155 +0.860,0.072,0.157 +0.866,0.074,0.158 +0.873,0.075,0.160 +0.879,0.077,0.162 +0.886,0.079,0.164 +0.892,0.081,0.165 +0.899,0.083,0.167 +0.905,0.085,0.169 +0.912,0.087,0.171 +0.918,0.090,0.173 +0.924,0.093,0.175 +0.930,0.097,0.177 +0.936,0.101,0.179 +0.942,0.105,0.181 +0.948,0.110,0.184 +0.953,0.116,0.187 +0.958,0.122,0.190 +0.963,0.130,0.193 +0.968,0.137,0.197 +0.972,0.146,0.201 +0.976,0.155,0.205 +0.979,0.165,0.210 +0.982,0.176,0.215 +0.984,0.187,0.220 +0.986,0.199,0.226 +0.988,0.211,0.233 +0.988,0.224,0.240 +0.989,0.236,0.247 +0.988,0.250,0.255 +0.987,0.263,0.263 +0.986,0.277,0.272 +0.983,0.290,0.281 +0.981,0.304,0.291 +0.978,0.318,0.301 +0.974,0.331,0.311 +0.970,0.345,0.322 +0.965,0.358,0.333 +0.960,0.371,0.344 +0.954,0.384,0.356 +0.948,0.397,0.368 +0.942,0.410,0.380 +0.935,0.422,0.392 +0.929,0.435,0.404 +0.921,0.447,0.417 +0.914,0.458,0.429 +0.906,0.470,0.442 +0.898,0.481,0.454 +0.889,0.493,0.467 +0.881,0.504,0.480 +0.872,0.514,0.493 +0.863,0.525,0.506 +0.853,0.535,0.519 +0.843,0.546,0.532 +0.833,0.556,0.545 +0.823,0.566,0.558 +0.812,0.576,0.571 +0.801,0.586,0.585 +0.789,0.595,0.598 +0.777,0.605,0.611 +0.765,0.614,0.625 +0.752,0.624,0.638 +0.739,0.633,0.651 +0.725,0.642,0.665 +0.710,0.651,0.678 +0.696,0.660,0.692 +0.680,0.669,0.705 +0.664,0.677,0.719 +0.647,0.686,0.732 +0.630,0.695,0.745 +0.612,0.703,0.759 +0.593,0.711,0.772 +0.573,0.720,0.785 +0.552,0.728,0.798 +0.531,0.736,0.811 +0.509,0.744,0.824 +0.485,0.751,0.837 +0.461,0.759,0.849 +0.437,0.766,0.861 +0.411,0.773,0.872 +0.385,0.780,0.884 +0.358,0.787,0.894 +0.330,0.794,0.905 +0.302,0.800,0.914 +0.274,0.806,0.924 +0.246,0.812,0.932 +0.218,0.818,0.940 +0.192,0.823,0.947 +0.169,0.829,0.954 +0.149,0.834,0.960 +0.136,0.838,0.966 +0.131,0.843,0.970 +0.134,0.847,0.975 +0.146,0.851,0.978 +0.163,0.855,0.982 +0.184,0.859,0.984 +0.207,0.862,0.986 +0.232,0.866,0.988 +0.257,0.869,0.990 +0.282,0.872,0.991 +0.307,0.875,0.992 +0.331,0.878,0.992 +0.354,0.881,0.993 +0.377,0.884,0.993 +0.400,0.886,0.993 +0.421,0.889,0.993 +0.442,0.892,0.993 +0.463,0.894,0.993 +0.483,0.897,0.992 +0.502,0.899,0.992 +0.521,0.902,0.992 +0.539,0.905,0.991 +0.557,0.907,0.991 +0.574,0.909,0.991 +0.591,0.912,0.990 +0.608,0.914,0.990 +0.624,0.917,0.989 +0.640,0.919,0.989 +0.655,0.922,0.989 +0.671,0.924,0.988 +0.686,0.927,0.988 +0.701,0.929,0.987 +0.715,0.931,0.987 +0.730,0.934,0.986 +0.744,0.936,0.986 +0.758,0.938,0.985 +0.772,0.941,0.985 +0.785,0.943,0.985 +0.799,0.945,0.984 +0.812,0.948,0.984 +0.826,0.950,0.983 +0.839,0.952,0.983 +0.852,0.955,0.982 +0.865,0.957,0.982 +0.878,0.959,0.981 +0.890,0.962,0.981 +0.903,0.964,0.980 +0.916,0.966,0.980 +0.928,0.968,0.979 +0.940,0.971,0.979 +0.953,0.973,0.978 +0.965,0.975,0.978 +0.977,0.977,0.977 diff --git a/pyqtgraph/colors/maps/CET-CBTL2.csv b/pyqtgraph/colors/maps/CET-CBTL2.csv new file mode 100644 index 00000000..3fec486e --- /dev/null +++ b/pyqtgraph/colors/maps/CET-CBTL2.csv @@ -0,0 +1,256 @@ +0.066,0.066,0.066 +0.077,0.068,0.066 +0.086,0.069,0.066 +0.095,0.071,0.066 +0.103,0.072,0.066 +0.111,0.074,0.066 +0.118,0.075,0.067 +0.125,0.076,0.067 +0.132,0.078,0.067 +0.139,0.078,0.067 +0.146,0.079,0.068 +0.152,0.080,0.068 +0.159,0.081,0.069 +0.166,0.082,0.069 +0.173,0.083,0.070 +0.179,0.084,0.070 +0.186,0.084,0.070 +0.192,0.085,0.071 +0.199,0.086,0.072 +0.205,0.087,0.072 +0.212,0.087,0.073 +0.218,0.088,0.074 +0.225,0.089,0.074 +0.231,0.090,0.075 +0.237,0.090,0.076 +0.244,0.091,0.076 +0.250,0.092,0.077 +0.256,0.093,0.078 +0.262,0.094,0.079 +0.268,0.094,0.080 +0.274,0.095,0.081 +0.280,0.096,0.082 +0.286,0.097,0.082 +0.292,0.098,0.083 +0.298,0.099,0.084 +0.304,0.100,0.085 +0.310,0.101,0.086 +0.316,0.102,0.088 +0.322,0.103,0.089 +0.327,0.105,0.090 +0.333,0.106,0.091 +0.339,0.107,0.093 +0.344,0.109,0.094 +0.350,0.110,0.095 +0.355,0.112,0.097 +0.361,0.113,0.098 +0.366,0.115,0.100 +0.371,0.117,0.101 +0.376,0.118,0.103 +0.382,0.120,0.105 +0.387,0.122,0.107 +0.392,0.124,0.108 +0.397,0.126,0.110 +0.402,0.128,0.112 +0.407,0.131,0.114 +0.411,0.133,0.116 +0.416,0.135,0.119 +0.421,0.138,0.121 +0.425,0.140,0.123 +0.430,0.143,0.125 +0.434,0.146,0.128 +0.439,0.149,0.130 +0.443,0.152,0.133 +0.447,0.155,0.135 +0.451,0.158,0.138 +0.455,0.161,0.141 +0.459,0.164,0.144 +0.463,0.168,0.147 +0.467,0.171,0.150 +0.470,0.175,0.153 +0.474,0.178,0.156 +0.477,0.182,0.159 +0.480,0.186,0.163 +0.483,0.190,0.166 +0.486,0.194,0.170 +0.489,0.198,0.173 +0.492,0.202,0.177 +0.495,0.207,0.181 +0.497,0.211,0.185 +0.500,0.215,0.189 +0.502,0.220,0.193 +0.504,0.224,0.197 +0.506,0.229,0.202 +0.508,0.234,0.206 +0.509,0.239,0.211 +0.510,0.244,0.216 +0.512,0.249,0.220 +0.513,0.254,0.225 +0.513,0.259,0.230 +0.514,0.264,0.236 +0.514,0.270,0.241 +0.514,0.275,0.247 +0.514,0.281,0.252 +0.514,0.286,0.258 +0.514,0.292,0.264 +0.513,0.297,0.270 +0.513,0.303,0.276 +0.513,0.308,0.281 +0.512,0.314,0.287 +0.511,0.319,0.293 +0.511,0.324,0.299 +0.510,0.330,0.305 +0.509,0.335,0.311 +0.509,0.340,0.317 +0.508,0.345,0.323 +0.507,0.351,0.329 +0.506,0.356,0.335 +0.505,0.361,0.341 +0.504,0.366,0.348 +0.503,0.371,0.354 +0.501,0.377,0.360 +0.500,0.382,0.366 +0.499,0.387,0.372 +0.497,0.392,0.379 +0.496,0.397,0.385 +0.494,0.402,0.391 +0.493,0.407,0.398 +0.491,0.412,0.404 +0.489,0.417,0.410 +0.487,0.422,0.417 +0.485,0.427,0.423 +0.483,0.433,0.430 +0.481,0.438,0.436 +0.479,0.443,0.443 +0.477,0.448,0.449 +0.475,0.453,0.456 +0.472,0.458,0.462 +0.470,0.463,0.469 +0.467,0.468,0.476 +0.464,0.473,0.482 +0.461,0.478,0.489 +0.458,0.483,0.496 +0.455,0.488,0.502 +0.452,0.493,0.509 +0.449,0.498,0.516 +0.445,0.503,0.523 +0.442,0.508,0.530 +0.438,0.513,0.537 +0.434,0.517,0.543 +0.430,0.522,0.550 +0.426,0.527,0.557 +0.421,0.532,0.564 +0.417,0.537,0.571 +0.412,0.542,0.578 +0.407,0.547,0.585 +0.402,0.552,0.592 +0.397,0.557,0.599 +0.392,0.562,0.606 +0.386,0.567,0.613 +0.380,0.572,0.621 +0.374,0.577,0.628 +0.368,0.582,0.635 +0.361,0.587,0.642 +0.354,0.592,0.649 +0.346,0.597,0.657 +0.339,0.602,0.664 +0.331,0.607,0.671 +0.322,0.612,0.679 +0.313,0.617,0.686 +0.304,0.622,0.693 +0.294,0.627,0.701 +0.283,0.631,0.708 +0.271,0.636,0.716 +0.259,0.641,0.723 +0.247,0.646,0.730 +0.234,0.651,0.738 +0.221,0.656,0.745 +0.208,0.661,0.752 +0.195,0.665,0.758 +0.182,0.670,0.765 +0.169,0.675,0.771 +0.156,0.679,0.777 +0.142,0.684,0.784 +0.129,0.688,0.790 +0.116,0.693,0.795 +0.102,0.697,0.801 +0.089,0.701,0.807 +0.076,0.706,0.812 +0.064,0.710,0.817 +0.053,0.714,0.822 +0.043,0.718,0.827 +0.036,0.722,0.832 +0.032,0.726,0.837 +0.031,0.730,0.842 +0.034,0.734,0.846 +0.042,0.738,0.851 +0.051,0.742,0.855 +0.062,0.746,0.859 +0.075,0.750,0.863 +0.088,0.754,0.867 +0.101,0.758,0.871 +0.115,0.762,0.875 +0.129,0.765,0.878 +0.142,0.769,0.882 +0.156,0.773,0.885 +0.170,0.776,0.889 +0.184,0.780,0.892 +0.198,0.784,0.895 +0.211,0.787,0.898 +0.225,0.791,0.901 +0.239,0.794,0.904 +0.252,0.798,0.907 +0.266,0.801,0.909 +0.279,0.805,0.912 +0.293,0.808,0.914 +0.306,0.811,0.917 +0.319,0.815,0.919 +0.333,0.818,0.921 +0.346,0.821,0.923 +0.359,0.825,0.925 +0.372,0.828,0.927 +0.385,0.831,0.929 +0.398,0.834,0.931 +0.411,0.837,0.933 +0.424,0.840,0.934 +0.437,0.843,0.936 +0.450,0.846,0.937 +0.463,0.849,0.939 +0.476,0.852,0.940 +0.489,0.855,0.941 +0.502,0.858,0.943 +0.515,0.861,0.944 +0.528,0.864,0.945 +0.540,0.867,0.946 +0.553,0.870,0.947 +0.566,0.873,0.948 +0.578,0.875,0.948 +0.591,0.878,0.949 +0.604,0.881,0.950 +0.617,0.884,0.950 +0.629,0.886,0.951 +0.642,0.889,0.951 +0.654,0.891,0.952 +0.667,0.894,0.952 +0.680,0.897,0.952 +0.692,0.899,0.952 +0.705,0.902,0.952 +0.717,0.904,0.952 +0.730,0.907,0.952 +0.743,0.909,0.952 +0.755,0.911,0.952 +0.768,0.914,0.952 +0.780,0.916,0.952 +0.793,0.918,0.951 +0.805,0.921,0.951 +0.818,0.923,0.951 +0.831,0.925,0.950 +0.843,0.927,0.950 +0.856,0.929,0.949 +0.868,0.931,0.948 +0.881,0.934,0.948 +0.893,0.936,0.947 +0.906,0.938,0.946 +0.918,0.940,0.945 +0.931,0.942,0.944 +0.943,0.944,0.943 diff --git a/pyqtgraph/colors/maps/CET-D1.csv b/pyqtgraph/colors/maps/CET-D1.csv new file mode 100644 index 00000000..96755d9e --- /dev/null +++ b/pyqtgraph/colors/maps/CET-D1.csv @@ -0,0 +1,256 @@ +0.128,0.316,0.858 +0.147,0.320,0.859 +0.164,0.325,0.860 +0.179,0.329,0.861 +0.194,0.333,0.862 +0.207,0.338,0.863 +0.220,0.342,0.864 +0.232,0.346,0.864 +0.243,0.351,0.865 +0.254,0.355,0.866 +0.264,0.360,0.867 +0.274,0.364,0.868 +0.284,0.369,0.869 +0.294,0.373,0.869 +0.303,0.377,0.870 +0.312,0.382,0.871 +0.321,0.386,0.872 +0.329,0.391,0.873 +0.337,0.395,0.874 +0.346,0.400,0.874 +0.354,0.404,0.875 +0.362,0.409,0.876 +0.369,0.414,0.877 +0.377,0.418,0.878 +0.384,0.423,0.878 +0.392,0.427,0.879 +0.399,0.432,0.880 +0.406,0.436,0.881 +0.413,0.441,0.882 +0.420,0.446,0.882 +0.427,0.450,0.883 +0.434,0.455,0.884 +0.440,0.460,0.885 +0.447,0.464,0.886 +0.454,0.469,0.886 +0.460,0.474,0.887 +0.467,0.478,0.888 +0.473,0.483,0.889 +0.479,0.488,0.889 +0.485,0.492,0.890 +0.492,0.497,0.891 +0.498,0.502,0.892 +0.504,0.507,0.892 +0.510,0.511,0.893 +0.516,0.516,0.894 +0.522,0.521,0.895 +0.528,0.526,0.895 +0.534,0.530,0.896 +0.540,0.535,0.897 +0.545,0.540,0.898 +0.551,0.545,0.898 +0.557,0.550,0.899 +0.563,0.555,0.900 +0.568,0.559,0.900 +0.574,0.564,0.901 +0.580,0.569,0.902 +0.585,0.574,0.903 +0.591,0.579,0.903 +0.596,0.584,0.904 +0.602,0.588,0.905 +0.607,0.593,0.905 +0.613,0.598,0.906 +0.618,0.603,0.907 +0.623,0.608,0.907 +0.629,0.613,0.908 +0.634,0.618,0.909 +0.639,0.623,0.909 +0.645,0.628,0.910 +0.650,0.633,0.911 +0.655,0.638,0.911 +0.660,0.643,0.912 +0.666,0.648,0.913 +0.671,0.653,0.913 +0.676,0.658,0.914 +0.681,0.663,0.915 +0.686,0.668,0.915 +0.691,0.673,0.916 +0.697,0.678,0.917 +0.702,0.683,0.917 +0.707,0.688,0.918 +0.712,0.693,0.918 +0.717,0.698,0.919 +0.722,0.703,0.920 +0.727,0.708,0.920 +0.732,0.713,0.921 +0.737,0.718,0.921 +0.742,0.723,0.922 +0.747,0.728,0.923 +0.752,0.733,0.923 +0.757,0.738,0.924 +0.762,0.743,0.924 +0.766,0.748,0.925 +0.771,0.754,0.926 +0.776,0.759,0.926 +0.781,0.764,0.927 +0.786,0.769,0.927 +0.791,0.774,0.928 +0.796,0.779,0.928 +0.801,0.784,0.929 +0.805,0.789,0.929 +0.810,0.795,0.930 +0.815,0.800,0.930 +0.820,0.805,0.931 +0.825,0.810,0.932 +0.829,0.815,0.932 +0.834,0.821,0.933 +0.839,0.826,0.933 +0.844,0.831,0.934 +0.848,0.836,0.934 +0.853,0.841,0.935 +0.858,0.846,0.935 +0.863,0.852,0.935 +0.867,0.857,0.936 +0.872,0.862,0.936 +0.877,0.867,0.936 +0.881,0.872,0.937 +0.886,0.876,0.937 +0.890,0.881,0.936 +0.895,0.885,0.936 +0.899,0.890,0.936 +0.903,0.893,0.935 +0.908,0.897,0.934 +0.912,0.900,0.932 +0.916,0.903,0.931 +0.919,0.905,0.928 +0.923,0.906,0.926 +0.926,0.907,0.923 +0.929,0.907,0.919 +0.932,0.907,0.915 +0.935,0.905,0.911 +0.937,0.904,0.906 +0.939,0.901,0.900 +0.941,0.898,0.895 +0.942,0.895,0.888 +0.944,0.891,0.882 +0.945,0.887,0.875 +0.946,0.882,0.869 +0.946,0.877,0.861 +0.947,0.872,0.854 +0.947,0.866,0.847 +0.948,0.861,0.840 +0.948,0.855,0.832 +0.948,0.849,0.825 +0.948,0.843,0.817 +0.948,0.837,0.810 +0.948,0.831,0.802 +0.948,0.825,0.794 +0.948,0.819,0.787 +0.948,0.813,0.779 +0.947,0.807,0.772 +0.947,0.800,0.764 +0.947,0.794,0.757 +0.947,0.788,0.749 +0.946,0.782,0.742 +0.946,0.776,0.734 +0.945,0.770,0.727 +0.945,0.764,0.719 +0.944,0.758,0.712 +0.944,0.752,0.704 +0.943,0.746,0.697 +0.942,0.740,0.689 +0.942,0.733,0.682 +0.941,0.727,0.675 +0.940,0.721,0.667 +0.940,0.715,0.660 +0.939,0.709,0.653 +0.938,0.703,0.645 +0.937,0.697,0.638 +0.936,0.691,0.631 +0.935,0.685,0.623 +0.934,0.679,0.616 +0.933,0.673,0.609 +0.932,0.666,0.601 +0.931,0.660,0.594 +0.930,0.654,0.587 +0.929,0.648,0.580 +0.928,0.642,0.573 +0.927,0.636,0.565 +0.925,0.630,0.558 +0.924,0.624,0.551 +0.923,0.618,0.544 +0.922,0.612,0.537 +0.920,0.605,0.530 +0.919,0.599,0.522 +0.917,0.593,0.515 +0.916,0.587,0.508 +0.915,0.581,0.501 +0.913,0.575,0.494 +0.912,0.569,0.487 +0.910,0.562,0.480 +0.908,0.556,0.473 +0.907,0.550,0.466 +0.905,0.544,0.459 +0.904,0.538,0.452 +0.902,0.531,0.445 +0.900,0.525,0.438 +0.898,0.519,0.431 +0.897,0.513,0.424 +0.895,0.507,0.417 +0.893,0.500,0.410 +0.891,0.494,0.403 +0.889,0.488,0.396 +0.887,0.481,0.390 +0.885,0.475,0.383 +0.884,0.469,0.376 +0.882,0.463,0.369 +0.880,0.456,0.362 +0.878,0.450,0.355 +0.875,0.443,0.349 +0.873,0.437,0.342 +0.871,0.431,0.335 +0.869,0.424,0.328 +0.867,0.418,0.322 +0.865,0.411,0.315 +0.863,0.405,0.308 +0.860,0.398,0.301 +0.858,0.391,0.295 +0.856,0.385,0.288 +0.854,0.378,0.281 +0.851,0.372,0.275 +0.849,0.365,0.268 +0.846,0.358,0.261 +0.844,0.351,0.255 +0.842,0.344,0.248 +0.839,0.337,0.241 +0.837,0.331,0.235 +0.834,0.323,0.228 +0.832,0.316,0.222 +0.829,0.309,0.215 +0.827,0.302,0.208 +0.824,0.295,0.202 +0.821,0.287,0.195 +0.819,0.280,0.188 +0.816,0.272,0.182 +0.813,0.265,0.175 +0.811,0.257,0.169 +0.808,0.249,0.162 +0.805,0.241,0.155 +0.803,0.233,0.148 +0.800,0.224,0.142 +0.797,0.216,0.135 +0.794,0.207,0.128 +0.791,0.198,0.121 +0.788,0.189,0.115 +0.786,0.179,0.108 +0.783,0.169,0.101 +0.780,0.159,0.093 +0.777,0.148,0.086 +0.774,0.137,0.079 +0.771,0.124,0.071 +0.768,0.111,0.064 +0.765,0.096,0.056 +0.762,0.080,0.047 +0.759,0.061,0.039 +0.756,0.036,0.030 +0.752,0.008,0.022 diff --git a/pyqtgraph/colors/maps/CET-D10.csv b/pyqtgraph/colors/maps/CET-D10.csv new file mode 100644 index 00000000..cbf4feae --- /dev/null +++ b/pyqtgraph/colors/maps/CET-D10.csv @@ -0,0 +1,256 @@ +0.000,0.851,1.000 +0.000,0.852,1.000 +0.056,0.853,1.000 +0.100,0.854,1.000 +0.132,0.856,1.000 +0.157,0.857,1.000 +0.179,0.858,1.000 +0.198,0.859,1.000 +0.216,0.860,1.000 +0.232,0.862,1.000 +0.248,0.863,1.000 +0.262,0.864,1.000 +0.275,0.865,1.000 +0.288,0.867,1.000 +0.300,0.868,1.000 +0.312,0.869,1.000 +0.323,0.870,1.000 +0.334,0.871,1.000 +0.345,0.873,1.000 +0.355,0.874,1.000 +0.365,0.875,1.000 +0.375,0.876,1.000 +0.384,0.877,1.000 +0.394,0.879,1.000 +0.403,0.880,1.000 +0.411,0.881,1.000 +0.420,0.882,1.000 +0.429,0.883,1.000 +0.437,0.885,1.000 +0.445,0.886,1.000 +0.453,0.887,1.000 +0.461,0.888,1.000 +0.469,0.889,1.000 +0.477,0.891,1.000 +0.484,0.892,1.000 +0.492,0.893,1.000 +0.499,0.894,1.000 +0.506,0.895,1.000 +0.513,0.897,1.000 +0.520,0.898,1.000 +0.527,0.899,1.000 +0.534,0.900,1.000 +0.541,0.901,1.000 +0.548,0.903,1.000 +0.555,0.904,1.000 +0.561,0.905,1.000 +0.568,0.906,1.000 +0.574,0.907,1.000 +0.581,0.908,1.000 +0.587,0.910,1.000 +0.594,0.911,1.000 +0.600,0.912,1.000 +0.606,0.913,1.000 +0.612,0.914,1.000 +0.618,0.916,1.000 +0.625,0.917,1.000 +0.631,0.918,1.000 +0.637,0.919,1.000 +0.643,0.920,1.000 +0.649,0.921,1.000 +0.654,0.923,1.000 +0.660,0.924,1.000 +0.666,0.925,1.000 +0.672,0.926,1.000 +0.678,0.927,1.000 +0.683,0.928,1.000 +0.689,0.930,1.000 +0.695,0.931,1.000 +0.700,0.932,1.000 +0.706,0.933,1.000 +0.711,0.934,1.000 +0.717,0.935,1.000 +0.722,0.937,1.000 +0.728,0.938,1.000 +0.733,0.939,1.000 +0.739,0.940,1.000 +0.744,0.941,1.000 +0.749,0.942,1.000 +0.755,0.944,1.000 +0.760,0.945,1.000 +0.765,0.946,1.000 +0.771,0.947,1.000 +0.776,0.948,1.000 +0.781,0.949,1.000 +0.786,0.950,1.000 +0.792,0.952,1.000 +0.797,0.953,1.000 +0.802,0.954,1.000 +0.807,0.955,1.000 +0.812,0.956,1.000 +0.817,0.957,1.000 +0.822,0.958,1.000 +0.827,0.960,1.000 +0.833,0.961,1.000 +0.838,0.962,1.000 +0.843,0.963,1.000 +0.848,0.964,1.000 +0.853,0.965,1.000 +0.858,0.966,1.000 +0.863,0.968,1.000 +0.867,0.969,1.000 +0.872,0.970,1.000 +0.877,0.971,1.000 +0.882,0.972,1.000 +0.887,0.973,1.000 +0.892,0.974,1.000 +0.897,0.976,1.000 +0.902,0.977,1.000 +0.907,0.978,1.000 +0.911,0.979,1.000 +0.916,0.980,1.000 +0.921,0.981,1.000 +0.926,0.982,1.000 +0.931,0.984,1.000 +0.935,0.985,1.000 +0.940,0.986,1.000 +0.945,0.987,1.000 +0.950,0.988,1.000 +0.954,0.989,1.000 +0.959,0.990,1.000 +0.964,0.991,1.000 +0.968,0.993,1.000 +0.973,0.994,1.000 +0.978,0.995,1.000 +0.982,0.996,1.000 +0.987,0.997,1.000 +0.991,0.998,1.000 +0.997,0.999,1.000 +1.000,0.998,1.000 +1.000,0.996,0.999 +1.000,0.993,0.999 +1.000,0.991,0.998 +1.000,0.988,0.998 +1.000,0.986,0.998 +1.000,0.983,0.997 +1.000,0.981,0.997 +1.000,0.979,0.996 +1.000,0.976,0.996 +1.000,0.974,0.995 +1.000,0.971,0.995 +1.000,0.969,0.994 +1.000,0.966,0.994 +1.000,0.964,0.994 +1.000,0.961,0.993 +1.000,0.959,0.993 +1.000,0.956,0.992 +1.000,0.954,0.992 +1.000,0.952,0.991 +1.000,0.949,0.991 +1.000,0.947,0.991 +1.000,0.944,0.990 +1.000,0.942,0.990 +1.000,0.939,0.989 +1.000,0.937,0.989 +1.000,0.934,0.988 +0.999,0.932,0.988 +0.999,0.929,0.987 +0.999,0.927,0.987 +0.999,0.924,0.987 +0.999,0.922,0.986 +0.999,0.919,0.986 +0.999,0.917,0.985 +0.999,0.915,0.985 +0.999,0.912,0.984 +0.999,0.910,0.984 +0.999,0.907,0.983 +0.999,0.905,0.983 +0.999,0.902,0.983 +0.998,0.900,0.982 +0.998,0.897,0.982 +0.998,0.895,0.981 +0.998,0.892,0.981 +0.998,0.890,0.980 +0.998,0.887,0.980 +0.998,0.885,0.979 +0.998,0.882,0.979 +0.998,0.880,0.978 +0.997,0.877,0.978 +0.997,0.875,0.978 +0.997,0.872,0.977 +0.997,0.870,0.977 +0.997,0.868,0.976 +0.997,0.865,0.976 +0.997,0.863,0.975 +0.997,0.860,0.975 +0.996,0.858,0.974 +0.996,0.855,0.974 +0.996,0.853,0.974 +0.996,0.850,0.973 +0.996,0.848,0.973 +0.996,0.845,0.972 +0.996,0.843,0.972 +0.995,0.840,0.971 +0.995,0.838,0.971 +0.995,0.835,0.970 +0.995,0.833,0.970 +0.995,0.830,0.969 +0.995,0.828,0.969 +0.994,0.825,0.968 +0.994,0.823,0.968 +0.994,0.820,0.968 +0.994,0.818,0.967 +0.994,0.815,0.967 +0.993,0.813,0.966 +0.993,0.810,0.966 +0.993,0.808,0.965 +0.993,0.805,0.965 +0.993,0.803,0.964 +0.992,0.800,0.964 +0.992,0.798,0.963 +0.992,0.795,0.963 +0.992,0.793,0.962 +0.992,0.790,0.962 +0.991,0.788,0.962 +0.991,0.785,0.961 +0.991,0.783,0.961 +0.991,0.780,0.960 +0.990,0.777,0.960 +0.990,0.775,0.959 +0.990,0.772,0.959 +0.990,0.770,0.958 +0.990,0.767,0.958 +0.989,0.765,0.957 +0.989,0.762,0.957 +0.989,0.760,0.956 +0.989,0.757,0.956 +0.988,0.755,0.955 +0.988,0.752,0.955 +0.988,0.750,0.954 +0.988,0.747,0.954 +0.987,0.745,0.954 +0.987,0.742,0.953 +0.987,0.739,0.953 +0.987,0.737,0.952 +0.986,0.734,0.952 +0.986,0.732,0.951 +0.986,0.729,0.951 +0.985,0.727,0.950 +0.985,0.724,0.950 +0.985,0.722,0.949 +0.985,0.719,0.949 +0.984,0.717,0.948 +0.984,0.714,0.948 +0.984,0.711,0.947 +0.983,0.709,0.947 +0.983,0.706,0.946 +0.983,0.704,0.946 +0.982,0.701,0.945 +0.982,0.699,0.945 +0.982,0.696,0.944 +0.982,0.693,0.944 +0.981,0.691,0.943 +0.981,0.688,0.943 +0.981,0.686,0.943 +0.980,0.683,0.942 +0.980,0.680,0.942 diff --git a/pyqtgraph/colors/maps/CET-D11.csv b/pyqtgraph/colors/maps/CET-D11.csv new file mode 100644 index 00000000..881e843f --- /dev/null +++ b/pyqtgraph/colors/maps/CET-D11.csv @@ -0,0 +1,256 @@ +0.000,0.715,1.000 +0.000,0.715,1.000 +0.000,0.715,1.000 +0.000,0.714,1.000 +0.024,0.714,1.000 +0.068,0.713,0.999 +0.098,0.713,0.996 +0.121,0.713,0.994 +0.140,0.712,0.991 +0.157,0.712,0.988 +0.172,0.712,0.986 +0.186,0.711,0.983 +0.199,0.711,0.980 +0.211,0.711,0.977 +0.222,0.710,0.975 +0.232,0.710,0.972 +0.242,0.709,0.969 +0.252,0.709,0.967 +0.261,0.709,0.964 +0.270,0.708,0.961 +0.278,0.708,0.958 +0.286,0.708,0.956 +0.294,0.707,0.953 +0.301,0.707,0.950 +0.309,0.707,0.948 +0.316,0.706,0.945 +0.323,0.706,0.942 +0.329,0.705,0.939 +0.336,0.705,0.937 +0.342,0.705,0.934 +0.348,0.704,0.931 +0.355,0.704,0.929 +0.360,0.704,0.926 +0.366,0.703,0.923 +0.372,0.703,0.921 +0.377,0.703,0.918 +0.383,0.702,0.915 +0.388,0.702,0.912 +0.393,0.702,0.910 +0.398,0.701,0.907 +0.403,0.701,0.904 +0.408,0.701,0.902 +0.413,0.700,0.899 +0.418,0.700,0.896 +0.423,0.699,0.894 +0.427,0.699,0.891 +0.432,0.699,0.888 +0.436,0.698,0.886 +0.441,0.698,0.883 +0.445,0.698,0.880 +0.449,0.697,0.878 +0.453,0.697,0.875 +0.458,0.697,0.872 +0.462,0.696,0.869 +0.466,0.696,0.867 +0.470,0.696,0.864 +0.473,0.695,0.861 +0.477,0.695,0.859 +0.481,0.695,0.856 +0.485,0.694,0.853 +0.489,0.694,0.851 +0.492,0.693,0.848 +0.496,0.693,0.845 +0.500,0.693,0.843 +0.503,0.692,0.840 +0.507,0.692,0.837 +0.510,0.692,0.835 +0.513,0.691,0.832 +0.517,0.691,0.829 +0.520,0.691,0.827 +0.524,0.690,0.824 +0.527,0.690,0.821 +0.530,0.690,0.819 +0.533,0.689,0.816 +0.536,0.689,0.813 +0.540,0.689,0.811 +0.543,0.688,0.808 +0.546,0.688,0.805 +0.549,0.688,0.803 +0.552,0.687,0.800 +0.555,0.687,0.797 +0.558,0.687,0.795 +0.561,0.686,0.792 +0.564,0.686,0.789 +0.566,0.686,0.787 +0.569,0.685,0.784 +0.572,0.685,0.781 +0.575,0.685,0.779 +0.578,0.684,0.776 +0.580,0.684,0.773 +0.583,0.683,0.771 +0.586,0.683,0.768 +0.588,0.683,0.765 +0.591,0.682,0.763 +0.594,0.682,0.760 +0.596,0.682,0.757 +0.599,0.681,0.755 +0.601,0.681,0.752 +0.604,0.681,0.749 +0.607,0.680,0.747 +0.609,0.680,0.744 +0.612,0.680,0.741 +0.614,0.679,0.739 +0.616,0.679,0.736 +0.619,0.679,0.733 +0.621,0.678,0.731 +0.624,0.678,0.728 +0.626,0.678,0.725 +0.628,0.677,0.723 +0.631,0.677,0.720 +0.633,0.677,0.717 +0.635,0.676,0.715 +0.638,0.676,0.712 +0.640,0.676,0.709 +0.642,0.675,0.707 +0.644,0.675,0.704 +0.647,0.675,0.701 +0.649,0.674,0.699 +0.651,0.674,0.696 +0.653,0.674,0.694 +0.656,0.673,0.691 +0.658,0.673,0.689 +0.660,0.672,0.686 +0.662,0.672,0.684 +0.665,0.671,0.681 +0.667,0.671,0.679 +0.670,0.671,0.676 +0.672,0.670,0.674 +0.675,0.670,0.672 +0.677,0.669,0.669 +0.680,0.668,0.667 +0.682,0.668,0.665 +0.685,0.667,0.663 +0.688,0.667,0.661 +0.691,0.666,0.659 +0.693,0.665,0.657 +0.696,0.665,0.655 +0.699,0.664,0.653 +0.702,0.663,0.651 +0.704,0.663,0.649 +0.707,0.662,0.647 +0.710,0.661,0.645 +0.713,0.660,0.643 +0.715,0.660,0.641 +0.718,0.659,0.639 +0.721,0.658,0.637 +0.724,0.658,0.635 +0.726,0.657,0.633 +0.729,0.656,0.631 +0.732,0.655,0.630 +0.734,0.655,0.628 +0.737,0.654,0.626 +0.740,0.653,0.624 +0.742,0.652,0.622 +0.745,0.652,0.620 +0.748,0.651,0.618 +0.750,0.650,0.616 +0.753,0.649,0.614 +0.755,0.649,0.612 +0.758,0.648,0.610 +0.761,0.647,0.609 +0.763,0.646,0.607 +0.766,0.646,0.605 +0.768,0.645,0.603 +0.771,0.644,0.601 +0.773,0.643,0.599 +0.776,0.643,0.597 +0.778,0.642,0.595 +0.781,0.641,0.593 +0.783,0.640,0.591 +0.786,0.639,0.589 +0.788,0.639,0.588 +0.790,0.638,0.586 +0.793,0.637,0.584 +0.795,0.636,0.582 +0.798,0.636,0.580 +0.800,0.635,0.578 +0.802,0.634,0.576 +0.805,0.633,0.574 +0.807,0.632,0.572 +0.810,0.632,0.570 +0.812,0.631,0.568 +0.814,0.630,0.567 +0.817,0.629,0.565 +0.819,0.628,0.563 +0.821,0.628,0.561 +0.824,0.627,0.559 +0.826,0.626,0.557 +0.828,0.625,0.555 +0.830,0.624,0.553 +0.833,0.623,0.551 +0.835,0.623,0.549 +0.837,0.622,0.547 +0.839,0.621,0.546 +0.842,0.620,0.544 +0.844,0.619,0.542 +0.846,0.619,0.540 +0.848,0.618,0.538 +0.851,0.617,0.536 +0.853,0.616,0.534 +0.855,0.615,0.532 +0.857,0.614,0.530 +0.859,0.613,0.528 +0.862,0.613,0.527 +0.864,0.612,0.525 +0.866,0.611,0.523 +0.868,0.610,0.521 +0.870,0.609,0.519 +0.872,0.608,0.517 +0.874,0.608,0.515 +0.877,0.607,0.513 +0.879,0.606,0.511 +0.881,0.605,0.509 +0.883,0.604,0.507 +0.885,0.603,0.505 +0.887,0.602,0.504 +0.889,0.601,0.502 +0.891,0.601,0.500 +0.893,0.600,0.498 +0.895,0.599,0.496 +0.898,0.598,0.494 +0.900,0.597,0.492 +0.902,0.596,0.490 +0.904,0.595,0.488 +0.906,0.594,0.486 +0.908,0.593,0.484 +0.910,0.593,0.483 +0.912,0.592,0.481 +0.914,0.591,0.479 +0.916,0.590,0.477 +0.918,0.589,0.475 +0.920,0.588,0.473 +0.922,0.587,0.471 +0.924,0.586,0.469 +0.926,0.585,0.467 +0.928,0.584,0.465 +0.930,0.583,0.463 +0.932,0.582,0.461 +0.934,0.581,0.460 +0.936,0.581,0.458 +0.938,0.580,0.456 +0.940,0.579,0.454 +0.942,0.578,0.452 +0.943,0.577,0.450 +0.945,0.576,0.448 +0.947,0.575,0.446 +0.949,0.574,0.444 +0.951,0.573,0.442 +0.953,0.572,0.440 +0.955,0.571,0.438 +0.957,0.570,0.436 +0.959,0.569,0.434 +0.961,0.568,0.433 +0.963,0.567,0.431 +0.965,0.566,0.429 +0.966,0.565,0.427 diff --git a/pyqtgraph/colors/maps/CET-D12.csv b/pyqtgraph/colors/maps/CET-D12.csv new file mode 100644 index 00000000..3e39ba1b --- /dev/null +++ b/pyqtgraph/colors/maps/CET-D12.csv @@ -0,0 +1,256 @@ +0.000,0.787,1.000 +0.000,0.786,1.000 +0.000,0.786,0.998 +0.000,0.785,0.995 +0.000,0.785,0.993 +0.000,0.784,0.991 +0.000,0.784,0.989 +0.051,0.783,0.987 +0.088,0.783,0.984 +0.115,0.782,0.982 +0.137,0.782,0.980 +0.156,0.781,0.978 +0.173,0.781,0.976 +0.188,0.781,0.973 +0.202,0.780,0.971 +0.215,0.780,0.969 +0.227,0.779,0.967 +0.238,0.779,0.965 +0.249,0.778,0.962 +0.259,0.778,0.960 +0.269,0.777,0.958 +0.279,0.777,0.956 +0.288,0.776,0.954 +0.296,0.776,0.951 +0.305,0.775,0.949 +0.313,0.775,0.947 +0.321,0.774,0.945 +0.328,0.774,0.943 +0.336,0.773,0.940 +0.343,0.773,0.938 +0.350,0.773,0.936 +0.357,0.772,0.934 +0.364,0.772,0.932 +0.370,0.771,0.930 +0.377,0.771,0.927 +0.383,0.770,0.925 +0.389,0.770,0.923 +0.395,0.769,0.921 +0.401,0.769,0.919 +0.407,0.768,0.916 +0.412,0.768,0.914 +0.418,0.767,0.912 +0.423,0.767,0.910 +0.429,0.766,0.908 +0.434,0.766,0.905 +0.439,0.765,0.903 +0.444,0.765,0.901 +0.449,0.764,0.899 +0.454,0.764,0.897 +0.459,0.763,0.895 +0.464,0.763,0.892 +0.469,0.762,0.890 +0.474,0.762,0.888 +0.478,0.761,0.886 +0.483,0.761,0.884 +0.487,0.761,0.881 +0.492,0.760,0.879 +0.496,0.760,0.877 +0.500,0.759,0.875 +0.505,0.759,0.873 +0.509,0.758,0.871 +0.513,0.758,0.868 +0.517,0.757,0.866 +0.521,0.757,0.864 +0.525,0.756,0.862 +0.529,0.756,0.860 +0.533,0.755,0.858 +0.537,0.755,0.855 +0.541,0.754,0.853 +0.545,0.754,0.851 +0.549,0.753,0.849 +0.553,0.753,0.847 +0.556,0.752,0.845 +0.560,0.752,0.842 +0.564,0.751,0.840 +0.567,0.751,0.838 +0.571,0.750,0.836 +0.574,0.750,0.834 +0.578,0.749,0.831 +0.582,0.749,0.829 +0.585,0.748,0.827 +0.588,0.748,0.825 +0.592,0.747,0.823 +0.595,0.747,0.821 +0.599,0.746,0.818 +0.602,0.746,0.816 +0.605,0.745,0.814 +0.608,0.745,0.812 +0.612,0.744,0.810 +0.615,0.744,0.808 +0.618,0.743,0.805 +0.621,0.743,0.803 +0.624,0.742,0.801 +0.628,0.742,0.799 +0.631,0.741,0.797 +0.634,0.741,0.795 +0.637,0.740,0.792 +0.640,0.740,0.790 +0.643,0.739,0.788 +0.646,0.739,0.786 +0.649,0.738,0.784 +0.652,0.738,0.782 +0.655,0.737,0.780 +0.657,0.737,0.777 +0.660,0.736,0.775 +0.663,0.736,0.773 +0.666,0.735,0.771 +0.669,0.735,0.769 +0.672,0.734,0.767 +0.674,0.734,0.764 +0.677,0.733,0.762 +0.680,0.733,0.760 +0.683,0.732,0.758 +0.685,0.732,0.756 +0.688,0.731,0.754 +0.691,0.731,0.752 +0.693,0.730,0.750 +0.696,0.729,0.748 +0.699,0.729,0.746 +0.701,0.728,0.744 +0.704,0.728,0.742 +0.706,0.727,0.741 +0.709,0.727,0.739 +0.711,0.726,0.738 +0.714,0.726,0.737 +0.716,0.725,0.736 +0.718,0.724,0.735 +0.721,0.724,0.734 +0.723,0.723,0.734 +0.725,0.723,0.734 +0.727,0.722,0.734 +0.729,0.721,0.734 +0.731,0.721,0.734 +0.733,0.720,0.735 +0.735,0.719,0.735 +0.737,0.719,0.736 +0.739,0.718,0.737 +0.741,0.717,0.738 +0.743,0.717,0.739 +0.744,0.716,0.740 +0.746,0.715,0.741 +0.748,0.715,0.742 +0.750,0.714,0.744 +0.751,0.713,0.745 +0.753,0.713,0.746 +0.755,0.712,0.747 +0.757,0.711,0.749 +0.758,0.710,0.750 +0.760,0.710,0.751 +0.762,0.709,0.753 +0.763,0.708,0.754 +0.765,0.708,0.755 +0.767,0.707,0.757 +0.769,0.706,0.758 +0.770,0.706,0.759 +0.772,0.705,0.761 +0.774,0.704,0.762 +0.775,0.703,0.763 +0.777,0.703,0.765 +0.779,0.702,0.766 +0.780,0.701,0.767 +0.782,0.701,0.769 +0.784,0.700,0.770 +0.785,0.699,0.771 +0.787,0.698,0.773 +0.789,0.698,0.774 +0.790,0.697,0.775 +0.792,0.696,0.777 +0.794,0.695,0.778 +0.795,0.695,0.779 +0.797,0.694,0.781 +0.799,0.693,0.782 +0.800,0.692,0.783 +0.802,0.692,0.785 +0.804,0.691,0.786 +0.805,0.690,0.787 +0.807,0.689,0.788 +0.809,0.689,0.790 +0.810,0.688,0.791 +0.812,0.687,0.792 +0.814,0.686,0.794 +0.815,0.686,0.795 +0.817,0.685,0.796 +0.819,0.684,0.798 +0.820,0.683,0.799 +0.822,0.682,0.800 +0.823,0.682,0.802 +0.825,0.681,0.803 +0.827,0.680,0.804 +0.828,0.679,0.806 +0.830,0.678,0.807 +0.831,0.678,0.808 +0.833,0.677,0.810 +0.835,0.676,0.811 +0.836,0.675,0.812 +0.838,0.675,0.814 +0.840,0.674,0.815 +0.841,0.673,0.816 +0.843,0.672,0.818 +0.844,0.671,0.819 +0.846,0.670,0.820 +0.848,0.670,0.822 +0.849,0.669,0.823 +0.851,0.668,0.824 +0.852,0.667,0.825 +0.854,0.666,0.827 +0.855,0.666,0.828 +0.857,0.665,0.829 +0.859,0.664,0.831 +0.860,0.663,0.832 +0.862,0.662,0.833 +0.863,0.661,0.835 +0.865,0.660,0.836 +0.866,0.660,0.837 +0.868,0.659,0.839 +0.870,0.658,0.840 +0.871,0.657,0.841 +0.873,0.656,0.843 +0.874,0.655,0.844 +0.876,0.654,0.845 +0.877,0.654,0.847 +0.879,0.653,0.848 +0.881,0.652,0.849 +0.882,0.651,0.851 +0.884,0.650,0.852 +0.885,0.649,0.853 +0.887,0.648,0.855 +0.888,0.647,0.856 +0.890,0.647,0.857 +0.891,0.646,0.859 +0.893,0.645,0.860 +0.895,0.644,0.861 +0.896,0.643,0.862 +0.898,0.642,0.864 +0.899,0.641,0.865 +0.901,0.640,0.866 +0.902,0.639,0.868 +0.904,0.638,0.869 +0.905,0.638,0.870 +0.907,0.637,0.872 +0.908,0.636,0.873 +0.910,0.635,0.874 +0.911,0.634,0.876 +0.913,0.633,0.877 +0.914,0.632,0.878 +0.916,0.631,0.880 +0.917,0.630,0.881 +0.919,0.629,0.882 +0.920,0.628,0.884 +0.922,0.627,0.885 +0.924,0.626,0.886 +0.925,0.625,0.888 +0.927,0.624,0.889 +0.928,0.623,0.890 +0.930,0.622,0.892 +0.931,0.621,0.893 diff --git a/pyqtgraph/colors/maps/CET-D13.csv b/pyqtgraph/colors/maps/CET-D13.csv new file mode 100644 index 00000000..6f569c8b --- /dev/null +++ b/pyqtgraph/colors/maps/CET-D13.csv @@ -0,0 +1,256 @@ +0.066,0.176,0.408 +0.070,0.181,0.416 +0.074,0.186,0.424 +0.078,0.191,0.433 +0.083,0.196,0.441 +0.087,0.200,0.449 +0.091,0.205,0.458 +0.095,0.210,0.466 +0.099,0.215,0.475 +0.103,0.220,0.483 +0.107,0.225,0.491 +0.111,0.230,0.500 +0.114,0.235,0.508 +0.118,0.241,0.516 +0.122,0.246,0.525 +0.126,0.251,0.533 +0.129,0.256,0.542 +0.133,0.261,0.550 +0.136,0.267,0.558 +0.140,0.272,0.567 +0.143,0.277,0.575 +0.147,0.283,0.583 +0.150,0.288,0.591 +0.154,0.294,0.600 +0.157,0.299,0.608 +0.160,0.305,0.616 +0.163,0.310,0.624 +0.166,0.316,0.633 +0.169,0.321,0.641 +0.172,0.327,0.649 +0.175,0.333,0.657 +0.178,0.338,0.665 +0.181,0.344,0.673 +0.184,0.350,0.681 +0.186,0.356,0.689 +0.189,0.362,0.697 +0.191,0.368,0.705 +0.194,0.374,0.713 +0.196,0.380,0.721 +0.198,0.386,0.729 +0.200,0.392,0.736 +0.202,0.398,0.744 +0.204,0.404,0.752 +0.206,0.410,0.759 +0.207,0.416,0.767 +0.209,0.423,0.774 +0.210,0.429,0.781 +0.211,0.436,0.789 +0.212,0.442,0.796 +0.213,0.449,0.803 +0.213,0.455,0.810 +0.214,0.462,0.817 +0.214,0.468,0.824 +0.214,0.475,0.831 +0.214,0.482,0.838 +0.213,0.489,0.844 +0.212,0.496,0.851 +0.211,0.502,0.857 +0.210,0.509,0.863 +0.208,0.517,0.869 +0.206,0.524,0.875 +0.205,0.531,0.881 +0.203,0.538,0.887 +0.200,0.545,0.892 +0.199,0.552,0.898 +0.197,0.560,0.903 +0.196,0.567,0.908 +0.195,0.574,0.913 +0.194,0.581,0.917 +0.195,0.588,0.922 +0.196,0.596,0.926 +0.198,0.603,0.931 +0.201,0.610,0.935 +0.206,0.617,0.939 +0.211,0.624,0.942 +0.217,0.631,0.946 +0.224,0.637,0.950 +0.231,0.644,0.953 +0.240,0.651,0.956 +0.249,0.658,0.959 +0.259,0.665,0.962 +0.270,0.671,0.965 +0.281,0.678,0.967 +0.293,0.684,0.970 +0.305,0.691,0.972 +0.317,0.697,0.974 +0.330,0.704,0.976 +0.343,0.710,0.978 +0.356,0.716,0.979 +0.370,0.723,0.981 +0.384,0.729,0.982 +0.398,0.735,0.983 +0.412,0.741,0.984 +0.427,0.747,0.985 +0.441,0.753,0.985 +0.456,0.759,0.986 +0.471,0.765,0.986 +0.486,0.771,0.986 +0.502,0.777,0.986 +0.517,0.783,0.986 +0.532,0.788,0.986 +0.548,0.794,0.985 +0.563,0.800,0.985 +0.579,0.805,0.984 +0.595,0.811,0.983 +0.610,0.816,0.982 +0.626,0.822,0.981 +0.641,0.827,0.979 +0.657,0.833,0.978 +0.672,0.838,0.977 +0.687,0.844,0.975 +0.702,0.849,0.974 +0.717,0.855,0.972 +0.732,0.860,0.970 +0.747,0.865,0.969 +0.761,0.871,0.967 +0.776,0.876,0.965 +0.789,0.881,0.963 +0.803,0.887,0.961 +0.816,0.892,0.959 +0.828,0.897,0.957 +0.840,0.902,0.955 +0.850,0.906,0.952 +0.859,0.910,0.949 +0.866,0.914,0.945 +0.872,0.917,0.941 +0.875,0.919,0.937 +0.876,0.921,0.932 +0.875,0.922,0.926 +0.871,0.922,0.921 +0.865,0.921,0.914 +0.857,0.920,0.908 +0.848,0.918,0.901 +0.836,0.916,0.894 +0.824,0.913,0.886 +0.810,0.910,0.879 +0.796,0.906,0.871 +0.781,0.902,0.864 +0.766,0.899,0.856 +0.750,0.895,0.848 +0.734,0.891,0.841 +0.718,0.886,0.833 +0.702,0.882,0.825 +0.685,0.878,0.818 +0.669,0.874,0.810 +0.653,0.870,0.802 +0.636,0.865,0.795 +0.620,0.861,0.787 +0.603,0.856,0.779 +0.587,0.852,0.772 +0.570,0.848,0.764 +0.554,0.843,0.756 +0.537,0.838,0.748 +0.521,0.834,0.740 +0.505,0.829,0.732 +0.489,0.824,0.724 +0.473,0.819,0.716 +0.458,0.814,0.707 +0.442,0.809,0.699 +0.427,0.804,0.690 +0.412,0.799,0.682 +0.397,0.794,0.673 +0.383,0.789,0.664 +0.368,0.783,0.655 +0.354,0.778,0.647 +0.341,0.772,0.638 +0.327,0.767,0.628 +0.314,0.761,0.619 +0.301,0.756,0.610 +0.288,0.750,0.601 +0.276,0.745,0.591 +0.264,0.739,0.581 +0.252,0.733,0.572 +0.241,0.727,0.562 +0.230,0.721,0.552 +0.220,0.715,0.542 +0.211,0.709,0.532 +0.201,0.703,0.522 +0.193,0.697,0.512 +0.185,0.691,0.502 +0.178,0.685,0.492 +0.171,0.679,0.481 +0.165,0.673,0.471 +0.160,0.667,0.460 +0.155,0.660,0.450 +0.152,0.654,0.439 +0.149,0.648,0.428 +0.146,0.641,0.418 +0.145,0.635,0.407 +0.143,0.629,0.396 +0.142,0.622,0.386 +0.142,0.616,0.375 +0.141,0.609,0.365 +0.141,0.603,0.355 +0.140,0.597,0.345 +0.140,0.590,0.335 +0.139,0.584,0.325 +0.139,0.577,0.315 +0.138,0.571,0.306 +0.137,0.564,0.297 +0.136,0.558,0.288 +0.135,0.552,0.279 +0.134,0.545,0.271 +0.132,0.539,0.263 +0.131,0.533,0.255 +0.129,0.526,0.247 +0.127,0.520,0.239 +0.125,0.514,0.232 +0.123,0.507,0.225 +0.121,0.501,0.217 +0.119,0.495,0.211 +0.116,0.488,0.204 +0.114,0.482,0.197 +0.112,0.476,0.191 +0.109,0.470,0.184 +0.107,0.463,0.178 +0.104,0.457,0.172 +0.101,0.451,0.166 +0.099,0.445,0.160 +0.096,0.438,0.154 +0.093,0.432,0.149 +0.090,0.426,0.143 +0.087,0.420,0.138 +0.084,0.414,0.132 +0.082,0.408,0.127 +0.078,0.402,0.122 +0.075,0.395,0.117 +0.072,0.389,0.112 +0.069,0.383,0.108 +0.066,0.377,0.103 +0.063,0.371,0.098 +0.060,0.365,0.094 +0.057,0.359,0.089 +0.053,0.353,0.085 +0.050,0.347,0.081 +0.047,0.341,0.076 +0.043,0.335,0.072 +0.040,0.329,0.068 +0.037,0.324,0.064 +0.033,0.318,0.060 +0.030,0.312,0.057 +0.027,0.306,0.053 +0.024,0.300,0.049 +0.021,0.294,0.045 +0.019,0.289,0.042 +0.016,0.283,0.038 +0.013,0.277,0.035 +0.011,0.271,0.032 +0.009,0.265,0.029 +0.007,0.260,0.026 +0.005,0.254,0.023 +0.004,0.248,0.020 +0.002,0.243,0.016 +0.001,0.237,0.013 +0.001,0.232,0.009 +0.000,0.226,0.006 diff --git a/pyqtgraph/colors/maps/CET-D1A.csv b/pyqtgraph/colors/maps/CET-D1A.csv new file mode 100644 index 00000000..23b03b69 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-D1A.csv @@ -0,0 +1,256 @@ +0.092,0.161,0.447 +0.093,0.165,0.458 +0.095,0.170,0.469 +0.096,0.174,0.481 +0.098,0.178,0.492 +0.099,0.182,0.504 +0.101,0.187,0.515 +0.102,0.191,0.527 +0.103,0.196,0.538 +0.104,0.200,0.550 +0.106,0.204,0.562 +0.107,0.209,0.573 +0.108,0.213,0.585 +0.109,0.218,0.597 +0.111,0.222,0.609 +0.112,0.227,0.621 +0.113,0.231,0.633 +0.114,0.236,0.645 +0.115,0.240,0.657 +0.116,0.245,0.669 +0.118,0.249,0.681 +0.119,0.254,0.693 +0.121,0.259,0.704 +0.122,0.263,0.716 +0.124,0.268,0.728 +0.127,0.273,0.740 +0.129,0.278,0.751 +0.133,0.282,0.762 +0.137,0.287,0.773 +0.141,0.292,0.784 +0.147,0.297,0.794 +0.153,0.302,0.804 +0.159,0.307,0.813 +0.167,0.312,0.822 +0.175,0.317,0.830 +0.184,0.322,0.838 +0.194,0.328,0.845 +0.203,0.333,0.852 +0.214,0.338,0.858 +0.224,0.344,0.864 +0.235,0.349,0.870 +0.246,0.355,0.875 +0.257,0.361,0.879 +0.268,0.366,0.884 +0.279,0.372,0.888 +0.290,0.378,0.892 +0.300,0.384,0.896 +0.311,0.390,0.899 +0.321,0.395,0.903 +0.332,0.401,0.906 +0.342,0.407,0.910 +0.352,0.413,0.913 +0.361,0.419,0.916 +0.371,0.425,0.920 +0.380,0.431,0.923 +0.390,0.437,0.926 +0.399,0.443,0.930 +0.408,0.449,0.933 +0.417,0.455,0.936 +0.426,0.462,0.939 +0.434,0.468,0.943 +0.443,0.474,0.946 +0.452,0.480,0.949 +0.460,0.486,0.952 +0.469,0.492,0.956 +0.477,0.498,0.959 +0.485,0.505,0.962 +0.494,0.511,0.965 +0.502,0.517,0.968 +0.510,0.523,0.970 +0.518,0.530,0.973 +0.526,0.536,0.976 +0.535,0.543,0.978 +0.543,0.549,0.980 +0.551,0.555,0.982 +0.559,0.562,0.984 +0.567,0.568,0.986 +0.576,0.575,0.987 +0.584,0.582,0.988 +0.592,0.588,0.989 +0.600,0.595,0.990 +0.608,0.602,0.990 +0.617,0.608,0.991 +0.625,0.615,0.991 +0.633,0.622,0.990 +0.641,0.629,0.990 +0.649,0.636,0.990 +0.657,0.643,0.989 +0.665,0.650,0.989 +0.672,0.657,0.988 +0.680,0.664,0.987 +0.688,0.671,0.986 +0.696,0.678,0.985 +0.703,0.685,0.985 +0.711,0.692,0.984 +0.718,0.699,0.983 +0.726,0.706,0.982 +0.733,0.713,0.981 +0.740,0.720,0.980 +0.747,0.727,0.979 +0.755,0.734,0.978 +0.762,0.742,0.977 +0.769,0.749,0.976 +0.776,0.756,0.975 +0.783,0.763,0.973 +0.790,0.770,0.972 +0.797,0.778,0.971 +0.804,0.785,0.970 +0.810,0.792,0.969 +0.817,0.799,0.968 +0.824,0.806,0.967 +0.831,0.814,0.965 +0.837,0.821,0.964 +0.844,0.828,0.963 +0.851,0.835,0.961 +0.857,0.841,0.960 +0.864,0.848,0.958 +0.871,0.854,0.956 +0.877,0.861,0.953 +0.883,0.866,0.951 +0.890,0.872,0.948 +0.896,0.876,0.944 +0.902,0.881,0.940 +0.909,0.884,0.936 +0.914,0.887,0.931 +0.920,0.889,0.926 +0.926,0.889,0.920 +0.931,0.890,0.913 +0.936,0.889,0.906 +0.941,0.887,0.898 +0.946,0.884,0.889 +0.950,0.880,0.881 +0.954,0.876,0.871 +0.958,0.871,0.861 +0.961,0.865,0.851 +0.965,0.858,0.841 +0.968,0.851,0.830 +0.970,0.844,0.820 +0.973,0.836,0.809 +0.975,0.828,0.798 +0.977,0.820,0.786 +0.979,0.811,0.775 +0.980,0.802,0.764 +0.982,0.794,0.753 +0.983,0.785,0.742 +0.984,0.776,0.730 +0.986,0.767,0.719 +0.987,0.758,0.708 +0.988,0.748,0.697 +0.988,0.739,0.686 +0.989,0.730,0.675 +0.990,0.721,0.664 +0.990,0.712,0.652 +0.991,0.703,0.641 +0.991,0.694,0.630 +0.991,0.684,0.619 +0.991,0.675,0.609 +0.991,0.666,0.598 +0.991,0.657,0.587 +0.991,0.647,0.576 +0.991,0.638,0.565 +0.991,0.629,0.554 +0.990,0.619,0.543 +0.990,0.610,0.533 +0.989,0.601,0.522 +0.989,0.591,0.511 +0.988,0.582,0.501 +0.987,0.572,0.490 +0.986,0.563,0.480 +0.985,0.554,0.470 +0.983,0.544,0.459 +0.982,0.535,0.449 +0.980,0.525,0.439 +0.978,0.516,0.429 +0.976,0.507,0.419 +0.974,0.498,0.410 +0.971,0.488,0.400 +0.969,0.479,0.391 +0.966,0.470,0.382 +0.963,0.461,0.373 +0.959,0.453,0.364 +0.956,0.444,0.356 +0.952,0.435,0.347 +0.948,0.426,0.339 +0.944,0.418,0.330 +0.940,0.409,0.322 +0.936,0.401,0.314 +0.931,0.392,0.306 +0.927,0.384,0.299 +0.922,0.375,0.291 +0.917,0.367,0.283 +0.912,0.358,0.276 +0.908,0.350,0.268 +0.903,0.341,0.260 +0.898,0.333,0.253 +0.893,0.324,0.245 +0.888,0.315,0.238 +0.883,0.306,0.230 +0.878,0.297,0.223 +0.873,0.288,0.215 +0.868,0.279,0.208 +0.863,0.270,0.200 +0.858,0.260,0.193 +0.853,0.251,0.186 +0.848,0.241,0.178 +0.843,0.231,0.171 +0.837,0.221,0.164 +0.832,0.211,0.156 +0.827,0.200,0.149 +0.821,0.190,0.142 +0.816,0.179,0.135 +0.810,0.168,0.128 +0.804,0.156,0.121 +0.798,0.145,0.114 +0.792,0.133,0.108 +0.786,0.121,0.101 +0.779,0.109,0.095 +0.772,0.097,0.090 +0.765,0.085,0.084 +0.757,0.073,0.079 +0.750,0.061,0.074 +0.742,0.049,0.070 +0.733,0.037,0.065 +0.724,0.027,0.062 +0.715,0.019,0.058 +0.706,0.012,0.056 +0.697,0.007,0.053 +0.687,0.004,0.051 +0.677,0.002,0.049 +0.667,0.001,0.047 +0.657,0.001,0.045 +0.646,0.001,0.044 +0.636,0.002,0.043 +0.625,0.003,0.042 +0.615,0.004,0.041 +0.604,0.006,0.040 +0.594,0.008,0.039 +0.583,0.009,0.038 +0.573,0.011,0.037 +0.562,0.013,0.036 +0.552,0.014,0.034 +0.542,0.016,0.033 +0.531,0.017,0.032 +0.521,0.019,0.030 +0.511,0.020,0.029 +0.500,0.021,0.027 +0.490,0.022,0.026 +0.480,0.023,0.024 +0.470,0.024,0.023 +0.460,0.025,0.021 +0.450,0.026,0.019 +0.440,0.026,0.017 +0.430,0.027,0.015 +0.420,0.027,0.013 +0.410,0.028,0.011 +0.400,0.028,0.009 diff --git a/pyqtgraph/colors/maps/CET-D2.csv b/pyqtgraph/colors/maps/CET-D2.csv new file mode 100644 index 00000000..65e14c4d --- /dev/null +++ b/pyqtgraph/colors/maps/CET-D2.csv @@ -0,0 +1,256 @@ +0.222,0.591,0.055 +0.230,0.594,0.069 +0.238,0.597,0.081 +0.245,0.600,0.093 +0.253,0.602,0.103 +0.260,0.605,0.113 +0.268,0.608,0.123 +0.275,0.611,0.132 +0.282,0.614,0.140 +0.289,0.616,0.149 +0.296,0.619,0.157 +0.303,0.622,0.165 +0.310,0.625,0.173 +0.316,0.628,0.181 +0.323,0.630,0.189 +0.329,0.633,0.196 +0.336,0.636,0.203 +0.342,0.639,0.211 +0.349,0.642,0.218 +0.355,0.644,0.225 +0.361,0.647,0.232 +0.367,0.650,0.239 +0.373,0.653,0.246 +0.380,0.655,0.253 +0.386,0.658,0.260 +0.392,0.661,0.267 +0.398,0.664,0.274 +0.404,0.667,0.280 +0.410,0.669,0.287 +0.415,0.672,0.294 +0.421,0.675,0.300 +0.427,0.678,0.307 +0.433,0.681,0.314 +0.439,0.683,0.320 +0.445,0.686,0.327 +0.450,0.689,0.333 +0.456,0.692,0.340 +0.462,0.694,0.346 +0.467,0.697,0.353 +0.473,0.700,0.359 +0.479,0.703,0.366 +0.484,0.705,0.372 +0.490,0.708,0.379 +0.496,0.711,0.385 +0.501,0.714,0.392 +0.507,0.716,0.398 +0.512,0.719,0.405 +0.518,0.722,0.411 +0.523,0.725,0.417 +0.529,0.728,0.424 +0.534,0.730,0.430 +0.540,0.733,0.437 +0.545,0.736,0.443 +0.550,0.739,0.449 +0.556,0.741,0.456 +0.561,0.744,0.462 +0.567,0.747,0.469 +0.572,0.750,0.475 +0.578,0.752,0.482 +0.583,0.755,0.488 +0.588,0.758,0.494 +0.594,0.760,0.501 +0.599,0.763,0.507 +0.604,0.766,0.514 +0.610,0.769,0.520 +0.615,0.771,0.526 +0.620,0.774,0.533 +0.626,0.777,0.539 +0.631,0.780,0.546 +0.636,0.782,0.552 +0.641,0.785,0.559 +0.647,0.788,0.565 +0.652,0.791,0.571 +0.657,0.793,0.578 +0.663,0.796,0.584 +0.668,0.799,0.591 +0.673,0.802,0.597 +0.678,0.804,0.604 +0.684,0.807,0.610 +0.689,0.810,0.617 +0.694,0.812,0.623 +0.699,0.815,0.630 +0.704,0.818,0.636 +0.710,0.821,0.643 +0.715,0.823,0.649 +0.720,0.826,0.656 +0.725,0.829,0.662 +0.730,0.832,0.669 +0.736,0.834,0.675 +0.741,0.837,0.682 +0.746,0.840,0.688 +0.751,0.842,0.695 +0.756,0.845,0.701 +0.762,0.848,0.708 +0.767,0.851,0.714 +0.772,0.853,0.721 +0.777,0.856,0.728 +0.782,0.859,0.734 +0.787,0.861,0.741 +0.793,0.864,0.747 +0.798,0.867,0.754 +0.803,0.870,0.760 +0.808,0.872,0.767 +0.813,0.875,0.774 +0.818,0.878,0.780 +0.823,0.880,0.787 +0.829,0.883,0.794 +0.834,0.886,0.800 +0.839,0.888,0.807 +0.844,0.891,0.813 +0.849,0.894,0.820 +0.854,0.897,0.827 +0.859,0.899,0.833 +0.864,0.902,0.840 +0.869,0.904,0.847 +0.874,0.907,0.853 +0.879,0.909,0.860 +0.884,0.911,0.866 +0.889,0.914,0.872 +0.893,0.915,0.878 +0.898,0.917,0.884 +0.902,0.919,0.890 +0.906,0.920,0.896 +0.910,0.921,0.901 +0.913,0.922,0.906 +0.917,0.922,0.911 +0.919,0.922,0.915 +0.922,0.921,0.919 +0.924,0.920,0.923 +0.926,0.919,0.926 +0.927,0.917,0.929 +0.928,0.915,0.931 +0.929,0.912,0.933 +0.929,0.909,0.935 +0.929,0.906,0.936 +0.929,0.903,0.937 +0.929,0.899,0.938 +0.928,0.895,0.939 +0.927,0.891,0.939 +0.926,0.887,0.939 +0.925,0.883,0.939 +0.924,0.879,0.939 +0.923,0.874,0.939 +0.921,0.870,0.939 +0.920,0.865,0.939 +0.919,0.861,0.939 +0.917,0.856,0.939 +0.916,0.852,0.938 +0.915,0.847,0.938 +0.913,0.843,0.938 +0.912,0.838,0.938 +0.910,0.834,0.937 +0.909,0.830,0.937 +0.907,0.825,0.937 +0.906,0.821,0.936 +0.905,0.816,0.936 +0.903,0.812,0.936 +0.902,0.807,0.935 +0.900,0.803,0.935 +0.899,0.798,0.935 +0.897,0.794,0.935 +0.896,0.789,0.934 +0.894,0.785,0.934 +0.893,0.780,0.934 +0.891,0.776,0.933 +0.890,0.771,0.933 +0.888,0.767,0.933 +0.886,0.762,0.932 +0.885,0.758,0.932 +0.883,0.753,0.932 +0.882,0.749,0.931 +0.880,0.744,0.931 +0.879,0.740,0.931 +0.877,0.735,0.930 +0.875,0.731,0.930 +0.874,0.726,0.930 +0.872,0.722,0.929 +0.871,0.717,0.929 +0.869,0.713,0.929 +0.867,0.708,0.928 +0.866,0.704,0.928 +0.864,0.699,0.928 +0.862,0.695,0.927 +0.861,0.690,0.927 +0.859,0.686,0.926 +0.857,0.681,0.926 +0.856,0.677,0.926 +0.854,0.672,0.925 +0.852,0.668,0.925 +0.850,0.663,0.925 +0.849,0.659,0.924 +0.847,0.654,0.924 +0.845,0.650,0.923 +0.844,0.645,0.923 +0.842,0.640,0.923 +0.840,0.636,0.922 +0.838,0.631,0.922 +0.836,0.627,0.921 +0.835,0.622,0.921 +0.833,0.618,0.921 +0.831,0.613,0.920 +0.829,0.609,0.920 +0.828,0.604,0.919 +0.826,0.599,0.919 +0.824,0.595,0.919 +0.822,0.590,0.918 +0.820,0.586,0.918 +0.818,0.581,0.917 +0.816,0.577,0.917 +0.815,0.572,0.917 +0.813,0.567,0.916 +0.811,0.563,0.916 +0.809,0.558,0.915 +0.807,0.554,0.915 +0.805,0.549,0.914 +0.803,0.544,0.914 +0.801,0.540,0.914 +0.799,0.535,0.913 +0.797,0.530,0.913 +0.796,0.526,0.912 +0.794,0.521,0.912 +0.792,0.516,0.911 +0.790,0.512,0.911 +0.788,0.507,0.910 +0.786,0.502,0.910 +0.784,0.498,0.910 +0.782,0.493,0.909 +0.780,0.488,0.909 +0.778,0.483,0.908 +0.776,0.479,0.908 +0.774,0.474,0.907 +0.772,0.469,0.907 +0.769,0.464,0.906 +0.767,0.460,0.906 +0.765,0.455,0.905 +0.763,0.450,0.905 +0.761,0.445,0.904 +0.759,0.440,0.904 +0.757,0.435,0.903 +0.755,0.431,0.903 +0.753,0.426,0.902 +0.751,0.421,0.902 +0.749,0.416,0.902 +0.746,0.411,0.901 +0.744,0.406,0.901 +0.742,0.401,0.900 +0.740,0.396,0.900 +0.738,0.391,0.899 +0.736,0.386,0.899 +0.733,0.381,0.898 +0.731,0.376,0.898 +0.729,0.371,0.897 +0.727,0.365,0.897 +0.724,0.360,0.896 +0.722,0.355,0.895 +0.720,0.350,0.895 diff --git a/pyqtgraph/colors/maps/CET-D3.csv b/pyqtgraph/colors/maps/CET-D3.csv new file mode 100644 index 00000000..20b5477d --- /dev/null +++ b/pyqtgraph/colors/maps/CET-D3.csv @@ -0,0 +1,256 @@ +0.222,0.591,0.055 +0.230,0.594,0.069 +0.238,0.597,0.081 +0.245,0.600,0.093 +0.253,0.602,0.103 +0.260,0.605,0.113 +0.268,0.608,0.123 +0.275,0.611,0.132 +0.282,0.614,0.140 +0.289,0.616,0.149 +0.296,0.619,0.157 +0.303,0.622,0.165 +0.310,0.625,0.173 +0.316,0.628,0.181 +0.323,0.630,0.189 +0.329,0.633,0.196 +0.336,0.636,0.203 +0.342,0.639,0.211 +0.349,0.642,0.218 +0.355,0.644,0.225 +0.361,0.647,0.232 +0.367,0.650,0.239 +0.373,0.653,0.246 +0.380,0.655,0.253 +0.386,0.658,0.260 +0.392,0.661,0.267 +0.398,0.664,0.274 +0.404,0.667,0.280 +0.410,0.669,0.287 +0.415,0.672,0.294 +0.421,0.675,0.300 +0.427,0.678,0.307 +0.433,0.681,0.314 +0.439,0.683,0.320 +0.445,0.686,0.327 +0.450,0.689,0.333 +0.456,0.692,0.340 +0.462,0.694,0.346 +0.467,0.697,0.353 +0.473,0.700,0.359 +0.479,0.703,0.366 +0.484,0.705,0.372 +0.490,0.708,0.379 +0.496,0.711,0.385 +0.501,0.714,0.392 +0.507,0.716,0.398 +0.512,0.719,0.405 +0.518,0.722,0.411 +0.523,0.725,0.417 +0.529,0.728,0.424 +0.534,0.730,0.430 +0.540,0.733,0.437 +0.545,0.736,0.443 +0.550,0.739,0.449 +0.556,0.741,0.456 +0.561,0.744,0.462 +0.567,0.747,0.469 +0.572,0.750,0.475 +0.578,0.752,0.482 +0.583,0.755,0.488 +0.588,0.758,0.494 +0.594,0.760,0.501 +0.599,0.763,0.507 +0.604,0.766,0.514 +0.610,0.769,0.520 +0.615,0.771,0.526 +0.620,0.774,0.533 +0.626,0.777,0.539 +0.631,0.780,0.546 +0.636,0.782,0.552 +0.641,0.785,0.559 +0.647,0.788,0.565 +0.652,0.791,0.571 +0.657,0.793,0.578 +0.663,0.796,0.584 +0.668,0.799,0.591 +0.673,0.802,0.597 +0.678,0.804,0.604 +0.684,0.807,0.610 +0.689,0.810,0.617 +0.694,0.812,0.623 +0.699,0.815,0.630 +0.704,0.818,0.636 +0.710,0.821,0.643 +0.715,0.823,0.649 +0.720,0.826,0.656 +0.725,0.829,0.662 +0.730,0.832,0.669 +0.736,0.834,0.675 +0.741,0.837,0.682 +0.746,0.840,0.688 +0.751,0.842,0.695 +0.756,0.845,0.701 +0.762,0.848,0.708 +0.767,0.851,0.714 +0.772,0.853,0.721 +0.777,0.856,0.728 +0.782,0.859,0.734 +0.787,0.861,0.741 +0.793,0.864,0.747 +0.798,0.867,0.754 +0.803,0.870,0.760 +0.808,0.872,0.767 +0.813,0.875,0.774 +0.818,0.878,0.780 +0.823,0.880,0.787 +0.829,0.883,0.794 +0.834,0.886,0.800 +0.839,0.888,0.807 +0.844,0.891,0.813 +0.849,0.894,0.820 +0.854,0.897,0.827 +0.859,0.899,0.833 +0.865,0.902,0.840 +0.870,0.904,0.846 +0.875,0.907,0.852 +0.880,0.909,0.859 +0.885,0.911,0.865 +0.890,0.913,0.870 +0.895,0.915,0.876 +0.900,0.917,0.881 +0.904,0.919,0.886 +0.909,0.920,0.890 +0.914,0.921,0.894 +0.918,0.921,0.897 +0.922,0.921,0.900 +0.926,0.921,0.902 +0.930,0.920,0.903 +0.934,0.919,0.904 +0.937,0.917,0.904 +0.940,0.915,0.903 +0.943,0.913,0.901 +0.946,0.910,0.899 +0.948,0.907,0.897 +0.950,0.904,0.893 +0.952,0.900,0.890 +0.954,0.896,0.886 +0.956,0.892,0.881 +0.957,0.888,0.876 +0.959,0.884,0.872 +0.960,0.879,0.866 +0.961,0.874,0.861 +0.962,0.870,0.856 +0.964,0.865,0.850 +0.965,0.860,0.845 +0.966,0.856,0.839 +0.966,0.851,0.834 +0.967,0.846,0.828 +0.968,0.841,0.823 +0.969,0.837,0.817 +0.970,0.832,0.812 +0.971,0.827,0.806 +0.971,0.822,0.800 +0.972,0.817,0.795 +0.973,0.813,0.789 +0.973,0.808,0.784 +0.974,0.803,0.778 +0.975,0.798,0.773 +0.975,0.793,0.767 +0.976,0.789,0.762 +0.976,0.784,0.756 +0.977,0.779,0.751 +0.977,0.774,0.745 +0.978,0.769,0.740 +0.978,0.765,0.734 +0.979,0.760,0.729 +0.979,0.755,0.723 +0.979,0.750,0.718 +0.980,0.745,0.712 +0.980,0.740,0.707 +0.980,0.736,0.701 +0.980,0.731,0.696 +0.981,0.726,0.691 +0.981,0.721,0.685 +0.981,0.716,0.680 +0.981,0.711,0.674 +0.981,0.707,0.669 +0.981,0.702,0.664 +0.982,0.697,0.658 +0.982,0.692,0.653 +0.982,0.687,0.647 +0.982,0.682,0.642 +0.982,0.677,0.637 +0.982,0.672,0.631 +0.982,0.668,0.626 +0.981,0.663,0.621 +0.981,0.658,0.615 +0.981,0.653,0.610 +0.981,0.648,0.605 +0.981,0.643,0.600 +0.981,0.638,0.594 +0.981,0.633,0.589 +0.980,0.628,0.584 +0.980,0.623,0.578 +0.980,0.618,0.573 +0.980,0.613,0.568 +0.979,0.608,0.563 +0.979,0.603,0.557 +0.979,0.598,0.552 +0.978,0.593,0.547 +0.978,0.588,0.542 +0.977,0.583,0.536 +0.977,0.578,0.531 +0.977,0.573,0.526 +0.976,0.568,0.521 +0.976,0.563,0.516 +0.975,0.558,0.511 +0.975,0.553,0.505 +0.974,0.548,0.500 +0.974,0.543,0.495 +0.973,0.538,0.490 +0.972,0.532,0.485 +0.972,0.527,0.480 +0.971,0.522,0.475 +0.970,0.517,0.469 +0.970,0.512,0.464 +0.969,0.507,0.459 +0.968,0.501,0.454 +0.968,0.496,0.449 +0.967,0.491,0.444 +0.966,0.486,0.439 +0.965,0.480,0.434 +0.965,0.475,0.429 +0.964,0.470,0.424 +0.963,0.464,0.419 +0.962,0.459,0.414 +0.961,0.453,0.409 +0.960,0.448,0.404 +0.960,0.442,0.399 +0.959,0.437,0.394 +0.958,0.431,0.389 +0.957,0.426,0.384 +0.956,0.420,0.379 +0.955,0.415,0.374 +0.954,0.409,0.369 +0.953,0.403,0.364 +0.952,0.398,0.359 +0.951,0.392,0.354 +0.950,0.386,0.349 +0.949,0.380,0.344 +0.947,0.374,0.340 +0.946,0.368,0.335 +0.945,0.363,0.330 +0.944,0.356,0.325 +0.943,0.350,0.320 +0.942,0.344,0.315 +0.941,0.338,0.310 +0.939,0.332,0.306 +0.938,0.325,0.301 +0.937,0.319,0.296 +0.936,0.312,0.291 +0.934,0.306,0.286 +0.933,0.299,0.281 +0.932,0.292,0.277 +0.931,0.286,0.272 +0.929,0.279,0.267 diff --git a/pyqtgraph/colors/maps/CET-D4.csv b/pyqtgraph/colors/maps/CET-D4.csv new file mode 100644 index 00000000..00668e2b --- /dev/null +++ b/pyqtgraph/colors/maps/CET-D4.csv @@ -0,0 +1,256 @@ +0.097,0.507,0.982 +0.103,0.504,0.974 +0.109,0.500,0.967 +0.114,0.497,0.959 +0.118,0.493,0.951 +0.123,0.490,0.943 +0.127,0.487,0.936 +0.131,0.483,0.928 +0.135,0.480,0.920 +0.138,0.476,0.913 +0.141,0.473,0.905 +0.145,0.469,0.897 +0.148,0.466,0.890 +0.150,0.463,0.882 +0.153,0.459,0.874 +0.156,0.456,0.867 +0.158,0.452,0.859 +0.161,0.449,0.852 +0.163,0.445,0.844 +0.165,0.442,0.837 +0.167,0.439,0.829 +0.169,0.435,0.822 +0.171,0.432,0.814 +0.172,0.429,0.807 +0.174,0.425,0.799 +0.176,0.422,0.792 +0.177,0.418,0.784 +0.179,0.415,0.777 +0.180,0.412,0.769 +0.181,0.408,0.762 +0.182,0.405,0.754 +0.184,0.402,0.747 +0.185,0.398,0.740 +0.186,0.395,0.732 +0.187,0.392,0.725 +0.188,0.389,0.718 +0.188,0.385,0.710 +0.189,0.382,0.703 +0.190,0.379,0.696 +0.191,0.375,0.688 +0.191,0.372,0.681 +0.192,0.369,0.674 +0.192,0.365,0.667 +0.193,0.362,0.659 +0.193,0.359,0.652 +0.194,0.356,0.645 +0.194,0.352,0.638 +0.194,0.349,0.631 +0.194,0.346,0.624 +0.195,0.343,0.616 +0.195,0.340,0.609 +0.195,0.336,0.602 +0.195,0.333,0.595 +0.195,0.330,0.588 +0.195,0.327,0.581 +0.195,0.323,0.574 +0.195,0.320,0.567 +0.195,0.317,0.560 +0.195,0.314,0.553 +0.194,0.311,0.546 +0.194,0.308,0.539 +0.194,0.304,0.532 +0.194,0.301,0.525 +0.193,0.298,0.518 +0.193,0.295,0.511 +0.192,0.292,0.504 +0.192,0.289,0.497 +0.192,0.286,0.491 +0.191,0.282,0.484 +0.190,0.279,0.477 +0.190,0.276,0.470 +0.189,0.273,0.463 +0.189,0.270,0.457 +0.188,0.267,0.450 +0.187,0.264,0.443 +0.187,0.261,0.436 +0.186,0.258,0.430 +0.185,0.255,0.423 +0.184,0.252,0.416 +0.183,0.249,0.410 +0.182,0.245,0.403 +0.182,0.242,0.396 +0.181,0.239,0.390 +0.180,0.236,0.383 +0.179,0.233,0.377 +0.178,0.230,0.370 +0.177,0.227,0.364 +0.176,0.224,0.357 +0.174,0.221,0.351 +0.173,0.218,0.344 +0.172,0.215,0.338 +0.171,0.213,0.331 +0.170,0.210,0.325 +0.168,0.207,0.319 +0.167,0.204,0.312 +0.166,0.201,0.306 +0.165,0.198,0.300 +0.163,0.195,0.293 +0.162,0.192,0.287 +0.160,0.189,0.281 +0.159,0.186,0.275 +0.158,0.183,0.268 +0.156,0.180,0.262 +0.155,0.178,0.256 +0.153,0.175,0.250 +0.151,0.172,0.244 +0.150,0.169,0.238 +0.148,0.166,0.232 +0.147,0.163,0.226 +0.145,0.161,0.220 +0.143,0.158,0.214 +0.142,0.155,0.208 +0.140,0.152,0.202 +0.139,0.150,0.196 +0.137,0.147,0.190 +0.135,0.144,0.184 +0.134,0.142,0.179 +0.133,0.139,0.173 +0.132,0.137,0.168 +0.131,0.134,0.163 +0.130,0.132,0.158 +0.129,0.130,0.153 +0.129,0.128,0.148 +0.129,0.127,0.144 +0.129,0.125,0.140 +0.130,0.124,0.137 +0.132,0.123,0.133 +0.133,0.123,0.131 +0.135,0.122,0.128 +0.138,0.122,0.126 +0.141,0.122,0.124 +0.144,0.122,0.123 +0.148,0.123,0.122 +0.152,0.124,0.121 +0.156,0.125,0.121 +0.161,0.126,0.121 +0.165,0.127,0.121 +0.170,0.129,0.122 +0.176,0.130,0.122 +0.181,0.132,0.123 +0.186,0.133,0.124 +0.192,0.135,0.125 +0.197,0.137,0.126 +0.203,0.139,0.127 +0.209,0.140,0.128 +0.214,0.142,0.129 +0.220,0.144,0.130 +0.226,0.146,0.131 +0.232,0.148,0.132 +0.237,0.149,0.133 +0.243,0.151,0.135 +0.249,0.153,0.136 +0.255,0.155,0.137 +0.260,0.156,0.138 +0.266,0.158,0.139 +0.272,0.160,0.140 +0.278,0.162,0.142 +0.284,0.163,0.143 +0.289,0.165,0.144 +0.295,0.167,0.145 +0.301,0.169,0.146 +0.307,0.170,0.147 +0.313,0.172,0.148 +0.319,0.174,0.150 +0.325,0.176,0.151 +0.330,0.177,0.152 +0.336,0.179,0.153 +0.342,0.181,0.154 +0.348,0.182,0.155 +0.354,0.184,0.157 +0.360,0.186,0.158 +0.366,0.187,0.159 +0.372,0.189,0.160 +0.378,0.191,0.161 +0.384,0.192,0.162 +0.390,0.194,0.163 +0.396,0.196,0.165 +0.402,0.197,0.166 +0.408,0.199,0.167 +0.414,0.201,0.168 +0.420,0.202,0.169 +0.426,0.204,0.170 +0.432,0.206,0.172 +0.438,0.207,0.173 +0.444,0.209,0.174 +0.450,0.210,0.175 +0.456,0.212,0.176 +0.463,0.214,0.177 +0.469,0.215,0.179 +0.475,0.217,0.180 +0.481,0.218,0.181 +0.487,0.220,0.182 +0.493,0.222,0.183 +0.499,0.223,0.184 +0.506,0.225,0.185 +0.512,0.226,0.187 +0.518,0.228,0.188 +0.524,0.229,0.189 +0.530,0.231,0.190 +0.537,0.232,0.191 +0.543,0.234,0.192 +0.549,0.236,0.194 +0.556,0.237,0.195 +0.562,0.239,0.196 +0.568,0.240,0.197 +0.574,0.242,0.198 +0.581,0.243,0.199 +0.587,0.245,0.201 +0.593,0.246,0.202 +0.600,0.248,0.203 +0.606,0.249,0.204 +0.612,0.251,0.205 +0.619,0.252,0.206 +0.625,0.254,0.208 +0.632,0.255,0.209 +0.638,0.257,0.210 +0.644,0.258,0.211 +0.651,0.260,0.212 +0.657,0.261,0.213 +0.664,0.263,0.215 +0.670,0.264,0.216 +0.677,0.266,0.217 +0.683,0.267,0.218 +0.690,0.268,0.219 +0.696,0.270,0.220 +0.703,0.271,0.222 +0.709,0.273,0.223 +0.716,0.274,0.224 +0.722,0.276,0.225 +0.729,0.277,0.226 +0.735,0.278,0.227 +0.742,0.280,0.229 +0.748,0.281,0.230 +0.755,0.283,0.231 +0.762,0.284,0.232 +0.768,0.286,0.233 +0.775,0.287,0.234 +0.782,0.288,0.236 +0.788,0.290,0.237 +0.795,0.291,0.238 +0.801,0.292,0.239 +0.808,0.294,0.240 +0.815,0.295,0.241 +0.821,0.297,0.243 +0.828,0.298,0.244 +0.835,0.299,0.245 +0.842,0.301,0.246 +0.848,0.302,0.247 +0.855,0.303,0.249 +0.862,0.305,0.250 +0.868,0.306,0.251 +0.875,0.307,0.252 +0.882,0.309,0.253 +0.889,0.310,0.254 +0.896,0.311,0.256 +0.902,0.313,0.257 diff --git a/pyqtgraph/colors/maps/CET-D6.csv b/pyqtgraph/colors/maps/CET-D6.csv new file mode 100644 index 00000000..72e90a9b --- /dev/null +++ b/pyqtgraph/colors/maps/CET-D6.csv @@ -0,0 +1,256 @@ +0.057,0.580,0.981 +0.066,0.575,0.973 +0.074,0.571,0.966 +0.082,0.567,0.958 +0.089,0.563,0.950 +0.095,0.559,0.943 +0.101,0.555,0.935 +0.106,0.551,0.927 +0.111,0.547,0.919 +0.116,0.543,0.912 +0.120,0.539,0.904 +0.124,0.535,0.896 +0.128,0.531,0.889 +0.132,0.526,0.881 +0.135,0.522,0.874 +0.138,0.518,0.866 +0.141,0.514,0.858 +0.144,0.510,0.851 +0.147,0.506,0.843 +0.150,0.502,0.836 +0.152,0.498,0.828 +0.155,0.494,0.821 +0.157,0.490,0.813 +0.159,0.486,0.806 +0.161,0.482,0.798 +0.163,0.478,0.791 +0.165,0.474,0.783 +0.167,0.470,0.776 +0.168,0.466,0.768 +0.170,0.462,0.761 +0.172,0.458,0.754 +0.173,0.455,0.746 +0.174,0.451,0.739 +0.176,0.447,0.732 +0.177,0.443,0.724 +0.178,0.439,0.717 +0.179,0.435,0.710 +0.180,0.431,0.702 +0.181,0.427,0.695 +0.182,0.423,0.688 +0.183,0.419,0.680 +0.184,0.415,0.673 +0.184,0.412,0.666 +0.185,0.408,0.659 +0.186,0.404,0.651 +0.186,0.400,0.644 +0.187,0.396,0.637 +0.187,0.392,0.630 +0.188,0.388,0.623 +0.188,0.385,0.616 +0.188,0.381,0.609 +0.189,0.377,0.601 +0.189,0.373,0.594 +0.189,0.369,0.587 +0.189,0.366,0.580 +0.189,0.362,0.573 +0.189,0.358,0.566 +0.189,0.354,0.559 +0.189,0.351,0.552 +0.189,0.347,0.545 +0.189,0.343,0.538 +0.189,0.339,0.531 +0.189,0.336,0.524 +0.189,0.332,0.517 +0.188,0.328,0.510 +0.188,0.324,0.504 +0.188,0.321,0.497 +0.187,0.317,0.490 +0.187,0.313,0.483 +0.186,0.310,0.476 +0.186,0.306,0.469 +0.186,0.302,0.463 +0.185,0.299,0.456 +0.184,0.295,0.449 +0.184,0.291,0.442 +0.183,0.288,0.436 +0.182,0.284,0.429 +0.182,0.281,0.422 +0.181,0.277,0.416 +0.180,0.273,0.409 +0.180,0.270,0.402 +0.179,0.266,0.396 +0.178,0.263,0.389 +0.177,0.259,0.383 +0.176,0.255,0.376 +0.175,0.252,0.370 +0.174,0.248,0.363 +0.173,0.245,0.357 +0.172,0.241,0.350 +0.171,0.238,0.344 +0.170,0.234,0.337 +0.169,0.231,0.331 +0.168,0.227,0.324 +0.166,0.224,0.318 +0.165,0.220,0.312 +0.164,0.217,0.305 +0.163,0.214,0.299 +0.162,0.210,0.293 +0.160,0.207,0.287 +0.159,0.203,0.280 +0.157,0.200,0.274 +0.156,0.196,0.268 +0.155,0.193,0.262 +0.153,0.190,0.256 +0.152,0.186,0.249 +0.150,0.183,0.243 +0.149,0.180,0.237 +0.147,0.176,0.231 +0.146,0.173,0.225 +0.144,0.170,0.219 +0.142,0.166,0.213 +0.141,0.163,0.207 +0.139,0.160,0.201 +0.138,0.157,0.195 +0.136,0.154,0.190 +0.135,0.151,0.184 +0.133,0.148,0.178 +0.132,0.145,0.173 +0.130,0.142,0.167 +0.129,0.139,0.162 +0.128,0.137,0.157 +0.127,0.135,0.152 +0.127,0.133,0.148 +0.127,0.131,0.143 +0.127,0.129,0.139 +0.127,0.128,0.135 +0.127,0.128,0.132 +0.128,0.127,0.129 +0.130,0.127,0.126 +0.131,0.127,0.124 +0.133,0.128,0.122 +0.135,0.129,0.120 +0.138,0.130,0.119 +0.141,0.131,0.118 +0.144,0.133,0.117 +0.147,0.135,0.116 +0.151,0.137,0.116 +0.155,0.140,0.116 +0.159,0.142,0.116 +0.162,0.145,0.116 +0.167,0.148,0.116 +0.171,0.151,0.116 +0.175,0.154,0.117 +0.179,0.157,0.117 +0.183,0.160,0.117 +0.188,0.163,0.118 +0.192,0.166,0.118 +0.196,0.169,0.119 +0.201,0.172,0.119 +0.205,0.175,0.120 +0.209,0.178,0.120 +0.214,0.181,0.121 +0.218,0.184,0.121 +0.222,0.187,0.121 +0.227,0.191,0.122 +0.231,0.194,0.122 +0.236,0.197,0.123 +0.240,0.200,0.123 +0.244,0.203,0.123 +0.249,0.207,0.124 +0.253,0.210,0.124 +0.257,0.213,0.125 +0.262,0.216,0.125 +0.266,0.219,0.125 +0.271,0.223,0.126 +0.275,0.226,0.126 +0.280,0.229,0.126 +0.284,0.232,0.126 +0.288,0.236,0.127 +0.293,0.239,0.127 +0.297,0.242,0.127 +0.302,0.245,0.128 +0.306,0.249,0.128 +0.311,0.252,0.128 +0.315,0.255,0.128 +0.320,0.259,0.129 +0.324,0.262,0.129 +0.329,0.265,0.129 +0.333,0.269,0.129 +0.338,0.272,0.129 +0.342,0.275,0.129 +0.347,0.279,0.130 +0.352,0.282,0.130 +0.356,0.286,0.130 +0.361,0.289,0.130 +0.365,0.292,0.130 +0.370,0.296,0.130 +0.374,0.299,0.130 +0.379,0.303,0.131 +0.384,0.306,0.131 +0.388,0.309,0.131 +0.393,0.313,0.131 +0.397,0.316,0.131 +0.402,0.320,0.131 +0.407,0.323,0.131 +0.411,0.327,0.131 +0.416,0.330,0.131 +0.421,0.334,0.131 +0.425,0.337,0.131 +0.430,0.341,0.131 +0.435,0.344,0.131 +0.439,0.348,0.131 +0.444,0.351,0.131 +0.449,0.355,0.130 +0.453,0.358,0.130 +0.458,0.362,0.130 +0.463,0.365,0.130 +0.468,0.369,0.130 +0.472,0.372,0.130 +0.477,0.376,0.130 +0.482,0.379,0.129 +0.487,0.383,0.129 +0.491,0.386,0.129 +0.496,0.390,0.129 +0.501,0.394,0.129 +0.506,0.397,0.128 +0.510,0.401,0.128 +0.515,0.404,0.128 +0.520,0.408,0.127 +0.525,0.412,0.127 +0.530,0.415,0.127 +0.534,0.419,0.126 +0.539,0.422,0.126 +0.544,0.426,0.126 +0.549,0.430,0.125 +0.554,0.433,0.125 +0.559,0.437,0.124 +0.564,0.441,0.124 +0.568,0.444,0.123 +0.573,0.448,0.123 +0.578,0.452,0.122 +0.583,0.455,0.122 +0.588,0.459,0.121 +0.593,0.463,0.121 +0.598,0.466,0.120 +0.603,0.470,0.120 +0.608,0.474,0.119 +0.613,0.477,0.118 +0.618,0.481,0.118 +0.622,0.485,0.117 +0.627,0.489,0.116 +0.632,0.492,0.115 +0.637,0.496,0.115 +0.642,0.500,0.114 +0.647,0.503,0.113 +0.652,0.507,0.112 +0.657,0.511,0.111 +0.662,0.515,0.110 +0.667,0.518,0.109 +0.672,0.522,0.108 +0.677,0.526,0.107 +0.682,0.530,0.106 +0.687,0.534,0.105 +0.692,0.537,0.104 +0.697,0.541,0.103 +0.702,0.545,0.102 diff --git a/pyqtgraph/colors/maps/CET-D7.csv b/pyqtgraph/colors/maps/CET-D7.csv new file mode 100644 index 00000000..76b62bee --- /dev/null +++ b/pyqtgraph/colors/maps/CET-D7.csv @@ -0,0 +1,256 @@ +0.078,0.193,0.758 +0.095,0.196,0.757 +0.110,0.199,0.756 +0.123,0.202,0.754 +0.135,0.205,0.753 +0.146,0.208,0.751 +0.156,0.210,0.750 +0.166,0.213,0.749 +0.175,0.216,0.747 +0.183,0.219,0.746 +0.191,0.222,0.745 +0.199,0.225,0.743 +0.206,0.228,0.742 +0.213,0.230,0.740 +0.220,0.233,0.739 +0.227,0.236,0.738 +0.233,0.239,0.736 +0.240,0.242,0.735 +0.246,0.245,0.733 +0.251,0.248,0.732 +0.257,0.250,0.731 +0.263,0.253,0.729 +0.268,0.256,0.728 +0.273,0.259,0.727 +0.278,0.262,0.725 +0.283,0.265,0.724 +0.288,0.268,0.722 +0.293,0.271,0.721 +0.298,0.273,0.719 +0.303,0.276,0.718 +0.307,0.279,0.717 +0.312,0.282,0.715 +0.316,0.285,0.714 +0.320,0.288,0.712 +0.324,0.291,0.711 +0.329,0.294,0.710 +0.333,0.296,0.708 +0.337,0.299,0.707 +0.341,0.302,0.705 +0.345,0.305,0.704 +0.348,0.308,0.703 +0.352,0.311,0.701 +0.356,0.314,0.700 +0.360,0.317,0.698 +0.363,0.320,0.697 +0.367,0.322,0.695 +0.370,0.325,0.694 +0.374,0.328,0.692 +0.377,0.331,0.691 +0.381,0.334,0.690 +0.384,0.337,0.688 +0.387,0.340,0.687 +0.391,0.343,0.685 +0.394,0.346,0.684 +0.397,0.349,0.682 +0.400,0.351,0.681 +0.403,0.354,0.679 +0.406,0.357,0.678 +0.410,0.360,0.676 +0.413,0.363,0.675 +0.416,0.366,0.674 +0.418,0.369,0.672 +0.421,0.372,0.671 +0.424,0.375,0.669 +0.427,0.378,0.668 +0.430,0.381,0.666 +0.433,0.384,0.665 +0.436,0.387,0.663 +0.438,0.389,0.662 +0.441,0.392,0.660 +0.444,0.395,0.659 +0.447,0.398,0.657 +0.449,0.401,0.656 +0.452,0.404,0.654 +0.454,0.407,0.653 +0.457,0.410,0.651 +0.460,0.413,0.650 +0.462,0.416,0.648 +0.465,0.419,0.647 +0.467,0.422,0.645 +0.470,0.425,0.644 +0.472,0.428,0.642 +0.474,0.431,0.641 +0.477,0.434,0.639 +0.479,0.437,0.637 +0.482,0.440,0.636 +0.484,0.443,0.634 +0.486,0.445,0.633 +0.489,0.448,0.631 +0.491,0.451,0.630 +0.493,0.454,0.628 +0.495,0.457,0.627 +0.498,0.460,0.625 +0.500,0.463,0.624 +0.502,0.466,0.622 +0.504,0.469,0.620 +0.506,0.472,0.619 +0.509,0.475,0.617 +0.511,0.478,0.616 +0.513,0.481,0.614 +0.515,0.484,0.612 +0.517,0.487,0.611 +0.519,0.490,0.609 +0.521,0.493,0.608 +0.523,0.496,0.606 +0.525,0.499,0.604 +0.527,0.502,0.603 +0.529,0.505,0.601 +0.531,0.508,0.600 +0.533,0.511,0.598 +0.535,0.514,0.596 +0.537,0.517,0.595 +0.539,0.520,0.593 +0.541,0.523,0.591 +0.543,0.526,0.590 +0.544,0.529,0.588 +0.546,0.532,0.586 +0.548,0.535,0.585 +0.550,0.538,0.583 +0.552,0.541,0.581 +0.554,0.544,0.580 +0.555,0.547,0.578 +0.557,0.550,0.576 +0.559,0.553,0.575 +0.561,0.556,0.573 +0.562,0.559,0.571 +0.564,0.562,0.569 +0.566,0.565,0.568 +0.569,0.568,0.566 +0.573,0.570,0.563 +0.577,0.573,0.561 +0.581,0.575,0.559 +0.585,0.578,0.556 +0.589,0.580,0.554 +0.593,0.582,0.552 +0.597,0.585,0.549 +0.601,0.587,0.547 +0.605,0.590,0.544 +0.609,0.592,0.542 +0.613,0.595,0.539 +0.616,0.597,0.537 +0.620,0.599,0.535 +0.624,0.602,0.532 +0.628,0.604,0.530 +0.632,0.607,0.527 +0.635,0.609,0.525 +0.639,0.612,0.522 +0.643,0.614,0.520 +0.646,0.616,0.517 +0.650,0.619,0.515 +0.654,0.621,0.512 +0.657,0.624,0.510 +0.661,0.626,0.507 +0.665,0.629,0.505 +0.668,0.631,0.502 +0.672,0.634,0.500 +0.676,0.636,0.497 +0.679,0.639,0.495 +0.683,0.641,0.492 +0.686,0.644,0.489 +0.690,0.646,0.487 +0.693,0.649,0.484 +0.697,0.651,0.482 +0.700,0.654,0.479 +0.704,0.656,0.476 +0.707,0.659,0.474 +0.711,0.661,0.471 +0.714,0.664,0.468 +0.718,0.666,0.466 +0.721,0.669,0.463 +0.724,0.671,0.460 +0.728,0.674,0.457 +0.731,0.676,0.455 +0.735,0.679,0.452 +0.738,0.681,0.449 +0.741,0.684,0.446 +0.745,0.686,0.443 +0.748,0.689,0.441 +0.752,0.691,0.438 +0.755,0.694,0.435 +0.758,0.696,0.432 +0.761,0.699,0.429 +0.765,0.702,0.426 +0.768,0.704,0.423 +0.771,0.707,0.420 +0.775,0.709,0.417 +0.778,0.712,0.414 +0.781,0.714,0.411 +0.784,0.717,0.408 +0.788,0.719,0.405 +0.791,0.722,0.402 +0.794,0.725,0.399 +0.797,0.727,0.396 +0.801,0.730,0.393 +0.804,0.732,0.390 +0.807,0.735,0.387 +0.810,0.737,0.383 +0.814,0.740,0.380 +0.817,0.743,0.377 +0.820,0.745,0.374 +0.823,0.748,0.370 +0.826,0.750,0.367 +0.829,0.753,0.364 +0.833,0.756,0.360 +0.836,0.758,0.357 +0.839,0.761,0.353 +0.842,0.763,0.350 +0.845,0.766,0.346 +0.848,0.769,0.343 +0.851,0.771,0.339 +0.855,0.774,0.336 +0.858,0.777,0.332 +0.861,0.779,0.328 +0.864,0.782,0.324 +0.867,0.784,0.320 +0.870,0.787,0.317 +0.873,0.790,0.313 +0.876,0.792,0.309 +0.879,0.795,0.305 +0.883,0.798,0.301 +0.886,0.800,0.297 +0.889,0.803,0.292 +0.892,0.805,0.288 +0.895,0.808,0.284 +0.898,0.811,0.279 +0.901,0.813,0.275 +0.904,0.816,0.270 +0.907,0.819,0.266 +0.910,0.821,0.261 +0.913,0.824,0.256 +0.916,0.827,0.251 +0.919,0.829,0.246 +0.922,0.832,0.241 +0.925,0.835,0.236 +0.928,0.837,0.231 +0.931,0.840,0.225 +0.934,0.843,0.220 +0.937,0.845,0.214 +0.940,0.848,0.208 +0.943,0.851,0.202 +0.946,0.853,0.195 +0.949,0.856,0.189 +0.952,0.859,0.182 +0.955,0.861,0.175 +0.958,0.864,0.168 +0.961,0.867,0.160 +0.964,0.870,0.152 +0.967,0.872,0.143 +0.970,0.875,0.134 +0.973,0.878,0.124 +0.976,0.880,0.114 +0.979,0.883,0.102 +0.982,0.886,0.090 +0.985,0.888,0.075 +0.988,0.891,0.058 +0.991,0.894,0.036 diff --git a/pyqtgraph/colors/maps/CET-D8.csv b/pyqtgraph/colors/maps/CET-D8.csv new file mode 100644 index 00000000..b1b02402 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-D8.csv @@ -0,0 +1,256 @@ +0.000,0.165,0.844 +0.000,0.167,0.840 +0.000,0.169,0.837 +0.000,0.171,0.833 +0.000,0.173,0.829 +0.000,0.175,0.826 +0.000,0.177,0.822 +0.000,0.179,0.819 +0.026,0.181,0.815 +0.053,0.183,0.811 +0.073,0.185,0.808 +0.090,0.187,0.804 +0.104,0.189,0.801 +0.116,0.191,0.797 +0.128,0.193,0.794 +0.138,0.195,0.790 +0.147,0.197,0.786 +0.156,0.199,0.783 +0.164,0.201,0.779 +0.172,0.203,0.776 +0.179,0.205,0.772 +0.186,0.207,0.768 +0.192,0.208,0.765 +0.199,0.210,0.761 +0.205,0.212,0.758 +0.210,0.214,0.754 +0.216,0.216,0.751 +0.221,0.218,0.747 +0.226,0.220,0.744 +0.231,0.222,0.740 +0.236,0.223,0.736 +0.240,0.225,0.733 +0.245,0.227,0.729 +0.249,0.229,0.726 +0.253,0.231,0.722 +0.257,0.233,0.719 +0.261,0.235,0.715 +0.265,0.236,0.712 +0.269,0.238,0.708 +0.272,0.240,0.705 +0.276,0.242,0.701 +0.279,0.244,0.697 +0.283,0.246,0.694 +0.286,0.247,0.690 +0.289,0.249,0.687 +0.292,0.251,0.683 +0.295,0.253,0.680 +0.298,0.255,0.676 +0.301,0.256,0.673 +0.304,0.258,0.669 +0.306,0.260,0.666 +0.309,0.262,0.662 +0.311,0.264,0.659 +0.314,0.265,0.655 +0.316,0.267,0.652 +0.319,0.269,0.648 +0.321,0.271,0.645 +0.323,0.273,0.641 +0.326,0.274,0.638 +0.328,0.276,0.634 +0.330,0.278,0.631 +0.332,0.280,0.627 +0.334,0.282,0.623 +0.336,0.283,0.620 +0.338,0.285,0.616 +0.340,0.287,0.613 +0.342,0.289,0.609 +0.343,0.290,0.606 +0.345,0.292,0.602 +0.347,0.294,0.599 +0.349,0.296,0.595 +0.350,0.297,0.592 +0.352,0.299,0.588 +0.353,0.301,0.585 +0.355,0.303,0.581 +0.356,0.304,0.578 +0.358,0.306,0.574 +0.359,0.308,0.571 +0.361,0.310,0.567 +0.362,0.311,0.564 +0.363,0.313,0.560 +0.365,0.315,0.557 +0.366,0.316,0.553 +0.367,0.318,0.550 +0.368,0.320,0.546 +0.369,0.322,0.543 +0.371,0.323,0.539 +0.372,0.325,0.536 +0.373,0.327,0.532 +0.374,0.329,0.529 +0.375,0.330,0.525 +0.376,0.332,0.522 +0.377,0.334,0.518 +0.378,0.335,0.515 +0.378,0.337,0.511 +0.379,0.339,0.508 +0.380,0.340,0.505 +0.381,0.342,0.501 +0.382,0.344,0.498 +0.382,0.346,0.494 +0.383,0.347,0.490 +0.384,0.349,0.487 +0.384,0.351,0.483 +0.385,0.352,0.480 +0.386,0.354,0.476 +0.386,0.356,0.473 +0.387,0.357,0.469 +0.387,0.359,0.466 +0.388,0.361,0.462 +0.388,0.362,0.459 +0.389,0.364,0.455 +0.389,0.366,0.452 +0.390,0.368,0.448 +0.390,0.369,0.445 +0.390,0.371,0.441 +0.391,0.373,0.438 +0.391,0.374,0.434 +0.391,0.376,0.431 +0.392,0.378,0.427 +0.392,0.379,0.424 +0.392,0.381,0.420 +0.392,0.383,0.417 +0.393,0.384,0.413 +0.393,0.386,0.409 +0.393,0.388,0.406 +0.393,0.389,0.402 +0.393,0.391,0.399 +0.393,0.393,0.395 +0.397,0.393,0.392 +0.403,0.393,0.390 +0.410,0.392,0.387 +0.417,0.392,0.385 +0.423,0.391,0.382 +0.429,0.391,0.380 +0.436,0.390,0.377 +0.442,0.390,0.375 +0.448,0.389,0.373 +0.454,0.388,0.370 +0.460,0.388,0.368 +0.466,0.387,0.365 +0.472,0.387,0.363 +0.478,0.386,0.360 +0.484,0.385,0.358 +0.490,0.385,0.355 +0.496,0.384,0.353 +0.501,0.383,0.350 +0.507,0.383,0.348 +0.513,0.382,0.346 +0.518,0.381,0.343 +0.524,0.380,0.341 +0.529,0.380,0.338 +0.535,0.379,0.336 +0.540,0.378,0.333 +0.545,0.377,0.331 +0.551,0.376,0.328 +0.556,0.376,0.326 +0.561,0.375,0.323 +0.567,0.374,0.321 +0.572,0.373,0.318 +0.577,0.372,0.316 +0.582,0.371,0.313 +0.587,0.370,0.311 +0.593,0.369,0.308 +0.598,0.368,0.306 +0.603,0.367,0.303 +0.608,0.366,0.301 +0.613,0.365,0.298 +0.618,0.364,0.296 +0.623,0.363,0.293 +0.628,0.362,0.291 +0.633,0.361,0.288 +0.638,0.360,0.286 +0.643,0.359,0.283 +0.648,0.358,0.281 +0.653,0.356,0.278 +0.657,0.355,0.275 +0.662,0.354,0.273 +0.667,0.353,0.270 +0.672,0.351,0.268 +0.677,0.350,0.265 +0.682,0.349,0.263 +0.686,0.347,0.260 +0.691,0.346,0.257 +0.696,0.345,0.255 +0.701,0.343,0.252 +0.705,0.342,0.250 +0.710,0.340,0.247 +0.715,0.339,0.244 +0.720,0.337,0.242 +0.724,0.336,0.239 +0.729,0.334,0.237 +0.734,0.333,0.234 +0.738,0.331,0.231 +0.743,0.330,0.229 +0.748,0.328,0.226 +0.752,0.326,0.223 +0.757,0.324,0.221 +0.761,0.323,0.218 +0.766,0.321,0.215 +0.771,0.319,0.212 +0.775,0.317,0.210 +0.780,0.315,0.207 +0.784,0.313,0.204 +0.789,0.311,0.201 +0.794,0.309,0.199 +0.798,0.307,0.196 +0.803,0.305,0.193 +0.807,0.303,0.190 +0.812,0.301,0.187 +0.816,0.299,0.184 +0.821,0.296,0.182 +0.825,0.294,0.179 +0.830,0.292,0.176 +0.834,0.290,0.173 +0.839,0.287,0.170 +0.843,0.285,0.167 +0.848,0.282,0.164 +0.852,0.280,0.161 +0.857,0.277,0.158 +0.861,0.274,0.155 +0.866,0.271,0.152 +0.870,0.269,0.149 +0.875,0.266,0.145 +0.879,0.263,0.142 +0.884,0.260,0.139 +0.888,0.257,0.136 +0.892,0.254,0.132 +0.897,0.250,0.129 +0.901,0.247,0.126 +0.906,0.244,0.122 +0.910,0.240,0.119 +0.915,0.237,0.115 +0.919,0.233,0.112 +0.923,0.229,0.108 +0.928,0.225,0.104 +0.932,0.222,0.100 +0.937,0.217,0.096 +0.941,0.213,0.092 +0.945,0.209,0.088 +0.950,0.204,0.084 +0.954,0.200,0.080 +0.959,0.195,0.075 +0.963,0.190,0.070 +0.967,0.185,0.066 +0.972,0.179,0.060 +0.976,0.174,0.055 +0.981,0.168,0.050 +0.985,0.162,0.043 +0.989,0.156,0.037 +0.994,0.149,0.030 +0.998,0.142,0.024 +1.000,0.134,0.018 +1.000,0.126,0.012 +1.000,0.117,0.005 +1.000,0.108,0.000 +1.000,0.097,0.000 diff --git a/pyqtgraph/colors/maps/CET-D9.csv b/pyqtgraph/colors/maps/CET-D9.csv new file mode 100644 index 00000000..e9f1138a --- /dev/null +++ b/pyqtgraph/colors/maps/CET-D9.csv @@ -0,0 +1,256 @@ +0.141,0.501,0.998 +0.162,0.504,0.998 +0.181,0.508,0.998 +0.198,0.511,0.998 +0.214,0.514,0.998 +0.228,0.518,0.998 +0.242,0.521,0.998 +0.255,0.524,0.998 +0.267,0.528,0.998 +0.279,0.531,0.998 +0.290,0.535,0.998 +0.301,0.538,0.998 +0.311,0.541,0.998 +0.321,0.545,0.998 +0.331,0.548,0.998 +0.340,0.552,0.998 +0.350,0.555,0.998 +0.359,0.559,0.998 +0.367,0.562,0.998 +0.376,0.565,0.998 +0.385,0.569,0.998 +0.393,0.572,0.998 +0.401,0.576,0.998 +0.409,0.579,0.998 +0.417,0.583,0.998 +0.424,0.586,0.997 +0.432,0.590,0.997 +0.439,0.593,0.997 +0.447,0.597,0.997 +0.454,0.600,0.997 +0.461,0.604,0.997 +0.468,0.608,0.997 +0.475,0.611,0.997 +0.482,0.615,0.997 +0.489,0.618,0.997 +0.495,0.622,0.997 +0.502,0.625,0.997 +0.509,0.629,0.997 +0.515,0.633,0.997 +0.521,0.636,0.997 +0.528,0.640,0.996 +0.534,0.643,0.996 +0.540,0.647,0.996 +0.547,0.651,0.996 +0.553,0.654,0.996 +0.559,0.658,0.996 +0.565,0.661,0.996 +0.571,0.665,0.996 +0.577,0.669,0.996 +0.583,0.672,0.996 +0.589,0.676,0.995 +0.594,0.680,0.995 +0.600,0.683,0.995 +0.606,0.687,0.995 +0.612,0.691,0.995 +0.617,0.694,0.995 +0.623,0.698,0.995 +0.629,0.702,0.995 +0.634,0.705,0.994 +0.640,0.709,0.994 +0.645,0.713,0.994 +0.651,0.717,0.994 +0.656,0.720,0.994 +0.661,0.724,0.994 +0.667,0.728,0.994 +0.672,0.731,0.993 +0.678,0.735,0.993 +0.683,0.739,0.993 +0.688,0.743,0.993 +0.693,0.746,0.993 +0.699,0.750,0.993 +0.704,0.754,0.992 +0.709,0.758,0.992 +0.714,0.762,0.992 +0.719,0.765,0.992 +0.724,0.769,0.992 +0.730,0.773,0.992 +0.735,0.777,0.991 +0.740,0.780,0.991 +0.745,0.784,0.991 +0.750,0.788,0.991 +0.755,0.792,0.991 +0.760,0.796,0.990 +0.765,0.800,0.990 +0.770,0.803,0.990 +0.775,0.807,0.990 +0.780,0.811,0.989 +0.784,0.815,0.989 +0.789,0.819,0.989 +0.794,0.823,0.989 +0.799,0.826,0.989 +0.804,0.830,0.988 +0.809,0.834,0.988 +0.814,0.838,0.988 +0.818,0.842,0.988 +0.823,0.846,0.987 +0.828,0.850,0.987 +0.833,0.853,0.987 +0.837,0.857,0.987 +0.842,0.861,0.986 +0.847,0.865,0.986 +0.852,0.869,0.986 +0.856,0.873,0.986 +0.861,0.877,0.985 +0.866,0.881,0.985 +0.870,0.885,0.985 +0.875,0.889,0.985 +0.880,0.893,0.984 +0.884,0.896,0.984 +0.889,0.900,0.984 +0.894,0.904,0.983 +0.898,0.908,0.983 +0.903,0.912,0.983 +0.908,0.916,0.982 +0.912,0.920,0.982 +0.917,0.924,0.982 +0.921,0.928,0.982 +0.926,0.932,0.981 +0.930,0.936,0.981 +0.935,0.940,0.981 +0.939,0.944,0.980 +0.944,0.948,0.980 +0.949,0.952,0.980 +0.953,0.956,0.979 +0.958,0.960,0.978 +0.962,0.963,0.977 +0.967,0.966,0.975 +0.972,0.967,0.972 +0.975,0.966,0.967 +0.978,0.964,0.962 +0.980,0.960,0.956 +0.981,0.955,0.949 +0.982,0.951,0.943 +0.983,0.946,0.936 +0.984,0.941,0.930 +0.985,0.936,0.924 +0.986,0.931,0.917 +0.986,0.926,0.911 +0.987,0.921,0.905 +0.988,0.916,0.898 +0.988,0.911,0.892 +0.989,0.906,0.886 +0.990,0.901,0.879 +0.990,0.896,0.873 +0.991,0.891,0.867 +0.991,0.886,0.860 +0.992,0.881,0.854 +0.992,0.876,0.848 +0.992,0.871,0.841 +0.993,0.866,0.835 +0.993,0.861,0.829 +0.993,0.857,0.823 +0.994,0.852,0.816 +0.994,0.847,0.810 +0.994,0.842,0.804 +0.994,0.837,0.798 +0.995,0.832,0.791 +0.995,0.827,0.785 +0.995,0.822,0.779 +0.995,0.817,0.773 +0.995,0.812,0.767 +0.995,0.807,0.760 +0.995,0.802,0.754 +0.995,0.797,0.748 +0.995,0.792,0.742 +0.995,0.787,0.736 +0.995,0.782,0.730 +0.995,0.777,0.724 +0.995,0.772,0.717 +0.995,0.767,0.711 +0.994,0.762,0.705 +0.994,0.757,0.699 +0.994,0.753,0.693 +0.994,0.748,0.687 +0.994,0.743,0.681 +0.993,0.738,0.675 +0.993,0.733,0.669 +0.993,0.728,0.663 +0.992,0.723,0.657 +0.992,0.718,0.651 +0.991,0.713,0.645 +0.991,0.708,0.639 +0.990,0.703,0.633 +0.990,0.698,0.627 +0.989,0.693,0.621 +0.989,0.688,0.615 +0.988,0.683,0.609 +0.988,0.678,0.603 +0.987,0.673,0.597 +0.987,0.668,0.591 +0.986,0.663,0.585 +0.985,0.658,0.579 +0.985,0.653,0.573 +0.984,0.648,0.567 +0.983,0.643,0.561 +0.982,0.638,0.555 +0.982,0.633,0.549 +0.981,0.628,0.543 +0.980,0.623,0.537 +0.979,0.618,0.532 +0.978,0.613,0.526 +0.978,0.608,0.520 +0.977,0.603,0.514 +0.976,0.598,0.508 +0.975,0.592,0.502 +0.974,0.587,0.496 +0.973,0.582,0.491 +0.972,0.577,0.485 +0.971,0.572,0.479 +0.970,0.567,0.473 +0.969,0.562,0.468 +0.968,0.557,0.462 +0.967,0.552,0.456 +0.966,0.547,0.450 +0.964,0.541,0.444 +0.963,0.536,0.439 +0.962,0.531,0.433 +0.961,0.526,0.427 +0.960,0.521,0.422 +0.958,0.516,0.416 +0.957,0.510,0.410 +0.956,0.505,0.404 +0.955,0.500,0.399 +0.953,0.495,0.393 +0.952,0.489,0.387 +0.951,0.484,0.382 +0.949,0.479,0.376 +0.948,0.474,0.370 +0.947,0.468,0.365 +0.945,0.463,0.359 +0.944,0.458,0.354 +0.942,0.452,0.348 +0.941,0.447,0.342 +0.940,0.441,0.337 +0.938,0.436,0.331 +0.937,0.431,0.325 +0.935,0.425,0.320 +0.933,0.420,0.314 +0.932,0.414,0.309 +0.930,0.409,0.303 +0.929,0.403,0.298 +0.927,0.397,0.292 +0.926,0.392,0.286 +0.924,0.386,0.281 +0.922,0.380,0.275 +0.921,0.375,0.270 +0.919,0.369,0.264 +0.917,0.363,0.259 +0.915,0.357,0.253 +0.914,0.351,0.248 +0.912,0.345,0.242 +0.910,0.339,0.237 +0.908,0.333,0.231 +0.907,0.327,0.226 +0.905,0.321,0.220 +0.903,0.315,0.214 diff --git a/pyqtgraph/colors/maps/CET-I1.csv b/pyqtgraph/colors/maps/CET-I1.csv new file mode 100644 index 00000000..ee06085c --- /dev/null +++ b/pyqtgraph/colors/maps/CET-I1.csv @@ -0,0 +1,256 @@ +0.216,0.718,0.926 +0.218,0.718,0.923 +0.220,0.718,0.919 +0.223,0.719,0.916 +0.225,0.719,0.912 +0.227,0.719,0.909 +0.230,0.720,0.906 +0.232,0.720,0.902 +0.234,0.720,0.899 +0.236,0.721,0.895 +0.238,0.721,0.892 +0.240,0.721,0.888 +0.242,0.721,0.885 +0.245,0.722,0.882 +0.247,0.722,0.878 +0.249,0.722,0.875 +0.251,0.723,0.871 +0.253,0.723,0.868 +0.255,0.723,0.864 +0.257,0.723,0.861 +0.259,0.724,0.857 +0.261,0.724,0.854 +0.263,0.724,0.850 +0.265,0.724,0.847 +0.267,0.725,0.843 +0.269,0.725,0.840 +0.271,0.725,0.836 +0.273,0.725,0.833 +0.274,0.726,0.829 +0.276,0.726,0.826 +0.278,0.726,0.822 +0.280,0.726,0.819 +0.282,0.727,0.815 +0.284,0.727,0.812 +0.286,0.727,0.808 +0.288,0.727,0.805 +0.290,0.728,0.801 +0.291,0.728,0.798 +0.293,0.728,0.794 +0.295,0.728,0.791 +0.297,0.729,0.787 +0.299,0.729,0.784 +0.301,0.729,0.780 +0.303,0.729,0.776 +0.304,0.729,0.773 +0.306,0.730,0.769 +0.308,0.730,0.766 +0.310,0.730,0.762 +0.312,0.730,0.759 +0.314,0.730,0.755 +0.316,0.731,0.751 +0.318,0.731,0.748 +0.319,0.731,0.744 +0.321,0.731,0.740 +0.323,0.731,0.737 +0.325,0.731,0.733 +0.327,0.732,0.730 +0.329,0.732,0.726 +0.331,0.732,0.722 +0.333,0.732,0.719 +0.335,0.732,0.715 +0.337,0.732,0.711 +0.339,0.732,0.708 +0.341,0.733,0.704 +0.343,0.733,0.700 +0.345,0.733,0.696 +0.347,0.733,0.693 +0.349,0.733,0.689 +0.351,0.733,0.685 +0.353,0.733,0.682 +0.355,0.733,0.678 +0.357,0.733,0.674 +0.359,0.734,0.670 +0.361,0.734,0.667 +0.363,0.734,0.663 +0.366,0.734,0.659 +0.368,0.734,0.655 +0.370,0.734,0.652 +0.372,0.734,0.648 +0.375,0.734,0.644 +0.377,0.734,0.640 +0.379,0.734,0.636 +0.381,0.734,0.633 +0.384,0.734,0.629 +0.386,0.734,0.625 +0.389,0.734,0.621 +0.391,0.734,0.617 +0.394,0.734,0.613 +0.396,0.734,0.610 +0.399,0.734,0.606 +0.401,0.734,0.602 +0.404,0.734,0.598 +0.406,0.734,0.594 +0.409,0.734,0.590 +0.412,0.734,0.586 +0.415,0.733,0.582 +0.417,0.733,0.579 +0.420,0.733,0.575 +0.423,0.733,0.571 +0.426,0.733,0.567 +0.429,0.733,0.563 +0.432,0.733,0.559 +0.435,0.732,0.555 +0.438,0.732,0.552 +0.441,0.732,0.548 +0.444,0.732,0.544 +0.448,0.731,0.540 +0.451,0.731,0.536 +0.454,0.731,0.532 +0.458,0.731,0.529 +0.461,0.730,0.525 +0.465,0.730,0.521 +0.468,0.730,0.517 +0.472,0.729,0.513 +0.475,0.729,0.510 +0.479,0.729,0.506 +0.483,0.728,0.502 +0.486,0.728,0.499 +0.490,0.727,0.495 +0.494,0.727,0.492 +0.498,0.726,0.488 +0.502,0.726,0.485 +0.506,0.725,0.481 +0.510,0.725,0.478 +0.514,0.724,0.474 +0.518,0.724,0.471 +0.522,0.723,0.468 +0.526,0.722,0.465 +0.530,0.722,0.462 +0.534,0.721,0.459 +0.538,0.720,0.456 +0.542,0.720,0.453 +0.547,0.719,0.450 +0.551,0.718,0.447 +0.555,0.717,0.444 +0.559,0.717,0.441 +0.563,0.716,0.439 +0.568,0.715,0.436 +0.572,0.714,0.434 +0.576,0.713,0.431 +0.580,0.713,0.429 +0.585,0.712,0.427 +0.589,0.711,0.424 +0.593,0.710,0.422 +0.597,0.709,0.420 +0.601,0.708,0.418 +0.606,0.707,0.416 +0.610,0.706,0.414 +0.614,0.706,0.412 +0.618,0.705,0.410 +0.622,0.704,0.408 +0.626,0.703,0.406 +0.630,0.702,0.404 +0.634,0.701,0.402 +0.638,0.700,0.401 +0.642,0.699,0.399 +0.646,0.698,0.397 +0.650,0.697,0.395 +0.654,0.696,0.394 +0.658,0.695,0.392 +0.662,0.694,0.391 +0.666,0.693,0.389 +0.670,0.692,0.388 +0.674,0.691,0.386 +0.678,0.690,0.385 +0.681,0.689,0.384 +0.685,0.688,0.383 +0.689,0.687,0.381 +0.693,0.685,0.380 +0.697,0.684,0.379 +0.700,0.683,0.378 +0.704,0.682,0.377 +0.708,0.681,0.376 +0.712,0.680,0.375 +0.715,0.679,0.374 +0.719,0.678,0.373 +0.723,0.676,0.373 +0.726,0.675,0.372 +0.730,0.674,0.371 +0.734,0.673,0.371 +0.737,0.672,0.370 +0.741,0.671,0.370 +0.745,0.669,0.369 +0.748,0.668,0.369 +0.752,0.667,0.368 +0.755,0.666,0.368 +0.759,0.664,0.367 +0.762,0.663,0.367 +0.766,0.662,0.367 +0.769,0.661,0.367 +0.773,0.660,0.367 +0.776,0.658,0.367 +0.780,0.657,0.366 +0.783,0.656,0.366 +0.787,0.654,0.366 +0.790,0.653,0.367 +0.793,0.652,0.367 +0.797,0.651,0.367 +0.800,0.649,0.367 +0.803,0.648,0.367 +0.807,0.647,0.367 +0.810,0.645,0.368 +0.813,0.644,0.368 +0.816,0.643,0.369 +0.820,0.641,0.369 +0.823,0.640,0.369 +0.826,0.639,0.370 +0.829,0.637,0.370 +0.833,0.636,0.371 +0.836,0.634,0.372 +0.839,0.633,0.372 +0.842,0.632,0.373 +0.845,0.630,0.374 +0.848,0.629,0.374 +0.851,0.628,0.375 +0.854,0.626,0.376 +0.857,0.625,0.377 +0.861,0.623,0.377 +0.864,0.622,0.378 +0.867,0.620,0.379 +0.870,0.619,0.380 +0.873,0.618,0.381 +0.876,0.616,0.382 +0.878,0.615,0.383 +0.881,0.613,0.384 +0.884,0.612,0.385 +0.887,0.610,0.386 +0.890,0.609,0.387 +0.893,0.607,0.389 +0.896,0.606,0.390 +0.899,0.604,0.391 +0.902,0.603,0.392 +0.905,0.601,0.393 +0.907,0.600,0.395 +0.910,0.598,0.396 +0.913,0.597,0.397 +0.916,0.595,0.398 +0.919,0.594,0.400 +0.921,0.592,0.401 +0.924,0.591,0.402 +0.927,0.589,0.404 +0.930,0.587,0.405 +0.932,0.586,0.407 +0.935,0.584,0.408 +0.938,0.583,0.410 +0.940,0.581,0.411 +0.943,0.580,0.413 +0.946,0.578,0.414 +0.948,0.576,0.416 +0.951,0.575,0.417 +0.954,0.573,0.419 +0.956,0.572,0.420 +0.959,0.570,0.422 +0.961,0.568,0.423 +0.964,0.567,0.425 +0.966,0.565,0.427 diff --git a/pyqtgraph/colors/maps/CET-I2.csv b/pyqtgraph/colors/maps/CET-I2.csv new file mode 100644 index 00000000..5b58b9d1 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-I2.csv @@ -0,0 +1,256 @@ +0.438,0.821,1.000 +0.438,0.822,1.000 +0.438,0.822,1.000 +0.439,0.823,1.000 +0.439,0.823,1.000 +0.439,0.823,0.998 +0.439,0.824,0.995 +0.440,0.824,0.992 +0.440,0.824,0.989 +0.440,0.825,0.985 +0.441,0.825,0.982 +0.441,0.825,0.979 +0.441,0.826,0.976 +0.442,0.826,0.973 +0.442,0.826,0.970 +0.442,0.827,0.967 +0.443,0.827,0.964 +0.443,0.827,0.960 +0.443,0.828,0.957 +0.444,0.828,0.954 +0.444,0.828,0.951 +0.445,0.829,0.948 +0.445,0.829,0.945 +0.445,0.829,0.942 +0.446,0.830,0.938 +0.446,0.830,0.935 +0.447,0.830,0.932 +0.447,0.831,0.929 +0.448,0.831,0.926 +0.448,0.831,0.922 +0.449,0.832,0.919 +0.449,0.832,0.916 +0.450,0.832,0.913 +0.450,0.833,0.910 +0.451,0.833,0.906 +0.451,0.833,0.903 +0.452,0.833,0.900 +0.452,0.834,0.897 +0.453,0.834,0.893 +0.454,0.834,0.890 +0.454,0.834,0.887 +0.455,0.835,0.884 +0.455,0.835,0.880 +0.456,0.835,0.877 +0.457,0.836,0.874 +0.457,0.836,0.871 +0.458,0.836,0.867 +0.459,0.836,0.864 +0.460,0.837,0.861 +0.460,0.837,0.857 +0.461,0.837,0.854 +0.462,0.837,0.851 +0.463,0.838,0.847 +0.463,0.838,0.844 +0.464,0.838,0.841 +0.465,0.838,0.838 +0.466,0.838,0.834 +0.467,0.839,0.831 +0.468,0.839,0.827 +0.469,0.839,0.824 +0.470,0.839,0.821 +0.470,0.839,0.817 +0.471,0.840,0.814 +0.472,0.840,0.811 +0.473,0.840,0.807 +0.474,0.840,0.804 +0.476,0.840,0.800 +0.477,0.841,0.797 +0.478,0.841,0.793 +0.479,0.841,0.790 +0.480,0.841,0.787 +0.481,0.841,0.783 +0.482,0.841,0.780 +0.484,0.841,0.776 +0.485,0.842,0.773 +0.486,0.842,0.769 +0.488,0.842,0.766 +0.489,0.842,0.762 +0.490,0.842,0.759 +0.492,0.842,0.755 +0.493,0.842,0.752 +0.495,0.842,0.748 +0.496,0.842,0.745 +0.498,0.842,0.741 +0.499,0.842,0.738 +0.501,0.843,0.734 +0.502,0.843,0.730 +0.504,0.843,0.727 +0.506,0.843,0.723 +0.508,0.843,0.720 +0.509,0.843,0.716 +0.511,0.843,0.713 +0.513,0.843,0.709 +0.515,0.843,0.705 +0.517,0.843,0.702 +0.519,0.843,0.698 +0.521,0.843,0.694 +0.523,0.843,0.691 +0.525,0.843,0.687 +0.527,0.842,0.684 +0.530,0.842,0.680 +0.532,0.842,0.676 +0.534,0.842,0.673 +0.537,0.842,0.669 +0.539,0.842,0.665 +0.541,0.842,0.662 +0.544,0.842,0.658 +0.547,0.841,0.655 +0.549,0.841,0.651 +0.552,0.841,0.647 +0.555,0.841,0.644 +0.557,0.841,0.640 +0.560,0.840,0.636 +0.563,0.840,0.633 +0.566,0.840,0.629 +0.569,0.840,0.626 +0.572,0.839,0.622 +0.575,0.839,0.619 +0.578,0.839,0.615 +0.582,0.838,0.612 +0.585,0.838,0.608 +0.588,0.837,0.605 +0.592,0.837,0.601 +0.595,0.837,0.598 +0.598,0.836,0.595 +0.602,0.836,0.591 +0.606,0.835,0.588 +0.609,0.835,0.585 +0.613,0.834,0.582 +0.616,0.834,0.579 +0.620,0.833,0.575 +0.624,0.832,0.572 +0.628,0.832,0.569 +0.631,0.831,0.566 +0.635,0.831,0.564 +0.639,0.830,0.561 +0.643,0.829,0.558 +0.647,0.829,0.555 +0.651,0.828,0.552 +0.655,0.827,0.550 +0.659,0.827,0.547 +0.663,0.826,0.545 +0.667,0.825,0.542 +0.671,0.824,0.540 +0.674,0.824,0.537 +0.678,0.823,0.535 +0.682,0.822,0.533 +0.686,0.821,0.531 +0.690,0.820,0.529 +0.694,0.820,0.526 +0.698,0.819,0.524 +0.702,0.818,0.522 +0.706,0.817,0.520 +0.710,0.816,0.518 +0.714,0.815,0.516 +0.718,0.815,0.514 +0.722,0.814,0.513 +0.726,0.813,0.511 +0.729,0.812,0.509 +0.733,0.811,0.507 +0.737,0.810,0.505 +0.741,0.809,0.503 +0.745,0.808,0.502 +0.748,0.807,0.500 +0.752,0.806,0.498 +0.756,0.805,0.497 +0.760,0.805,0.495 +0.763,0.804,0.493 +0.767,0.803,0.492 +0.771,0.802,0.490 +0.774,0.801,0.489 +0.778,0.800,0.487 +0.782,0.799,0.486 +0.785,0.798,0.485 +0.789,0.797,0.483 +0.793,0.796,0.482 +0.796,0.795,0.481 +0.800,0.794,0.479 +0.804,0.793,0.478 +0.807,0.792,0.477 +0.811,0.791,0.476 +0.814,0.790,0.475 +0.818,0.789,0.474 +0.821,0.788,0.473 +0.825,0.786,0.472 +0.829,0.785,0.471 +0.832,0.784,0.470 +0.836,0.783,0.469 +0.839,0.782,0.468 +0.843,0.781,0.468 +0.846,0.780,0.467 +0.849,0.779,0.466 +0.853,0.778,0.466 +0.856,0.777,0.465 +0.860,0.775,0.465 +0.863,0.774,0.464 +0.866,0.773,0.464 +0.870,0.772,0.463 +0.873,0.771,0.463 +0.877,0.770,0.462 +0.880,0.769,0.462 +0.883,0.767,0.462 +0.887,0.766,0.462 +0.890,0.765,0.462 +0.893,0.764,0.461 +0.896,0.763,0.461 +0.900,0.761,0.461 +0.903,0.760,0.461 +0.906,0.759,0.462 +0.909,0.758,0.462 +0.912,0.757,0.462 +0.916,0.755,0.462 +0.919,0.754,0.462 +0.922,0.753,0.463 +0.925,0.752,0.463 +0.928,0.750,0.463 +0.931,0.749,0.464 +0.934,0.748,0.464 +0.937,0.747,0.465 +0.940,0.745,0.465 +0.943,0.744,0.466 +0.946,0.743,0.466 +0.949,0.742,0.467 +0.952,0.740,0.468 +0.955,0.739,0.468 +0.958,0.738,0.469 +0.961,0.737,0.470 +0.964,0.735,0.471 +0.967,0.734,0.472 +0.970,0.733,0.473 +0.973,0.732,0.474 +0.975,0.730,0.475 +0.978,0.729,0.476 +0.981,0.728,0.477 +0.984,0.726,0.478 +0.986,0.725,0.479 +0.989,0.724,0.480 +0.992,0.723,0.481 +0.995,0.721,0.483 +0.997,0.720,0.484 +1.000,0.719,0.485 +1.000,0.717,0.486 +1.000,0.716,0.488 +1.000,0.715,0.489 +1.000,0.713,0.490 +1.000,0.712,0.492 +1.000,0.711,0.493 +1.000,0.710,0.495 +1.000,0.708,0.496 +1.000,0.707,0.498 +1.000,0.706,0.499 +1.000,0.704,0.501 +1.000,0.703,0.503 +1.000,0.702,0.504 +1.000,0.700,0.506 +1.000,0.699,0.508 diff --git a/pyqtgraph/colors/maps/CET-I3.csv b/pyqtgraph/colors/maps/CET-I3.csv new file mode 100644 index 00000000..1787192d --- /dev/null +++ b/pyqtgraph/colors/maps/CET-I3.csv @@ -0,0 +1,256 @@ +0.078,0.727,0.901 +0.097,0.727,0.901 +0.112,0.726,0.902 +0.126,0.726,0.902 +0.139,0.725,0.903 +0.150,0.725,0.903 +0.161,0.724,0.904 +0.171,0.723,0.904 +0.181,0.723,0.905 +0.190,0.722,0.905 +0.198,0.722,0.906 +0.207,0.721,0.906 +0.215,0.720,0.907 +0.222,0.720,0.907 +0.230,0.719,0.908 +0.237,0.719,0.908 +0.244,0.718,0.909 +0.251,0.717,0.909 +0.257,0.717,0.910 +0.264,0.716,0.910 +0.270,0.716,0.911 +0.276,0.715,0.911 +0.282,0.714,0.912 +0.288,0.714,0.912 +0.294,0.713,0.913 +0.300,0.712,0.913 +0.305,0.712,0.914 +0.311,0.711,0.914 +0.316,0.711,0.914 +0.322,0.710,0.915 +0.327,0.709,0.915 +0.332,0.709,0.916 +0.337,0.708,0.916 +0.342,0.707,0.916 +0.347,0.707,0.917 +0.352,0.706,0.917 +0.357,0.705,0.918 +0.362,0.705,0.918 +0.366,0.704,0.918 +0.371,0.703,0.919 +0.376,0.703,0.919 +0.380,0.702,0.919 +0.385,0.701,0.920 +0.389,0.701,0.920 +0.394,0.700,0.920 +0.398,0.699,0.921 +0.403,0.699,0.921 +0.407,0.698,0.921 +0.411,0.697,0.922 +0.416,0.697,0.922 +0.420,0.696,0.922 +0.424,0.695,0.922 +0.428,0.694,0.923 +0.432,0.694,0.923 +0.436,0.693,0.923 +0.441,0.692,0.923 +0.445,0.692,0.924 +0.449,0.691,0.924 +0.453,0.690,0.924 +0.457,0.689,0.924 +0.461,0.689,0.924 +0.465,0.688,0.925 +0.468,0.687,0.925 +0.472,0.686,0.925 +0.476,0.686,0.925 +0.480,0.685,0.925 +0.484,0.684,0.925 +0.488,0.683,0.925 +0.492,0.683,0.926 +0.495,0.682,0.926 +0.499,0.681,0.926 +0.503,0.680,0.926 +0.507,0.680,0.926 +0.510,0.679,0.926 +0.514,0.678,0.926 +0.518,0.677,0.926 +0.521,0.677,0.926 +0.525,0.676,0.926 +0.529,0.675,0.926 +0.532,0.674,0.926 +0.536,0.673,0.926 +0.540,0.673,0.926 +0.543,0.672,0.926 +0.547,0.671,0.926 +0.550,0.670,0.925 +0.554,0.669,0.925 +0.558,0.669,0.925 +0.561,0.668,0.925 +0.565,0.667,0.925 +0.568,0.666,0.925 +0.572,0.665,0.924 +0.575,0.664,0.924 +0.579,0.664,0.924 +0.582,0.663,0.924 +0.586,0.662,0.923 +0.589,0.661,0.923 +0.593,0.660,0.923 +0.596,0.659,0.922 +0.600,0.659,0.922 +0.603,0.658,0.921 +0.607,0.657,0.921 +0.610,0.656,0.921 +0.614,0.655,0.920 +0.617,0.654,0.920 +0.621,0.653,0.919 +0.624,0.653,0.919 +0.627,0.652,0.918 +0.631,0.651,0.917 +0.634,0.650,0.917 +0.638,0.649,0.916 +0.641,0.648,0.915 +0.644,0.647,0.915 +0.648,0.646,0.914 +0.651,0.645,0.913 +0.655,0.645,0.912 +0.658,0.644,0.911 +0.661,0.643,0.910 +0.665,0.642,0.910 +0.668,0.641,0.909 +0.671,0.640,0.908 +0.675,0.639,0.907 +0.678,0.638,0.905 +0.681,0.638,0.904 +0.684,0.637,0.903 +0.688,0.636,0.902 +0.691,0.635,0.901 +0.694,0.634,0.900 +0.697,0.633,0.898 +0.700,0.632,0.897 +0.704,0.631,0.896 +0.707,0.631,0.894 +0.710,0.630,0.893 +0.713,0.629,0.892 +0.716,0.628,0.890 +0.719,0.627,0.889 +0.722,0.626,0.887 +0.725,0.625,0.886 +0.728,0.625,0.885 +0.731,0.624,0.883 +0.734,0.623,0.882 +0.737,0.622,0.880 +0.740,0.621,0.879 +0.743,0.620,0.877 +0.746,0.619,0.876 +0.749,0.619,0.874 +0.752,0.618,0.873 +0.754,0.617,0.871 +0.757,0.616,0.870 +0.760,0.615,0.868 +0.763,0.614,0.867 +0.766,0.613,0.865 +0.768,0.613,0.863 +0.771,0.612,0.862 +0.774,0.611,0.860 +0.777,0.610,0.859 +0.779,0.609,0.857 +0.782,0.608,0.855 +0.785,0.608,0.854 +0.787,0.607,0.852 +0.790,0.606,0.850 +0.793,0.605,0.849 +0.795,0.604,0.847 +0.798,0.603,0.846 +0.800,0.602,0.844 +0.803,0.602,0.842 +0.806,0.601,0.841 +0.808,0.600,0.839 +0.811,0.599,0.837 +0.813,0.598,0.835 +0.816,0.597,0.834 +0.818,0.596,0.832 +0.821,0.596,0.830 +0.823,0.595,0.829 +0.826,0.594,0.827 +0.828,0.593,0.825 +0.830,0.592,0.824 +0.833,0.591,0.822 +0.835,0.590,0.820 +0.838,0.590,0.818 +0.840,0.589,0.817 +0.842,0.588,0.815 +0.845,0.587,0.813 +0.847,0.586,0.811 +0.849,0.585,0.810 +0.852,0.584,0.808 +0.854,0.584,0.806 +0.856,0.583,0.804 +0.859,0.582,0.803 +0.861,0.581,0.801 +0.863,0.580,0.799 +0.866,0.579,0.797 +0.868,0.578,0.796 +0.870,0.578,0.794 +0.872,0.577,0.792 +0.874,0.576,0.790 +0.877,0.575,0.788 +0.879,0.574,0.787 +0.881,0.573,0.785 +0.883,0.572,0.783 +0.885,0.572,0.781 +0.888,0.571,0.780 +0.890,0.570,0.778 +0.892,0.569,0.776 +0.894,0.568,0.774 +0.896,0.567,0.772 +0.898,0.566,0.770 +0.900,0.565,0.769 +0.903,0.565,0.767 +0.905,0.564,0.765 +0.907,0.563,0.763 +0.909,0.562,0.761 +0.911,0.561,0.760 +0.913,0.560,0.758 +0.915,0.559,0.756 +0.917,0.558,0.754 +0.919,0.558,0.752 +0.921,0.557,0.750 +0.923,0.556,0.749 +0.925,0.555,0.747 +0.927,0.554,0.745 +0.929,0.553,0.743 +0.931,0.552,0.741 +0.933,0.551,0.739 +0.935,0.550,0.738 +0.937,0.550,0.736 +0.939,0.549,0.734 +0.941,0.548,0.732 +0.943,0.547,0.730 +0.945,0.546,0.728 +0.947,0.545,0.727 +0.949,0.544,0.725 +0.950,0.543,0.723 +0.952,0.542,0.721 +0.954,0.541,0.719 +0.956,0.541,0.717 +0.958,0.540,0.715 +0.960,0.539,0.714 +0.962,0.538,0.712 +0.964,0.537,0.710 +0.965,0.536,0.708 +0.967,0.535,0.706 +0.969,0.534,0.704 +0.971,0.533,0.702 +0.973,0.532,0.701 +0.975,0.531,0.699 +0.976,0.531,0.697 +0.978,0.530,0.695 +0.980,0.529,0.693 +0.982,0.528,0.691 +0.984,0.527,0.689 +0.985,0.526,0.687 +0.987,0.525,0.686 +0.989,0.524,0.684 +0.991,0.523,0.682 +0.992,0.522,0.680 +0.994,0.521,0.678 diff --git a/pyqtgraph/colors/maps/CET-L1.csv b/pyqtgraph/colors/maps/CET-L1.csv new file mode 100644 index 00000000..c7005f38 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-L1.csv @@ -0,0 +1,256 @@ +0.000,0.000,0.000 +0.006,0.006,0.006 +0.011,0.011,0.011 +0.017,0.017,0.017 +0.022,0.022,0.022 +0.028,0.028,0.028 +0.034,0.034,0.034 +0.039,0.039,0.039 +0.045,0.045,0.045 +0.050,0.050,0.050 +0.054,0.054,0.054 +0.059,0.059,0.059 +0.063,0.063,0.063 +0.067,0.067,0.067 +0.071,0.071,0.071 +0.074,0.075,0.075 +0.078,0.078,0.078 +0.081,0.081,0.081 +0.085,0.085,0.085 +0.088,0.088,0.088 +0.091,0.091,0.091 +0.094,0.094,0.094 +0.097,0.097,0.097 +0.100,0.100,0.100 +0.103,0.103,0.103 +0.106,0.106,0.106 +0.109,0.109,0.109 +0.112,0.112,0.112 +0.115,0.115,0.115 +0.119,0.119,0.119 +0.122,0.122,0.122 +0.125,0.125,0.125 +0.128,0.128,0.128 +0.131,0.131,0.131 +0.134,0.134,0.134 +0.137,0.137,0.137 +0.141,0.141,0.141 +0.144,0.144,0.144 +0.147,0.147,0.147 +0.150,0.150,0.150 +0.153,0.153,0.153 +0.157,0.157,0.157 +0.160,0.160,0.160 +0.163,0.163,0.163 +0.166,0.166,0.166 +0.170,0.170,0.170 +0.173,0.173,0.173 +0.176,0.176,0.176 +0.179,0.179,0.179 +0.183,0.183,0.183 +0.186,0.186,0.186 +0.189,0.189,0.189 +0.193,0.193,0.193 +0.196,0.196,0.196 +0.199,0.199,0.199 +0.203,0.203,0.203 +0.206,0.206,0.206 +0.209,0.210,0.209 +0.213,0.213,0.213 +0.216,0.216,0.216 +0.220,0.220,0.220 +0.223,0.223,0.223 +0.226,0.227,0.227 +0.230,0.230,0.230 +0.233,0.233,0.233 +0.237,0.237,0.237 +0.240,0.240,0.240 +0.244,0.244,0.244 +0.247,0.247,0.247 +0.251,0.251,0.251 +0.254,0.254,0.254 +0.258,0.258,0.258 +0.261,0.261,0.261 +0.265,0.265,0.265 +0.268,0.268,0.268 +0.272,0.272,0.272 +0.275,0.275,0.275 +0.279,0.279,0.279 +0.282,0.282,0.282 +0.286,0.286,0.286 +0.289,0.289,0.289 +0.293,0.293,0.293 +0.297,0.297,0.297 +0.300,0.300,0.300 +0.304,0.304,0.304 +0.307,0.307,0.307 +0.311,0.311,0.311 +0.314,0.315,0.315 +0.318,0.318,0.318 +0.322,0.322,0.322 +0.325,0.325,0.325 +0.329,0.329,0.329 +0.333,0.333,0.333 +0.336,0.336,0.336 +0.340,0.340,0.340 +0.344,0.344,0.344 +0.347,0.347,0.347 +0.351,0.351,0.351 +0.355,0.355,0.355 +0.358,0.358,0.358 +0.362,0.362,0.362 +0.366,0.366,0.366 +0.369,0.370,0.370 +0.373,0.373,0.373 +0.377,0.377,0.377 +0.381,0.381,0.381 +0.384,0.384,0.384 +0.388,0.388,0.388 +0.392,0.392,0.392 +0.396,0.396,0.396 +0.399,0.399,0.399 +0.403,0.403,0.403 +0.407,0.407,0.407 +0.411,0.411,0.411 +0.415,0.415,0.415 +0.418,0.418,0.418 +0.422,0.422,0.422 +0.426,0.426,0.426 +0.430,0.430,0.430 +0.434,0.434,0.434 +0.437,0.437,0.437 +0.441,0.441,0.441 +0.445,0.445,0.445 +0.449,0.449,0.449 +0.453,0.453,0.453 +0.457,0.457,0.457 +0.460,0.461,0.461 +0.464,0.464,0.464 +0.468,0.468,0.468 +0.472,0.472,0.472 +0.476,0.476,0.476 +0.480,0.480,0.480 +0.484,0.484,0.484 +0.488,0.488,0.488 +0.492,0.492,0.492 +0.495,0.496,0.496 +0.499,0.499,0.499 +0.503,0.503,0.503 +0.507,0.507,0.507 +0.511,0.511,0.511 +0.515,0.515,0.515 +0.519,0.519,0.519 +0.523,0.523,0.523 +0.527,0.527,0.527 +0.531,0.531,0.531 +0.535,0.535,0.535 +0.539,0.539,0.539 +0.543,0.543,0.543 +0.547,0.547,0.547 +0.551,0.551,0.551 +0.555,0.555,0.555 +0.559,0.559,0.559 +0.563,0.563,0.563 +0.567,0.567,0.567 +0.571,0.571,0.571 +0.575,0.575,0.575 +0.579,0.579,0.579 +0.583,0.583,0.583 +0.587,0.587,0.587 +0.591,0.591,0.591 +0.595,0.595,0.595 +0.599,0.599,0.599 +0.603,0.603,0.603 +0.607,0.607,0.607 +0.611,0.611,0.611 +0.615,0.615,0.615 +0.619,0.619,0.619 +0.623,0.624,0.624 +0.628,0.628,0.628 +0.632,0.632,0.632 +0.636,0.636,0.636 +0.640,0.640,0.640 +0.644,0.644,0.644 +0.648,0.648,0.648 +0.652,0.652,0.652 +0.656,0.656,0.656 +0.660,0.660,0.660 +0.664,0.665,0.665 +0.669,0.669,0.669 +0.673,0.673,0.673 +0.677,0.677,0.677 +0.681,0.681,0.681 +0.685,0.685,0.685 +0.689,0.689,0.689 +0.694,0.694,0.694 +0.698,0.698,0.698 +0.702,0.702,0.702 +0.706,0.706,0.706 +0.710,0.710,0.710 +0.714,0.715,0.714 +0.719,0.719,0.719 +0.723,0.723,0.723 +0.727,0.727,0.727 +0.731,0.731,0.731 +0.735,0.735,0.735 +0.740,0.740,0.740 +0.744,0.744,0.744 +0.748,0.748,0.748 +0.752,0.752,0.752 +0.756,0.757,0.757 +0.761,0.761,0.761 +0.765,0.765,0.765 +0.769,0.769,0.769 +0.773,0.774,0.774 +0.778,0.778,0.778 +0.782,0.782,0.782 +0.786,0.786,0.786 +0.790,0.791,0.791 +0.795,0.795,0.795 +0.799,0.799,0.799 +0.803,0.803,0.803 +0.808,0.808,0.808 +0.812,0.812,0.812 +0.816,0.816,0.816 +0.820,0.821,0.821 +0.825,0.825,0.825 +0.829,0.829,0.829 +0.833,0.833,0.833 +0.838,0.838,0.838 +0.842,0.842,0.842 +0.846,0.846,0.846 +0.851,0.851,0.851 +0.855,0.855,0.855 +0.859,0.859,0.859 +0.864,0.864,0.864 +0.868,0.868,0.868 +0.872,0.872,0.872 +0.877,0.877,0.877 +0.881,0.881,0.881 +0.885,0.885,0.885 +0.890,0.890,0.890 +0.894,0.894,0.894 +0.898,0.899,0.898 +0.903,0.903,0.903 +0.907,0.907,0.907 +0.911,0.912,0.912 +0.916,0.916,0.916 +0.920,0.920,0.920 +0.925,0.925,0.925 +0.929,0.929,0.929 +0.933,0.934,0.934 +0.938,0.938,0.938 +0.942,0.942,0.942 +0.947,0.947,0.947 +0.951,0.951,0.951 +0.955,0.956,0.956 +0.960,0.960,0.960 +0.964,0.965,0.964 +0.969,0.969,0.969 +0.973,0.973,0.973 +0.978,0.978,0.978 +0.982,0.982,0.982 +0.987,0.987,0.987 +0.991,0.991,0.991 +0.995,0.996,0.996 +1.000,1.000,1.000 diff --git a/pyqtgraph/colors/maps/CET-L10.csv b/pyqtgraph/colors/maps/CET-L10.csv new file mode 100644 index 00000000..a1cb45d4 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-L10.csv @@ -0,0 +1,256 @@ +0.399,0.606,0.565 +0.402,0.607,0.563 +0.404,0.608,0.561 +0.407,0.609,0.559 +0.410,0.610,0.557 +0.413,0.611,0.555 +0.416,0.612,0.553 +0.419,0.613,0.552 +0.421,0.614,0.550 +0.424,0.615,0.548 +0.427,0.616,0.546 +0.430,0.617,0.544 +0.433,0.617,0.543 +0.436,0.618,0.541 +0.439,0.619,0.539 +0.442,0.620,0.537 +0.445,0.621,0.535 +0.448,0.622,0.534 +0.450,0.623,0.532 +0.453,0.624,0.530 +0.456,0.624,0.528 +0.459,0.625,0.527 +0.462,0.626,0.525 +0.465,0.627,0.523 +0.468,0.628,0.521 +0.471,0.629,0.520 +0.474,0.629,0.518 +0.478,0.630,0.516 +0.481,0.631,0.515 +0.484,0.632,0.513 +0.487,0.633,0.511 +0.490,0.633,0.509 +0.493,0.634,0.508 +0.496,0.635,0.506 +0.500,0.636,0.505 +0.503,0.636,0.503 +0.506,0.637,0.501 +0.509,0.638,0.500 +0.513,0.639,0.498 +0.516,0.639,0.496 +0.519,0.640,0.495 +0.523,0.641,0.493 +0.526,0.641,0.492 +0.530,0.642,0.490 +0.533,0.643,0.489 +0.537,0.643,0.487 +0.540,0.644,0.486 +0.544,0.644,0.484 +0.547,0.645,0.483 +0.551,0.645,0.481 +0.555,0.646,0.480 +0.558,0.647,0.478 +0.562,0.647,0.477 +0.566,0.648,0.475 +0.570,0.648,0.474 +0.574,0.648,0.473 +0.578,0.649,0.471 +0.582,0.649,0.470 +0.586,0.650,0.469 +0.590,0.650,0.467 +0.594,0.650,0.466 +0.598,0.651,0.465 +0.602,0.651,0.463 +0.607,0.651,0.462 +0.611,0.652,0.461 +0.616,0.652,0.460 +0.620,0.652,0.459 +0.625,0.652,0.458 +0.630,0.652,0.457 +0.634,0.652,0.456 +0.639,0.652,0.455 +0.644,0.652,0.454 +0.649,0.652,0.453 +0.654,0.652,0.452 +0.660,0.652,0.451 +0.665,0.652,0.450 +0.671,0.652,0.449 +0.676,0.652,0.449 +0.682,0.651,0.448 +0.687,0.651,0.447 +0.692,0.651,0.447 +0.697,0.651,0.446 +0.702,0.650,0.445 +0.707,0.650,0.445 +0.712,0.650,0.444 +0.717,0.650,0.443 +0.722,0.650,0.443 +0.726,0.650,0.442 +0.730,0.650,0.441 +0.735,0.650,0.440 +0.739,0.650,0.440 +0.743,0.650,0.439 +0.747,0.650,0.438 +0.751,0.650,0.438 +0.755,0.650,0.437 +0.759,0.651,0.436 +0.762,0.651,0.436 +0.766,0.651,0.435 +0.769,0.651,0.434 +0.773,0.652,0.434 +0.776,0.652,0.433 +0.779,0.652,0.432 +0.782,0.653,0.432 +0.785,0.653,0.431 +0.788,0.653,0.430 +0.791,0.654,0.430 +0.794,0.654,0.429 +0.796,0.655,0.428 +0.799,0.656,0.428 +0.801,0.656,0.427 +0.803,0.657,0.426 +0.806,0.657,0.426 +0.808,0.658,0.425 +0.810,0.659,0.424 +0.812,0.660,0.424 +0.814,0.660,0.423 +0.816,0.661,0.422 +0.818,0.662,0.422 +0.819,0.663,0.421 +0.821,0.664,0.420 +0.822,0.665,0.420 +0.824,0.666,0.419 +0.825,0.667,0.418 +0.826,0.668,0.418 +0.827,0.669,0.417 +0.829,0.670,0.416 +0.830,0.672,0.415 +0.830,0.673,0.415 +0.831,0.674,0.414 +0.832,0.675,0.414 +0.833,0.677,0.413 +0.834,0.678,0.413 +0.834,0.679,0.412 +0.835,0.680,0.412 +0.836,0.682,0.412 +0.836,0.683,0.412 +0.837,0.684,0.412 +0.838,0.685,0.412 +0.838,0.687,0.413 +0.839,0.688,0.413 +0.840,0.689,0.414 +0.840,0.690,0.414 +0.841,0.692,0.415 +0.841,0.693,0.416 +0.842,0.694,0.417 +0.842,0.695,0.418 +0.843,0.697,0.419 +0.843,0.698,0.420 +0.844,0.699,0.421 +0.844,0.700,0.423 +0.845,0.702,0.424 +0.845,0.703,0.426 +0.846,0.704,0.427 +0.846,0.706,0.429 +0.846,0.707,0.431 +0.847,0.708,0.433 +0.847,0.709,0.435 +0.847,0.711,0.437 +0.848,0.712,0.440 +0.848,0.713,0.442 +0.848,0.714,0.444 +0.848,0.716,0.447 +0.849,0.717,0.450 +0.849,0.718,0.453 +0.849,0.720,0.455 +0.849,0.721,0.458 +0.849,0.722,0.461 +0.849,0.723,0.465 +0.849,0.725,0.468 +0.850,0.726,0.471 +0.850,0.727,0.475 +0.850,0.729,0.478 +0.850,0.730,0.482 +0.850,0.731,0.486 +0.849,0.733,0.490 +0.849,0.734,0.494 +0.849,0.735,0.498 +0.849,0.737,0.502 +0.849,0.738,0.506 +0.849,0.739,0.510 +0.848,0.740,0.515 +0.848,0.742,0.519 +0.848,0.743,0.523 +0.848,0.744,0.527 +0.848,0.746,0.532 +0.848,0.747,0.536 +0.847,0.748,0.540 +0.847,0.749,0.545 +0.847,0.751,0.549 +0.847,0.752,0.553 +0.847,0.753,0.557 +0.847,0.755,0.562 +0.847,0.756,0.566 +0.846,0.757,0.570 +0.846,0.758,0.574 +0.846,0.760,0.579 +0.846,0.761,0.583 +0.846,0.762,0.587 +0.846,0.763,0.591 +0.846,0.765,0.596 +0.846,0.766,0.600 +0.845,0.767,0.604 +0.845,0.768,0.608 +0.845,0.769,0.613 +0.845,0.771,0.617 +0.845,0.772,0.621 +0.845,0.773,0.625 +0.845,0.774,0.630 +0.844,0.776,0.634 +0.844,0.777,0.638 +0.844,0.778,0.642 +0.844,0.779,0.646 +0.844,0.780,0.651 +0.844,0.782,0.655 +0.843,0.783,0.659 +0.843,0.784,0.663 +0.843,0.785,0.668 +0.843,0.787,0.672 +0.843,0.788,0.676 +0.843,0.789,0.680 +0.842,0.790,0.684 +0.842,0.791,0.689 +0.842,0.793,0.693 +0.842,0.794,0.697 +0.842,0.795,0.701 +0.841,0.796,0.706 +0.841,0.797,0.710 +0.841,0.799,0.714 +0.841,0.800,0.718 +0.841,0.801,0.722 +0.840,0.802,0.727 +0.840,0.804,0.731 +0.840,0.805,0.735 +0.840,0.806,0.739 +0.839,0.807,0.744 +0.839,0.808,0.748 +0.839,0.810,0.752 +0.838,0.811,0.756 +0.838,0.812,0.760 +0.838,0.813,0.765 +0.838,0.814,0.769 +0.837,0.816,0.773 +0.837,0.817,0.777 +0.837,0.818,0.782 +0.836,0.819,0.786 +0.836,0.820,0.790 +0.836,0.822,0.794 +0.835,0.823,0.798 +0.835,0.824,0.803 +0.835,0.825,0.807 +0.834,0.826,0.811 +0.834,0.828,0.815 +0.833,0.829,0.820 +0.833,0.830,0.824 +0.833,0.831,0.828 +0.832,0.832,0.832 diff --git a/pyqtgraph/colors/maps/CET-L11.csv b/pyqtgraph/colors/maps/CET-L11.csv new file mode 100644 index 00000000..196d703d --- /dev/null +++ b/pyqtgraph/colors/maps/CET-L11.csv @@ -0,0 +1,256 @@ +0.438,0.678,0.361 +0.443,0.678,0.361 +0.449,0.679,0.361 +0.454,0.679,0.362 +0.459,0.679,0.362 +0.465,0.680,0.363 +0.470,0.680,0.363 +0.475,0.680,0.364 +0.480,0.680,0.364 +0.485,0.681,0.365 +0.491,0.681,0.365 +0.496,0.681,0.366 +0.501,0.682,0.366 +0.506,0.682,0.366 +0.511,0.682,0.367 +0.515,0.682,0.367 +0.520,0.683,0.368 +0.525,0.683,0.368 +0.530,0.683,0.369 +0.535,0.683,0.369 +0.539,0.684,0.370 +0.544,0.684,0.370 +0.549,0.684,0.371 +0.554,0.684,0.371 +0.558,0.685,0.372 +0.563,0.685,0.372 +0.567,0.685,0.373 +0.572,0.685,0.373 +0.577,0.686,0.374 +0.581,0.686,0.374 +0.585,0.686,0.374 +0.590,0.686,0.375 +0.594,0.687,0.375 +0.599,0.687,0.376 +0.603,0.687,0.376 +0.608,0.687,0.377 +0.612,0.687,0.377 +0.616,0.688,0.378 +0.621,0.688,0.378 +0.625,0.688,0.379 +0.629,0.688,0.379 +0.633,0.689,0.380 +0.638,0.689,0.380 +0.642,0.689,0.381 +0.646,0.689,0.381 +0.650,0.689,0.382 +0.654,0.690,0.382 +0.658,0.690,0.383 +0.662,0.690,0.383 +0.666,0.690,0.384 +0.671,0.690,0.384 +0.675,0.691,0.385 +0.679,0.691,0.385 +0.683,0.691,0.386 +0.687,0.691,0.386 +0.691,0.691,0.387 +0.694,0.692,0.387 +0.698,0.692,0.388 +0.702,0.692,0.388 +0.706,0.692,0.389 +0.710,0.692,0.389 +0.714,0.693,0.390 +0.718,0.693,0.390 +0.722,0.693,0.391 +0.725,0.693,0.391 +0.729,0.694,0.392 +0.733,0.694,0.392 +0.737,0.694,0.393 +0.740,0.694,0.393 +0.744,0.694,0.394 +0.748,0.695,0.394 +0.751,0.695,0.395 +0.755,0.695,0.395 +0.759,0.695,0.396 +0.762,0.695,0.396 +0.766,0.696,0.397 +0.769,0.696,0.398 +0.773,0.696,0.398 +0.776,0.696,0.399 +0.780,0.697,0.399 +0.783,0.697,0.400 +0.787,0.697,0.400 +0.790,0.697,0.401 +0.794,0.698,0.401 +0.797,0.698,0.402 +0.800,0.698,0.402 +0.804,0.698,0.403 +0.807,0.699,0.403 +0.810,0.699,0.404 +0.814,0.699,0.405 +0.817,0.700,0.405 +0.820,0.700,0.406 +0.823,0.700,0.406 +0.826,0.700,0.407 +0.830,0.701,0.407 +0.833,0.701,0.408 +0.836,0.701,0.408 +0.839,0.702,0.409 +0.842,0.702,0.410 +0.845,0.702,0.410 +0.848,0.703,0.411 +0.851,0.703,0.411 +0.853,0.704,0.412 +0.856,0.704,0.412 +0.859,0.704,0.413 +0.862,0.705,0.414 +0.864,0.705,0.414 +0.867,0.706,0.415 +0.870,0.706,0.415 +0.872,0.707,0.416 +0.875,0.707,0.417 +0.877,0.708,0.417 +0.879,0.709,0.418 +0.882,0.709,0.418 +0.884,0.710,0.419 +0.886,0.710,0.420 +0.888,0.711,0.420 +0.890,0.712,0.421 +0.892,0.713,0.421 +0.894,0.713,0.422 +0.896,0.714,0.423 +0.897,0.715,0.423 +0.899,0.716,0.424 +0.900,0.717,0.425 +0.901,0.718,0.425 +0.902,0.719,0.426 +0.903,0.720,0.427 +0.903,0.722,0.428 +0.904,0.723,0.428 +0.904,0.725,0.429 +0.904,0.726,0.430 +0.904,0.727,0.431 +0.904,0.729,0.432 +0.905,0.730,0.433 +0.905,0.732,0.434 +0.905,0.733,0.436 +0.905,0.734,0.437 +0.905,0.736,0.438 +0.906,0.737,0.440 +0.906,0.739,0.441 +0.906,0.740,0.443 +0.906,0.741,0.445 +0.906,0.743,0.446 +0.906,0.744,0.448 +0.906,0.746,0.450 +0.907,0.747,0.452 +0.907,0.748,0.454 +0.907,0.750,0.456 +0.907,0.751,0.458 +0.907,0.753,0.461 +0.907,0.754,0.463 +0.907,0.755,0.465 +0.907,0.757,0.468 +0.907,0.758,0.471 +0.907,0.759,0.473 +0.908,0.761,0.476 +0.908,0.762,0.479 +0.908,0.763,0.481 +0.908,0.765,0.484 +0.908,0.766,0.487 +0.908,0.768,0.490 +0.908,0.769,0.494 +0.908,0.770,0.497 +0.908,0.772,0.500 +0.908,0.773,0.503 +0.908,0.774,0.507 +0.907,0.776,0.510 +0.907,0.777,0.514 +0.907,0.778,0.517 +0.907,0.780,0.521 +0.907,0.781,0.525 +0.907,0.782,0.529 +0.907,0.784,0.532 +0.907,0.785,0.536 +0.907,0.786,0.540 +0.906,0.788,0.545 +0.906,0.789,0.549 +0.906,0.790,0.553 +0.906,0.792,0.557 +0.905,0.793,0.562 +0.905,0.794,0.566 +0.905,0.796,0.570 +0.905,0.797,0.575 +0.905,0.798,0.579 +0.904,0.800,0.583 +0.904,0.801,0.588 +0.904,0.802,0.592 +0.904,0.804,0.596 +0.904,0.805,0.601 +0.903,0.806,0.605 +0.903,0.807,0.609 +0.903,0.809,0.614 +0.903,0.810,0.618 +0.903,0.811,0.622 +0.903,0.813,0.627 +0.902,0.814,0.631 +0.902,0.815,0.635 +0.902,0.816,0.639 +0.902,0.818,0.644 +0.902,0.819,0.648 +0.902,0.820,0.652 +0.901,0.821,0.657 +0.901,0.823,0.661 +0.901,0.824,0.665 +0.901,0.825,0.669 +0.901,0.826,0.674 +0.901,0.828,0.678 +0.900,0.829,0.682 +0.900,0.830,0.687 +0.900,0.831,0.691 +0.900,0.833,0.695 +0.900,0.834,0.699 +0.900,0.835,0.704 +0.899,0.836,0.708 +0.899,0.838,0.712 +0.899,0.839,0.717 +0.899,0.840,0.721 +0.899,0.841,0.725 +0.898,0.842,0.729 +0.898,0.844,0.734 +0.898,0.845,0.738 +0.898,0.846,0.742 +0.898,0.847,0.746 +0.897,0.849,0.751 +0.897,0.850,0.755 +0.897,0.851,0.759 +0.897,0.852,0.763 +0.897,0.854,0.768 +0.896,0.855,0.772 +0.896,0.856,0.776 +0.896,0.857,0.781 +0.896,0.858,0.785 +0.895,0.860,0.789 +0.895,0.861,0.793 +0.895,0.862,0.798 +0.894,0.863,0.802 +0.894,0.865,0.806 +0.894,0.866,0.810 +0.894,0.867,0.815 +0.893,0.868,0.819 +0.893,0.869,0.823 +0.893,0.871,0.828 +0.892,0.872,0.832 +0.892,0.873,0.836 +0.892,0.874,0.840 +0.891,0.875,0.845 +0.891,0.877,0.849 +0.891,0.878,0.853 +0.890,0.879,0.858 +0.890,0.880,0.862 +0.889,0.882,0.866 +0.889,0.883,0.870 +0.889,0.884,0.875 +0.888,0.885,0.879 +0.888,0.886,0.883 +0.887,0.888,0.888 diff --git a/pyqtgraph/colors/maps/CET-L12.csv b/pyqtgraph/colors/maps/CET-L12.csv new file mode 100644 index 00000000..61d0b20c --- /dev/null +++ b/pyqtgraph/colors/maps/CET-L12.csv @@ -0,0 +1,256 @@ +0.943,0.944,0.943 +0.940,0.942,0.943 +0.937,0.940,0.943 +0.934,0.938,0.943 +0.931,0.936,0.943 +0.928,0.934,0.942 +0.925,0.932,0.942 +0.922,0.930,0.942 +0.919,0.929,0.942 +0.917,0.927,0.941 +0.914,0.925,0.941 +0.911,0.923,0.941 +0.908,0.921,0.941 +0.905,0.919,0.940 +0.902,0.917,0.940 +0.899,0.916,0.940 +0.896,0.914,0.939 +0.893,0.912,0.939 +0.890,0.910,0.939 +0.887,0.908,0.939 +0.884,0.906,0.938 +0.881,0.904,0.938 +0.878,0.903,0.938 +0.875,0.901,0.937 +0.872,0.899,0.937 +0.869,0.897,0.937 +0.866,0.895,0.937 +0.863,0.893,0.936 +0.860,0.892,0.936 +0.857,0.890,0.936 +0.854,0.888,0.935 +0.851,0.886,0.935 +0.848,0.884,0.935 +0.845,0.882,0.934 +0.842,0.880,0.934 +0.839,0.879,0.934 +0.836,0.877,0.933 +0.833,0.875,0.933 +0.830,0.873,0.933 +0.827,0.871,0.932 +0.824,0.869,0.932 +0.821,0.868,0.931 +0.818,0.866,0.931 +0.815,0.864,0.931 +0.812,0.862,0.930 +0.809,0.860,0.930 +0.806,0.858,0.930 +0.803,0.857,0.929 +0.800,0.855,0.929 +0.797,0.853,0.928 +0.794,0.851,0.928 +0.791,0.849,0.928 +0.788,0.847,0.927 +0.785,0.846,0.927 +0.782,0.844,0.926 +0.779,0.842,0.926 +0.776,0.840,0.925 +0.773,0.838,0.925 +0.770,0.836,0.925 +0.767,0.835,0.924 +0.764,0.833,0.924 +0.761,0.831,0.923 +0.758,0.829,0.923 +0.755,0.827,0.922 +0.752,0.825,0.922 +0.749,0.824,0.921 +0.746,0.822,0.921 +0.743,0.820,0.920 +0.740,0.818,0.920 +0.737,0.816,0.919 +0.734,0.815,0.919 +0.731,0.813,0.918 +0.728,0.811,0.918 +0.725,0.809,0.917 +0.722,0.807,0.917 +0.719,0.805,0.916 +0.716,0.804,0.915 +0.713,0.802,0.915 +0.710,0.800,0.914 +0.707,0.798,0.914 +0.704,0.796,0.913 +0.701,0.794,0.912 +0.698,0.793,0.912 +0.695,0.791,0.911 +0.692,0.789,0.911 +0.689,0.787,0.910 +0.686,0.785,0.909 +0.684,0.784,0.909 +0.681,0.782,0.908 +0.678,0.780,0.907 +0.675,0.778,0.906 +0.672,0.776,0.906 +0.669,0.774,0.905 +0.666,0.773,0.904 +0.663,0.771,0.903 +0.660,0.769,0.903 +0.658,0.767,0.902 +0.655,0.765,0.901 +0.652,0.764,0.900 +0.649,0.762,0.899 +0.646,0.760,0.898 +0.643,0.758,0.897 +0.641,0.756,0.897 +0.638,0.754,0.896 +0.635,0.753,0.895 +0.632,0.751,0.894 +0.630,0.749,0.893 +0.627,0.747,0.892 +0.624,0.745,0.891 +0.622,0.743,0.889 +0.619,0.742,0.888 +0.617,0.740,0.887 +0.614,0.738,0.886 +0.612,0.736,0.884 +0.609,0.734,0.883 +0.607,0.732,0.882 +0.604,0.731,0.880 +0.602,0.729,0.879 +0.600,0.727,0.878 +0.597,0.725,0.876 +0.595,0.723,0.875 +0.592,0.721,0.874 +0.590,0.720,0.872 +0.588,0.718,0.871 +0.585,0.716,0.869 +0.583,0.714,0.868 +0.581,0.712,0.866 +0.578,0.710,0.865 +0.576,0.708,0.863 +0.574,0.707,0.862 +0.571,0.705,0.860 +0.569,0.703,0.859 +0.567,0.701,0.857 +0.565,0.699,0.856 +0.562,0.697,0.854 +0.560,0.696,0.853 +0.558,0.694,0.851 +0.556,0.692,0.849 +0.553,0.690,0.848 +0.551,0.688,0.846 +0.549,0.686,0.845 +0.547,0.685,0.843 +0.545,0.683,0.841 +0.542,0.681,0.840 +0.540,0.679,0.838 +0.538,0.677,0.836 +0.536,0.675,0.835 +0.534,0.673,0.833 +0.532,0.672,0.831 +0.530,0.670,0.830 +0.528,0.668,0.828 +0.526,0.666,0.826 +0.524,0.664,0.824 +0.521,0.662,0.823 +0.519,0.661,0.821 +0.517,0.659,0.819 +0.515,0.657,0.817 +0.513,0.655,0.816 +0.511,0.653,0.814 +0.509,0.651,0.812 +0.507,0.650,0.810 +0.505,0.648,0.808 +0.503,0.646,0.807 +0.502,0.644,0.805 +0.500,0.642,0.803 +0.498,0.640,0.801 +0.496,0.639,0.799 +0.494,0.637,0.797 +0.492,0.635,0.795 +0.490,0.633,0.793 +0.488,0.631,0.791 +0.486,0.629,0.790 +0.484,0.628,0.788 +0.482,0.626,0.786 +0.480,0.624,0.784 +0.478,0.622,0.782 +0.476,0.620,0.781 +0.474,0.618,0.779 +0.472,0.617,0.777 +0.470,0.615,0.776 +0.468,0.613,0.774 +0.466,0.611,0.773 +0.463,0.609,0.771 +0.461,0.608,0.769 +0.459,0.606,0.768 +0.456,0.604,0.767 +0.454,0.602,0.765 +0.452,0.600,0.764 +0.449,0.599,0.762 +0.447,0.597,0.761 +0.444,0.595,0.760 +0.442,0.593,0.758 +0.439,0.592,0.757 +0.437,0.590,0.756 +0.434,0.588,0.754 +0.432,0.586,0.753 +0.429,0.585,0.752 +0.427,0.583,0.751 +0.424,0.581,0.749 +0.421,0.579,0.748 +0.419,0.578,0.747 +0.416,0.576,0.746 +0.413,0.574,0.745 +0.410,0.572,0.744 +0.408,0.571,0.742 +0.405,0.569,0.741 +0.402,0.567,0.740 +0.399,0.565,0.739 +0.396,0.564,0.738 +0.394,0.562,0.737 +0.391,0.560,0.736 +0.388,0.558,0.735 +0.385,0.557,0.734 +0.382,0.555,0.733 +0.379,0.553,0.732 +0.376,0.552,0.731 +0.373,0.550,0.730 +0.370,0.548,0.729 +0.367,0.546,0.728 +0.364,0.545,0.727 +0.361,0.543,0.726 +0.357,0.541,0.725 +0.354,0.540,0.724 +0.351,0.538,0.723 +0.348,0.536,0.722 +0.345,0.534,0.721 +0.341,0.533,0.721 +0.338,0.531,0.720 +0.335,0.529,0.719 +0.331,0.528,0.718 +0.328,0.526,0.717 +0.324,0.524,0.716 +0.321,0.523,0.715 +0.318,0.521,0.715 +0.314,0.519,0.714 +0.310,0.518,0.713 +0.307,0.516,0.712 +0.303,0.514,0.711 +0.300,0.513,0.710 +0.296,0.511,0.710 +0.292,0.509,0.709 +0.288,0.508,0.708 +0.285,0.506,0.707 +0.281,0.504,0.706 +0.277,0.503,0.706 +0.273,0.501,0.705 +0.269,0.499,0.704 +0.265,0.498,0.703 +0.260,0.496,0.703 +0.256,0.494,0.702 +0.252,0.493,0.701 +0.248,0.491,0.700 +0.243,0.489,0.700 +0.239,0.488,0.699 +0.234,0.486,0.698 +0.230,0.484,0.698 diff --git a/pyqtgraph/colors/maps/CET-L13.csv b/pyqtgraph/colors/maps/CET-L13.csv new file mode 100644 index 00000000..f4ee4bd7 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-L13.csv @@ -0,0 +1,256 @@ +0.000,0.000,0.000 +0.008,0.002,0.000 +0.016,0.003,0.000 +0.024,0.005,0.000 +0.032,0.006,0.000 +0.040,0.008,0.000 +0.048,0.009,0.000 +0.055,0.010,0.000 +0.062,0.012,0.000 +0.069,0.013,0.000 +0.075,0.014,0.000 +0.081,0.015,0.000 +0.086,0.016,0.000 +0.092,0.017,0.000 +0.097,0.018,0.000 +0.102,0.019,0.000 +0.107,0.020,0.000 +0.112,0.021,0.000 +0.116,0.022,0.000 +0.121,0.023,0.000 +0.125,0.024,0.000 +0.129,0.024,0.000 +0.133,0.025,0.000 +0.137,0.026,0.000 +0.141,0.027,0.000 +0.145,0.027,0.000 +0.149,0.028,0.000 +0.152,0.029,0.000 +0.156,0.029,0.000 +0.159,0.030,0.000 +0.163,0.031,0.000 +0.166,0.031,0.000 +0.169,0.032,0.000 +0.173,0.033,0.000 +0.176,0.033,0.000 +0.179,0.034,0.000 +0.182,0.034,0.000 +0.185,0.035,0.000 +0.188,0.036,0.000 +0.191,0.036,0.000 +0.194,0.037,0.000 +0.197,0.037,0.000 +0.200,0.038,0.000 +0.203,0.038,0.000 +0.206,0.039,0.000 +0.209,0.039,0.000 +0.212,0.040,0.000 +0.215,0.041,0.000 +0.218,0.041,0.000 +0.221,0.042,0.000 +0.223,0.042,0.000 +0.226,0.043,0.000 +0.229,0.043,0.000 +0.232,0.044,0.000 +0.235,0.044,0.000 +0.238,0.045,0.000 +0.241,0.046,0.000 +0.244,0.046,0.000 +0.247,0.047,0.000 +0.250,0.047,0.000 +0.253,0.048,0.000 +0.256,0.048,0.000 +0.259,0.049,0.000 +0.262,0.049,0.000 +0.265,0.050,0.000 +0.268,0.051,0.000 +0.271,0.051,0.000 +0.274,0.052,0.000 +0.277,0.052,0.000 +0.280,0.053,0.000 +0.283,0.053,0.000 +0.286,0.054,0.000 +0.289,0.055,0.000 +0.292,0.055,0.000 +0.295,0.056,0.000 +0.298,0.056,0.000 +0.301,0.057,0.000 +0.304,0.057,0.000 +0.307,0.058,0.000 +0.310,0.059,0.000 +0.313,0.059,0.000 +0.316,0.060,0.000 +0.319,0.060,0.000 +0.322,0.061,0.000 +0.325,0.061,0.000 +0.328,0.062,0.000 +0.332,0.063,0.000 +0.335,0.063,0.000 +0.338,0.064,0.000 +0.341,0.064,0.000 +0.344,0.065,0.000 +0.347,0.066,0.000 +0.350,0.066,0.000 +0.353,0.067,0.000 +0.356,0.067,0.000 +0.359,0.068,0.000 +0.363,0.068,0.000 +0.366,0.069,0.000 +0.369,0.070,0.000 +0.372,0.070,0.000 +0.375,0.071,0.000 +0.378,0.071,0.000 +0.381,0.072,0.000 +0.384,0.073,0.000 +0.388,0.073,0.000 +0.391,0.074,0.000 +0.394,0.074,0.000 +0.397,0.075,0.000 +0.400,0.076,0.000 +0.403,0.076,0.000 +0.406,0.077,0.000 +0.410,0.077,0.000 +0.413,0.078,0.000 +0.416,0.079,0.000 +0.419,0.079,0.000 +0.422,0.080,0.000 +0.426,0.080,0.000 +0.429,0.081,0.000 +0.432,0.082,0.000 +0.435,0.082,0.000 +0.438,0.083,0.000 +0.441,0.083,0.000 +0.445,0.084,0.000 +0.448,0.085,0.000 +0.451,0.085,0.000 +0.454,0.086,0.000 +0.458,0.086,0.000 +0.461,0.087,0.000 +0.464,0.088,0.000 +0.467,0.088,0.000 +0.470,0.089,0.000 +0.474,0.089,0.000 +0.477,0.090,0.000 +0.480,0.091,0.000 +0.483,0.091,0.000 +0.487,0.092,0.000 +0.490,0.093,0.000 +0.493,0.093,0.000 +0.496,0.094,0.000 +0.500,0.094,0.000 +0.503,0.095,0.000 +0.506,0.096,0.000 +0.510,0.096,0.000 +0.513,0.097,0.000 +0.516,0.098,0.000 +0.519,0.098,0.000 +0.523,0.099,0.000 +0.526,0.099,0.000 +0.529,0.100,0.000 +0.533,0.101,0.000 +0.536,0.101,0.000 +0.539,0.102,0.000 +0.543,0.102,0.000 +0.546,0.103,0.000 +0.549,0.104,0.000 +0.552,0.104,0.000 +0.556,0.105,0.000 +0.559,0.106,0.000 +0.563,0.106,0.000 +0.566,0.107,0.000 +0.569,0.108,0.000 +0.572,0.108,0.000 +0.576,0.109,0.000 +0.579,0.109,0.000 +0.583,0.110,0.000 +0.586,0.111,0.000 +0.589,0.111,0.000 +0.593,0.112,0.000 +0.596,0.113,0.000 +0.599,0.113,0.000 +0.603,0.114,0.000 +0.606,0.114,0.000 +0.609,0.115,0.000 +0.613,0.116,0.000 +0.616,0.116,0.000 +0.620,0.117,0.000 +0.623,0.118,0.000 +0.626,0.118,0.000 +0.630,0.119,0.000 +0.633,0.120,0.000 +0.637,0.120,0.000 +0.640,0.121,0.000 +0.643,0.122,0.000 +0.647,0.122,0.000 +0.650,0.123,0.000 +0.654,0.123,0.000 +0.657,0.124,0.000 +0.660,0.125,0.000 +0.664,0.125,0.000 +0.667,0.126,0.000 +0.671,0.127,0.000 +0.674,0.127,0.000 +0.678,0.128,0.000 +0.681,0.129,0.000 +0.685,0.129,0.000 +0.688,0.130,0.000 +0.691,0.131,0.000 +0.695,0.131,0.000 +0.698,0.132,0.000 +0.702,0.133,0.000 +0.705,0.133,0.000 +0.709,0.134,0.000 +0.712,0.135,0.000 +0.716,0.135,0.000 +0.719,0.136,0.000 +0.723,0.136,0.000 +0.726,0.137,0.000 +0.730,0.138,0.000 +0.733,0.138,0.000 +0.737,0.139,0.000 +0.740,0.140,0.000 +0.744,0.140,0.000 +0.747,0.141,0.000 +0.751,0.142,0.000 +0.754,0.142,0.000 +0.758,0.143,0.000 +0.761,0.144,0.000 +0.765,0.144,0.000 +0.768,0.145,0.000 +0.772,0.146,0.000 +0.775,0.146,0.000 +0.779,0.147,0.000 +0.782,0.148,0.000 +0.786,0.148,0.000 +0.789,0.149,0.000 +0.793,0.150,0.000 +0.796,0.150,0.000 +0.800,0.151,0.000 +0.803,0.152,0.000 +0.807,0.152,0.000 +0.810,0.153,0.000 +0.814,0.154,0.000 +0.818,0.154,0.000 +0.821,0.155,0.000 +0.825,0.156,0.000 +0.828,0.156,0.000 +0.832,0.157,0.000 +0.835,0.158,0.000 +0.839,0.158,0.000 +0.842,0.159,0.000 +0.846,0.160,0.000 +0.850,0.160,0.000 +0.853,0.161,0.000 +0.857,0.162,0.000 +0.860,0.163,0.000 +0.864,0.163,0.000 +0.868,0.164,0.000 +0.871,0.165,0.000 +0.875,0.165,0.000 +0.878,0.166,0.000 +0.882,0.167,0.000 +0.886,0.167,0.000 +0.889,0.168,0.000 +0.893,0.169,0.000 +0.896,0.169,0.000 +0.900,0.170,0.000 diff --git a/pyqtgraph/colors/maps/CET-L14.csv b/pyqtgraph/colors/maps/CET-L14.csv new file mode 100644 index 00000000..26a09087 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-L14.csv @@ -0,0 +1,256 @@ +0.000,0.000,0.000 +0.000,0.004,0.000 +0.000,0.007,0.000 +0.000,0.011,0.000 +0.000,0.015,0.000 +0.000,0.018,0.000 +0.000,0.022,0.000 +0.000,0.025,0.000 +0.000,0.029,0.000 +0.000,0.032,0.000 +0.000,0.036,0.000 +0.000,0.040,0.000 +0.000,0.043,0.000 +0.000,0.047,0.000 +0.000,0.050,0.000 +0.000,0.053,0.000 +0.000,0.056,0.000 +0.000,0.059,0.000 +0.000,0.061,0.000 +0.000,0.064,0.000 +0.000,0.067,0.000 +0.000,0.069,0.000 +0.000,0.071,0.000 +0.000,0.074,0.000 +0.000,0.076,0.000 +0.000,0.078,0.000 +0.000,0.081,0.000 +0.000,0.083,0.000 +0.000,0.085,0.000 +0.000,0.087,0.000 +0.000,0.089,0.000 +0.000,0.091,0.000 +0.000,0.093,0.000 +0.000,0.095,0.000 +0.000,0.097,0.000 +0.000,0.098,0.000 +0.000,0.100,0.000 +0.000,0.102,0.000 +0.000,0.104,0.000 +0.000,0.106,0.000 +0.000,0.107,0.000 +0.000,0.109,0.000 +0.000,0.111,0.000 +0.000,0.112,0.000 +0.000,0.114,0.000 +0.000,0.115,0.000 +0.000,0.117,0.000 +0.000,0.119,0.000 +0.000,0.120,0.000 +0.000,0.122,0.000 +0.000,0.123,0.000 +0.000,0.125,0.000 +0.000,0.127,0.000 +0.000,0.128,0.000 +0.000,0.130,0.000 +0.000,0.132,0.000 +0.000,0.133,0.000 +0.000,0.135,0.000 +0.000,0.136,0.000 +0.000,0.138,0.000 +0.000,0.140,0.000 +0.000,0.141,0.000 +0.000,0.143,0.000 +0.000,0.145,0.000 +0.000,0.146,0.000 +0.000,0.148,0.000 +0.000,0.150,0.000 +0.000,0.151,0.000 +0.000,0.153,0.000 +0.000,0.154,0.000 +0.000,0.156,0.000 +0.000,0.158,0.000 +0.000,0.159,0.000 +0.000,0.161,0.000 +0.000,0.163,0.000 +0.000,0.165,0.000 +0.000,0.166,0.000 +0.000,0.168,0.000 +0.000,0.170,0.000 +0.000,0.171,0.000 +0.000,0.173,0.000 +0.000,0.175,0.000 +0.000,0.176,0.000 +0.000,0.178,0.000 +0.000,0.180,0.000 +0.000,0.181,0.000 +0.000,0.183,0.000 +0.000,0.185,0.000 +0.000,0.187,0.000 +0.000,0.188,0.000 +0.000,0.190,0.000 +0.000,0.192,0.000 +0.000,0.193,0.000 +0.000,0.195,0.000 +0.000,0.197,0.000 +0.000,0.199,0.000 +0.000,0.200,0.000 +0.000,0.202,0.000 +0.000,0.204,0.000 +0.000,0.205,0.000 +0.000,0.207,0.000 +0.000,0.209,0.000 +0.000,0.211,0.000 +0.000,0.212,0.000 +0.000,0.214,0.000 +0.000,0.216,0.000 +0.000,0.218,0.000 +0.000,0.219,0.000 +0.000,0.221,0.000 +0.000,0.223,0.000 +0.000,0.225,0.000 +0.000,0.226,0.000 +0.000,0.228,0.000 +0.000,0.230,0.000 +0.000,0.232,0.000 +0.000,0.234,0.000 +0.000,0.235,0.000 +0.000,0.237,0.000 +0.000,0.239,0.000 +0.000,0.241,0.000 +0.000,0.242,0.000 +0.000,0.244,0.000 +0.000,0.246,0.000 +0.000,0.248,0.000 +0.000,0.250,0.000 +0.000,0.251,0.000 +0.000,0.253,0.000 +0.000,0.255,0.000 +0.000,0.257,0.000 +0.000,0.259,0.000 +0.000,0.260,0.000 +0.000,0.262,0.000 +0.000,0.264,0.000 +0.000,0.266,0.000 +0.000,0.268,0.000 +0.000,0.269,0.000 +0.000,0.271,0.000 +0.000,0.273,0.000 +0.000,0.275,0.000 +0.000,0.277,0.000 +0.000,0.278,0.000 +0.000,0.280,0.000 +0.000,0.282,0.000 +0.000,0.284,0.000 +0.000,0.286,0.000 +0.000,0.288,0.000 +0.000,0.289,0.000 +0.000,0.291,0.000 +0.000,0.293,0.000 +0.000,0.295,0.000 +0.000,0.297,0.000 +0.000,0.299,0.000 +0.000,0.300,0.000 +0.000,0.302,0.000 +0.000,0.304,0.000 +0.000,0.306,0.000 +0.000,0.308,0.000 +0.000,0.310,0.000 +0.000,0.312,0.000 +0.000,0.313,0.000 +0.000,0.315,0.000 +0.000,0.317,0.000 +0.000,0.319,0.000 +0.000,0.321,0.000 +0.000,0.323,0.000 +0.000,0.325,0.000 +0.000,0.327,0.000 +0.000,0.328,0.000 +0.000,0.330,0.000 +0.000,0.332,0.000 +0.000,0.334,0.000 +0.000,0.336,0.000 +0.000,0.338,0.000 +0.000,0.340,0.000 +0.000,0.342,0.000 +0.000,0.343,0.000 +0.000,0.345,0.000 +0.000,0.347,0.000 +0.000,0.349,0.000 +0.000,0.351,0.000 +0.000,0.353,0.000 +0.000,0.355,0.000 +0.000,0.357,0.000 +0.000,0.359,0.000 +0.000,0.361,0.000 +0.000,0.362,0.000 +0.000,0.364,0.000 +0.000,0.366,0.000 +0.000,0.368,0.000 +0.000,0.370,0.000 +0.000,0.372,0.000 +0.000,0.374,0.000 +0.000,0.376,0.000 +0.000,0.378,0.000 +0.000,0.380,0.000 +0.000,0.382,0.000 +0.000,0.384,0.000 +0.000,0.385,0.000 +0.000,0.387,0.000 +0.000,0.389,0.000 +0.000,0.391,0.000 +0.000,0.393,0.000 +0.000,0.395,0.000 +0.000,0.397,0.000 +0.000,0.399,0.000 +0.000,0.401,0.000 +0.000,0.403,0.000 +0.000,0.405,0.000 +0.000,0.407,0.000 +0.000,0.409,0.000 +0.000,0.411,0.000 +0.000,0.413,0.000 +0.000,0.415,0.000 +0.000,0.417,0.000 +0.000,0.418,0.000 +0.000,0.420,0.000 +0.000,0.422,0.000 +0.000,0.424,0.000 +0.000,0.426,0.000 +0.000,0.428,0.000 +0.000,0.430,0.000 +0.000,0.432,0.000 +0.000,0.434,0.000 +0.000,0.436,0.000 +0.000,0.438,0.000 +0.000,0.440,0.000 +0.000,0.442,0.000 +0.000,0.444,0.000 +0.000,0.446,0.000 +0.000,0.448,0.000 +0.000,0.450,0.000 +0.000,0.452,0.000 +0.000,0.454,0.000 +0.000,0.456,0.000 +0.000,0.458,0.000 +0.000,0.460,0.000 +0.000,0.462,0.000 +0.000,0.464,0.000 +0.000,0.466,0.000 +0.000,0.468,0.000 +0.000,0.470,0.000 +0.000,0.472,0.000 +0.000,0.474,0.000 +0.000,0.476,0.000 +0.000,0.478,0.000 +0.000,0.480,0.000 +0.000,0.482,0.000 +0.000,0.484,0.000 +0.000,0.486,0.000 +0.000,0.488,0.000 +0.000,0.490,0.000 +0.000,0.492,0.000 +0.000,0.494,0.000 +0.000,0.496,0.000 +0.000,0.498,0.000 +0.000,0.500,0.000 diff --git a/pyqtgraph/colors/maps/CET-L15.csv b/pyqtgraph/colors/maps/CET-L15.csv new file mode 100644 index 00000000..df666891 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-L15.csv @@ -0,0 +1,256 @@ +0.000,0.000,0.000 +0.001,0.002,0.007 +0.001,0.005,0.015 +0.002,0.007,0.022 +0.003,0.010,0.030 +0.004,0.012,0.038 +0.004,0.015,0.045 +0.005,0.017,0.052 +0.006,0.020,0.059 +0.007,0.022,0.066 +0.007,0.024,0.073 +0.008,0.026,0.079 +0.009,0.028,0.086 +0.009,0.030,0.092 +0.010,0.032,0.098 +0.010,0.034,0.105 +0.011,0.037,0.111 +0.012,0.038,0.117 +0.012,0.040,0.122 +0.013,0.042,0.128 +0.013,0.044,0.133 +0.014,0.046,0.138 +0.014,0.047,0.144 +0.015,0.049,0.149 +0.015,0.051,0.153 +0.016,0.052,0.158 +0.016,0.054,0.163 +0.017,0.055,0.167 +0.017,0.057,0.172 +0.018,0.058,0.176 +0.018,0.059,0.180 +0.018,0.061,0.184 +0.019,0.062,0.188 +0.019,0.063,0.192 +0.020,0.065,0.196 +0.020,0.066,0.200 +0.020,0.067,0.204 +0.021,0.069,0.208 +0.021,0.070,0.211 +0.021,0.071,0.215 +0.022,0.072,0.218 +0.022,0.073,0.222 +0.023,0.074,0.225 +0.023,0.075,0.229 +0.023,0.077,0.232 +0.024,0.078,0.235 +0.024,0.079,0.238 +0.024,0.080,0.242 +0.025,0.081,0.245 +0.025,0.082,0.248 +0.025,0.083,0.252 +0.025,0.084,0.255 +0.026,0.085,0.258 +0.026,0.086,0.261 +0.026,0.087,0.265 +0.027,0.088,0.268 +0.027,0.089,0.271 +0.027,0.091,0.274 +0.028,0.092,0.278 +0.028,0.093,0.281 +0.028,0.094,0.284 +0.029,0.095,0.288 +0.029,0.096,0.291 +0.029,0.097,0.294 +0.030,0.098,0.297 +0.030,0.099,0.301 +0.030,0.100,0.304 +0.031,0.101,0.307 +0.031,0.103,0.311 +0.031,0.104,0.314 +0.032,0.105,0.317 +0.032,0.106,0.321 +0.032,0.107,0.324 +0.033,0.108,0.327 +0.033,0.109,0.331 +0.033,0.110,0.334 +0.034,0.111,0.338 +0.034,0.113,0.341 +0.034,0.114,0.344 +0.035,0.115,0.348 +0.035,0.116,0.351 +0.035,0.117,0.354 +0.036,0.118,0.358 +0.036,0.119,0.361 +0.036,0.120,0.365 +0.037,0.121,0.368 +0.037,0.123,0.371 +0.037,0.124,0.375 +0.038,0.125,0.378 +0.038,0.126,0.382 +0.039,0.127,0.385 +0.039,0.128,0.389 +0.039,0.129,0.392 +0.040,0.131,0.395 +0.040,0.132,0.399 +0.040,0.133,0.402 +0.041,0.134,0.406 +0.041,0.135,0.409 +0.041,0.136,0.413 +0.042,0.137,0.416 +0.042,0.138,0.420 +0.042,0.140,0.423 +0.043,0.141,0.427 +0.043,0.142,0.430 +0.043,0.143,0.434 +0.044,0.144,0.437 +0.044,0.145,0.441 +0.044,0.147,0.444 +0.045,0.148,0.448 +0.045,0.149,0.451 +0.045,0.150,0.455 +0.046,0.151,0.458 +0.046,0.152,0.462 +0.047,0.153,0.465 +0.047,0.155,0.469 +0.047,0.156,0.472 +0.048,0.157,0.476 +0.048,0.158,0.479 +0.048,0.159,0.483 +0.049,0.160,0.486 +0.049,0.162,0.490 +0.049,0.163,0.493 +0.050,0.164,0.497 +0.050,0.165,0.500 +0.050,0.166,0.504 +0.051,0.168,0.508 +0.051,0.169,0.511 +0.051,0.170,0.515 +0.052,0.171,0.518 +0.052,0.172,0.522 +0.053,0.173,0.526 +0.053,0.175,0.529 +0.053,0.176,0.533 +0.054,0.177,0.536 +0.054,0.178,0.540 +0.054,0.179,0.543 +0.055,0.181,0.547 +0.055,0.182,0.551 +0.055,0.183,0.554 +0.056,0.184,0.558 +0.056,0.185,0.562 +0.057,0.187,0.565 +0.057,0.188,0.569 +0.057,0.189,0.572 +0.058,0.190,0.576 +0.058,0.191,0.580 +0.058,0.193,0.583 +0.059,0.194,0.587 +0.059,0.195,0.591 +0.059,0.196,0.594 +0.060,0.197,0.598 +0.060,0.199,0.602 +0.061,0.200,0.605 +0.061,0.201,0.609 +0.061,0.202,0.613 +0.062,0.203,0.616 +0.062,0.205,0.620 +0.062,0.206,0.624 +0.063,0.207,0.627 +0.063,0.208,0.631 +0.063,0.209,0.635 +0.064,0.211,0.638 +0.064,0.212,0.642 +0.065,0.213,0.646 +0.065,0.214,0.650 +0.065,0.216,0.653 +0.066,0.217,0.657 +0.066,0.218,0.661 +0.066,0.219,0.664 +0.067,0.220,0.668 +0.067,0.222,0.672 +0.068,0.223,0.676 +0.068,0.224,0.679 +0.068,0.225,0.683 +0.069,0.227,0.687 +0.069,0.228,0.691 +0.069,0.229,0.694 +0.070,0.230,0.698 +0.070,0.232,0.702 +0.071,0.233,0.705 +0.071,0.234,0.709 +0.071,0.235,0.713 +0.072,0.237,0.717 +0.072,0.238,0.721 +0.072,0.239,0.724 +0.073,0.240,0.728 +0.073,0.242,0.732 +0.074,0.243,0.736 +0.074,0.244,0.739 +0.074,0.245,0.743 +0.075,0.247,0.747 +0.075,0.248,0.751 +0.075,0.249,0.755 +0.076,0.250,0.758 +0.076,0.252,0.762 +0.077,0.253,0.766 +0.077,0.254,0.770 +0.077,0.255,0.774 +0.078,0.257,0.777 +0.078,0.258,0.781 +0.079,0.259,0.785 +0.079,0.260,0.789 +0.079,0.262,0.793 +0.080,0.263,0.797 +0.080,0.264,0.800 +0.080,0.265,0.804 +0.081,0.267,0.808 +0.081,0.268,0.812 +0.082,0.269,0.816 +0.082,0.270,0.820 +0.082,0.272,0.823 +0.083,0.273,0.827 +0.083,0.274,0.831 +0.084,0.276,0.835 +0.084,0.277,0.839 +0.084,0.278,0.843 +0.085,0.279,0.847 +0.085,0.281,0.851 +0.085,0.282,0.854 +0.086,0.283,0.858 +0.086,0.285,0.862 +0.087,0.286,0.866 +0.087,0.287,0.870 +0.087,0.288,0.874 +0.088,0.290,0.878 +0.088,0.291,0.882 +0.089,0.292,0.886 +0.089,0.294,0.889 +0.089,0.295,0.893 +0.090,0.296,0.897 +0.090,0.297,0.901 +0.091,0.299,0.905 +0.091,0.300,0.909 +0.091,0.301,0.913 +0.092,0.303,0.917 +0.092,0.304,0.921 +0.092,0.305,0.925 +0.093,0.306,0.929 +0.093,0.308,0.933 +0.094,0.309,0.937 +0.094,0.310,0.941 +0.094,0.312,0.944 +0.095,0.313,0.948 +0.095,0.314,0.952 +0.096,0.316,0.956 +0.096,0.317,0.960 +0.096,0.318,0.964 +0.097,0.320,0.968 +0.097,0.321,0.972 +0.098,0.322,0.976 +0.098,0.323,0.980 +0.098,0.325,0.984 +0.099,0.326,0.988 +0.099,0.327,0.992 +0.100,0.329,0.996 +0.100,0.330,1.000 diff --git a/pyqtgraph/colors/maps/CET-L16.csv b/pyqtgraph/colors/maps/CET-L16.csv new file mode 100644 index 00000000..d26db2d1 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-L16.csv @@ -0,0 +1,256 @@ +0.108,0.108,0.108 +0.115,0.108,0.125 +0.121,0.107,0.142 +0.127,0.107,0.159 +0.132,0.107,0.176 +0.137,0.106,0.193 +0.141,0.106,0.210 +0.145,0.105,0.226 +0.148,0.104,0.243 +0.151,0.104,0.260 +0.154,0.103,0.276 +0.156,0.103,0.292 +0.158,0.102,0.308 +0.159,0.101,0.324 +0.160,0.101,0.340 +0.161,0.100,0.356 +0.161,0.100,0.371 +0.161,0.099,0.387 +0.161,0.099,0.402 +0.160,0.098,0.416 +0.159,0.098,0.431 +0.158,0.098,0.445 +0.156,0.098,0.460 +0.154,0.098,0.473 +0.152,0.098,0.487 +0.150,0.098,0.500 +0.147,0.099,0.513 +0.144,0.099,0.526 +0.140,0.100,0.539 +0.137,0.101,0.551 +0.133,0.102,0.562 +0.129,0.104,0.574 +0.124,0.106,0.585 +0.120,0.107,0.596 +0.115,0.110,0.606 +0.110,0.112,0.616 +0.105,0.114,0.625 +0.099,0.117,0.634 +0.094,0.120,0.643 +0.088,0.124,0.651 +0.083,0.127,0.659 +0.077,0.131,0.666 +0.071,0.135,0.673 +0.066,0.139,0.679 +0.060,0.143,0.685 +0.055,0.148,0.690 +0.050,0.152,0.695 +0.045,0.157,0.699 +0.041,0.163,0.702 +0.038,0.168,0.705 +0.036,0.173,0.708 +0.034,0.179,0.709 +0.033,0.184,0.711 +0.032,0.190,0.712 +0.031,0.196,0.714 +0.030,0.201,0.715 +0.029,0.207,0.716 +0.028,0.212,0.717 +0.028,0.217,0.718 +0.027,0.223,0.719 +0.027,0.228,0.720 +0.026,0.233,0.720 +0.026,0.239,0.721 +0.026,0.244,0.721 +0.026,0.250,0.721 +0.026,0.255,0.721 +0.026,0.260,0.721 +0.026,0.266,0.721 +0.026,0.271,0.720 +0.026,0.276,0.720 +0.026,0.282,0.719 +0.026,0.287,0.718 +0.027,0.292,0.717 +0.027,0.298,0.716 +0.027,0.303,0.714 +0.028,0.308,0.713 +0.028,0.314,0.711 +0.028,0.319,0.709 +0.028,0.324,0.707 +0.028,0.330,0.704 +0.028,0.335,0.701 +0.028,0.341,0.698 +0.028,0.346,0.695 +0.027,0.352,0.692 +0.026,0.357,0.688 +0.025,0.363,0.684 +0.024,0.368,0.680 +0.023,0.374,0.675 +0.022,0.379,0.670 +0.024,0.385,0.665 +0.027,0.390,0.659 +0.032,0.396,0.654 +0.039,0.401,0.648 +0.047,0.406,0.642 +0.055,0.411,0.635 +0.063,0.417,0.629 +0.071,0.422,0.622 +0.079,0.427,0.615 +0.086,0.432,0.608 +0.094,0.437,0.601 +0.101,0.442,0.594 +0.107,0.447,0.586 +0.114,0.452,0.578 +0.120,0.457,0.570 +0.126,0.462,0.562 +0.132,0.466,0.554 +0.137,0.471,0.546 +0.143,0.476,0.538 +0.147,0.481,0.529 +0.152,0.486,0.520 +0.156,0.491,0.511 +0.160,0.495,0.503 +0.164,0.500,0.493 +0.168,0.505,0.484 +0.171,0.510,0.475 +0.174,0.515,0.465 +0.177,0.519,0.456 +0.179,0.524,0.446 +0.181,0.529,0.436 +0.183,0.534,0.426 +0.185,0.538,0.415 +0.186,0.543,0.405 +0.188,0.548,0.394 +0.188,0.553,0.384 +0.189,0.558,0.373 +0.190,0.562,0.363 +0.192,0.567,0.352 +0.193,0.571,0.343 +0.195,0.576,0.333 +0.197,0.580,0.324 +0.200,0.585,0.315 +0.203,0.589,0.306 +0.206,0.593,0.297 +0.209,0.597,0.289 +0.213,0.601,0.281 +0.217,0.606,0.273 +0.221,0.610,0.265 +0.226,0.614,0.257 +0.231,0.618,0.250 +0.236,0.622,0.242 +0.241,0.625,0.235 +0.247,0.629,0.228 +0.252,0.633,0.221 +0.259,0.637,0.214 +0.265,0.641,0.207 +0.271,0.644,0.200 +0.278,0.648,0.194 +0.285,0.652,0.187 +0.292,0.655,0.180 +0.299,0.659,0.174 +0.306,0.662,0.168 +0.314,0.666,0.161 +0.321,0.669,0.155 +0.329,0.673,0.149 +0.337,0.676,0.143 +0.345,0.679,0.136 +0.353,0.683,0.130 +0.361,0.686,0.124 +0.369,0.689,0.118 +0.378,0.693,0.112 +0.386,0.696,0.106 +0.395,0.699,0.100 +0.403,0.702,0.095 +0.412,0.705,0.089 +0.421,0.708,0.083 +0.430,0.711,0.077 +0.439,0.714,0.071 +0.448,0.717,0.065 +0.457,0.720,0.059 +0.466,0.723,0.053 +0.476,0.726,0.048 +0.485,0.729,0.042 +0.494,0.732,0.036 +0.504,0.735,0.031 +0.513,0.737,0.027 +0.523,0.740,0.023 +0.532,0.743,0.019 +0.542,0.746,0.017 +0.552,0.748,0.014 +0.562,0.751,0.012 +0.571,0.753,0.011 +0.581,0.756,0.010 +0.591,0.758,0.010 +0.601,0.761,0.009 +0.611,0.763,0.009 +0.620,0.766,0.010 +0.630,0.768,0.010 +0.639,0.771,0.010 +0.649,0.773,0.011 +0.658,0.776,0.012 +0.667,0.779,0.014 +0.676,0.781,0.015 +0.685,0.784,0.017 +0.694,0.786,0.019 +0.703,0.789,0.021 +0.712,0.791,0.024 +0.721,0.794,0.026 +0.729,0.796,0.030 +0.738,0.799,0.033 +0.746,0.801,0.037 +0.755,0.804,0.041 +0.763,0.807,0.046 +0.771,0.809,0.050 +0.780,0.812,0.055 +0.788,0.814,0.060 +0.796,0.817,0.064 +0.804,0.820,0.069 +0.812,0.822,0.074 +0.819,0.825,0.079 +0.827,0.828,0.084 +0.835,0.831,0.090 +0.842,0.833,0.095 +0.849,0.836,0.100 +0.857,0.839,0.106 +0.864,0.842,0.112 +0.871,0.845,0.118 +0.878,0.848,0.124 +0.884,0.851,0.130 +0.891,0.854,0.136 +0.897,0.857,0.142 +0.904,0.860,0.149 +0.910,0.863,0.156 +0.916,0.866,0.163 +0.922,0.869,0.170 +0.927,0.873,0.177 +0.932,0.876,0.185 +0.937,0.880,0.193 +0.942,0.883,0.201 +0.946,0.887,0.210 +0.950,0.891,0.219 +0.954,0.895,0.228 +0.957,0.899,0.238 +0.960,0.903,0.248 +0.962,0.907,0.260 +0.965,0.911,0.273 +0.968,0.915,0.288 +0.970,0.919,0.304 +0.973,0.923,0.322 +0.976,0.927,0.341 +0.979,0.931,0.362 +0.982,0.934,0.385 +0.985,0.938,0.408 +0.987,0.941,0.434 +0.990,0.945,0.461 +0.993,0.948,0.490 +0.995,0.951,0.521 +0.997,0.954,0.554 +0.999,0.957,0.589 +1.000,0.960,0.626 +1.000,0.963,0.666 +1.000,0.966,0.709 +0.999,0.968,0.755 +0.997,0.971,0.804 +0.993,0.973,0.858 +0.986,0.975,0.915 +0.977,0.977,0.977 diff --git a/pyqtgraph/colors/maps/CET-L17.csv b/pyqtgraph/colors/maps/CET-L17.csv new file mode 100644 index 00000000..4c27d94f --- /dev/null +++ b/pyqtgraph/colors/maps/CET-L17.csv @@ -0,0 +1,256 @@ +1.000,1.000,1.000 +0.998,0.997,0.989 +0.996,0.994,0.978 +0.995,0.991,0.967 +0.993,0.988,0.956 +0.991,0.985,0.945 +0.989,0.982,0.934 +0.987,0.979,0.923 +0.985,0.976,0.912 +0.983,0.973,0.901 +0.981,0.970,0.890 +0.979,0.967,0.879 +0.977,0.964,0.868 +0.974,0.961,0.857 +0.972,0.958,0.846 +0.970,0.955,0.835 +0.968,0.952,0.824 +0.965,0.949,0.813 +0.963,0.946,0.803 +0.961,0.943,0.792 +0.958,0.940,0.781 +0.956,0.937,0.770 +0.953,0.934,0.759 +0.951,0.931,0.748 +0.950,0.927,0.741 +0.951,0.923,0.734 +0.951,0.919,0.728 +0.951,0.915,0.721 +0.951,0.911,0.714 +0.951,0.906,0.708 +0.951,0.902,0.701 +0.951,0.898,0.695 +0.951,0.894,0.688 +0.951,0.890,0.682 +0.951,0.886,0.675 +0.951,0.882,0.669 +0.951,0.878,0.662 +0.951,0.874,0.655 +0.951,0.870,0.649 +0.951,0.865,0.642 +0.950,0.861,0.636 +0.950,0.857,0.629 +0.950,0.853,0.623 +0.950,0.849,0.616 +0.950,0.845,0.610 +0.949,0.841,0.603 +0.949,0.837,0.597 +0.949,0.832,0.592 +0.950,0.828,0.587 +0.950,0.823,0.582 +0.951,0.819,0.577 +0.951,0.814,0.573 +0.952,0.810,0.568 +0.952,0.805,0.563 +0.953,0.801,0.559 +0.953,0.796,0.554 +0.954,0.792,0.549 +0.954,0.787,0.544 +0.955,0.783,0.540 +0.955,0.778,0.535 +0.955,0.773,0.530 +0.956,0.769,0.526 +0.956,0.764,0.521 +0.956,0.760,0.516 +0.956,0.755,0.512 +0.957,0.751,0.507 +0.957,0.746,0.502 +0.957,0.742,0.498 +0.957,0.737,0.493 +0.957,0.732,0.489 +0.958,0.728,0.485 +0.958,0.723,0.482 +0.958,0.718,0.479 +0.959,0.713,0.476 +0.959,0.708,0.474 +0.959,0.704,0.471 +0.960,0.699,0.468 +0.960,0.694,0.465 +0.960,0.689,0.463 +0.960,0.684,0.460 +0.961,0.679,0.457 +0.961,0.675,0.455 +0.961,0.670,0.452 +0.961,0.665,0.449 +0.961,0.660,0.446 +0.961,0.655,0.444 +0.962,0.650,0.441 +0.962,0.645,0.438 +0.962,0.640,0.435 +0.962,0.635,0.433 +0.962,0.630,0.430 +0.962,0.625,0.427 +0.962,0.620,0.425 +0.962,0.615,0.423 +0.962,0.610,0.422 +0.961,0.605,0.421 +0.961,0.600,0.420 +0.961,0.595,0.419 +0.961,0.590,0.418 +0.960,0.585,0.417 +0.960,0.580,0.417 +0.960,0.575,0.416 +0.959,0.570,0.415 +0.959,0.565,0.414 +0.959,0.560,0.413 +0.958,0.555,0.412 +0.958,0.550,0.412 +0.957,0.544,0.411 +0.957,0.539,0.410 +0.957,0.534,0.409 +0.956,0.529,0.408 +0.956,0.524,0.407 +0.955,0.518,0.406 +0.955,0.513,0.406 +0.954,0.508,0.405 +0.954,0.502,0.404 +0.953,0.497,0.403 +0.952,0.492,0.404 +0.951,0.487,0.405 +0.950,0.482,0.405 +0.948,0.477,0.406 +0.947,0.472,0.407 +0.946,0.467,0.408 +0.945,0.462,0.408 +0.943,0.457,0.409 +0.942,0.451,0.410 +0.941,0.446,0.410 +0.940,0.441,0.411 +0.938,0.436,0.412 +0.937,0.430,0.412 +0.936,0.425,0.413 +0.934,0.420,0.414 +0.933,0.414,0.414 +0.932,0.409,0.415 +0.930,0.404,0.416 +0.929,0.398,0.416 +0.928,0.393,0.417 +0.926,0.387,0.418 +0.925,0.382,0.418 +0.924,0.376,0.419 +0.921,0.371,0.420 +0.919,0.366,0.422 +0.917,0.361,0.424 +0.914,0.356,0.426 +0.912,0.351,0.428 +0.909,0.347,0.430 +0.907,0.342,0.431 +0.904,0.337,0.433 +0.902,0.332,0.435 +0.899,0.326,0.437 +0.897,0.321,0.438 +0.894,0.316,0.440 +0.892,0.311,0.442 +0.889,0.306,0.444 +0.887,0.300,0.445 +0.884,0.295,0.447 +0.882,0.290,0.449 +0.879,0.284,0.450 +0.876,0.279,0.452 +0.874,0.273,0.454 +0.871,0.268,0.455 +0.869,0.262,0.457 +0.866,0.256,0.459 +0.863,0.252,0.461 +0.859,0.247,0.463 +0.855,0.243,0.466 +0.851,0.239,0.468 +0.847,0.235,0.470 +0.843,0.230,0.473 +0.839,0.226,0.475 +0.835,0.222,0.478 +0.831,0.217,0.480 +0.827,0.213,0.482 +0.823,0.208,0.485 +0.819,0.204,0.487 +0.815,0.199,0.489 +0.811,0.194,0.492 +0.807,0.190,0.494 +0.803,0.185,0.496 +0.799,0.180,0.499 +0.795,0.175,0.501 +0.791,0.170,0.503 +0.787,0.165,0.506 +0.783,0.160,0.508 +0.778,0.155,0.510 +0.774,0.150,0.513 +0.769,0.146,0.515 +0.764,0.144,0.518 +0.758,0.141,0.520 +0.753,0.139,0.523 +0.747,0.137,0.525 +0.741,0.134,0.528 +0.736,0.132,0.530 +0.730,0.129,0.533 +0.724,0.127,0.535 +0.718,0.125,0.538 +0.712,0.122,0.541 +0.707,0.120,0.543 +0.701,0.118,0.546 +0.695,0.115,0.548 +0.689,0.113,0.551 +0.683,0.111,0.553 +0.677,0.109,0.556 +0.671,0.106,0.558 +0.665,0.104,0.561 +0.659,0.102,0.563 +0.653,0.100,0.566 +0.647,0.097,0.568 +0.641,0.095,0.571 +0.634,0.094,0.573 +0.626,0.096,0.576 +0.619,0.097,0.578 +0.611,0.099,0.580 +0.603,0.100,0.582 +0.596,0.102,0.585 +0.588,0.103,0.587 +0.580,0.104,0.589 +0.572,0.106,0.591 +0.564,0.107,0.594 +0.555,0.108,0.596 +0.547,0.109,0.598 +0.539,0.111,0.600 +0.531,0.112,0.603 +0.522,0.113,0.605 +0.514,0.114,0.607 +0.505,0.115,0.609 +0.496,0.116,0.612 +0.487,0.117,0.614 +0.478,0.119,0.616 +0.469,0.120,0.618 +0.460,0.121,0.620 +0.450,0.122,0.623 +0.441,0.123,0.625 +0.430,0.126,0.626 +0.419,0.128,0.628 +0.408,0.131,0.629 +0.396,0.133,0.631 +0.384,0.136,0.632 +0.372,0.138,0.633 +0.360,0.140,0.635 +0.347,0.142,0.636 +0.334,0.144,0.638 +0.321,0.146,0.639 +0.307,0.148,0.640 +0.292,0.150,0.642 +0.277,0.152,0.643 +0.261,0.153,0.645 +0.244,0.155,0.646 +0.226,0.156,0.648 +0.206,0.158,0.649 +0.184,0.159,0.650 +0.159,0.161,0.652 +0.131,0.162,0.653 +0.094,0.163,0.655 +0.038,0.164,0.656 +0.000,0.165,0.658 diff --git a/pyqtgraph/colors/maps/CET-L18.csv b/pyqtgraph/colors/maps/CET-L18.csv new file mode 100644 index 00000000..95e54385 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-L18.csv @@ -0,0 +1,256 @@ +1.000,1.000,1.000 +0.998,0.998,0.990 +0.995,0.997,0.980 +0.993,0.995,0.969 +0.991,0.993,0.959 +0.989,0.991,0.949 +0.986,0.990,0.939 +0.984,0.988,0.929 +0.981,0.986,0.919 +0.979,0.984,0.909 +0.976,0.983,0.898 +0.974,0.981,0.888 +0.971,0.979,0.878 +0.969,0.977,0.868 +0.966,0.976,0.858 +0.964,0.974,0.848 +0.961,0.972,0.838 +0.958,0.971,0.828 +0.956,0.969,0.818 +0.953,0.967,0.807 +0.950,0.965,0.797 +0.947,0.964,0.787 +0.944,0.962,0.777 +0.941,0.960,0.767 +0.940,0.958,0.760 +0.939,0.955,0.754 +0.938,0.953,0.748 +0.937,0.950,0.742 +0.936,0.947,0.736 +0.935,0.945,0.730 +0.934,0.942,0.724 +0.933,0.940,0.718 +0.932,0.937,0.712 +0.931,0.934,0.706 +0.930,0.932,0.700 +0.929,0.929,0.694 +0.928,0.927,0.688 +0.927,0.924,0.682 +0.926,0.922,0.676 +0.925,0.919,0.670 +0.924,0.916,0.664 +0.923,0.914,0.658 +0.922,0.911,0.652 +0.920,0.909,0.646 +0.919,0.906,0.640 +0.918,0.904,0.634 +0.917,0.901,0.628 +0.916,0.898,0.623 +0.916,0.895,0.617 +0.915,0.893,0.612 +0.915,0.890,0.607 +0.915,0.887,0.602 +0.914,0.884,0.597 +0.914,0.881,0.592 +0.913,0.879,0.586 +0.913,0.876,0.581 +0.912,0.873,0.576 +0.911,0.870,0.571 +0.911,0.867,0.566 +0.910,0.864,0.560 +0.910,0.862,0.555 +0.909,0.859,0.550 +0.909,0.856,0.545 +0.908,0.853,0.540 +0.907,0.850,0.535 +0.907,0.848,0.529 +0.906,0.845,0.524 +0.906,0.842,0.519 +0.905,0.839,0.514 +0.904,0.836,0.509 +0.904,0.833,0.504 +0.904,0.830,0.499 +0.903,0.827,0.495 +0.903,0.824,0.490 +0.903,0.821,0.485 +0.903,0.818,0.481 +0.903,0.815,0.476 +0.902,0.812,0.472 +0.902,0.809,0.467 +0.902,0.806,0.463 +0.902,0.803,0.458 +0.901,0.800,0.453 +0.901,0.797,0.449 +0.901,0.794,0.444 +0.900,0.791,0.440 +0.900,0.788,0.435 +0.900,0.785,0.431 +0.899,0.782,0.426 +0.899,0.779,0.421 +0.899,0.776,0.417 +0.898,0.773,0.412 +0.898,0.771,0.408 +0.897,0.768,0.403 +0.897,0.764,0.399 +0.897,0.761,0.395 +0.897,0.758,0.391 +0.897,0.755,0.387 +0.897,0.752,0.383 +0.897,0.749,0.379 +0.897,0.746,0.375 +0.896,0.742,0.371 +0.896,0.739,0.367 +0.896,0.736,0.363 +0.896,0.733,0.359 +0.896,0.730,0.355 +0.896,0.727,0.351 +0.895,0.724,0.347 +0.895,0.720,0.343 +0.895,0.717,0.339 +0.895,0.714,0.335 +0.895,0.711,0.331 +0.894,0.708,0.327 +0.894,0.705,0.323 +0.894,0.702,0.318 +0.894,0.698,0.314 +0.893,0.695,0.310 +0.893,0.692,0.306 +0.893,0.689,0.303 +0.893,0.686,0.300 +0.893,0.682,0.296 +0.893,0.679,0.293 +0.893,0.676,0.289 +0.893,0.672,0.286 +0.893,0.669,0.283 +0.892,0.666,0.279 +0.892,0.663,0.276 +0.892,0.659,0.272 +0.892,0.656,0.269 +0.892,0.653,0.266 +0.892,0.649,0.262 +0.892,0.646,0.259 +0.891,0.643,0.255 +0.891,0.639,0.252 +0.891,0.636,0.248 +0.891,0.633,0.245 +0.891,0.629,0.241 +0.890,0.626,0.238 +0.890,0.623,0.235 +0.890,0.620,0.231 +0.890,0.616,0.228 +0.890,0.613,0.225 +0.890,0.609,0.222 +0.889,0.606,0.219 +0.889,0.602,0.217 +0.889,0.599,0.214 +0.889,0.596,0.211 +0.889,0.592,0.208 +0.889,0.589,0.206 +0.889,0.585,0.203 +0.888,0.582,0.200 +0.888,0.578,0.197 +0.888,0.575,0.195 +0.888,0.571,0.192 +0.888,0.568,0.189 +0.887,0.564,0.186 +0.887,0.561,0.183 +0.887,0.557,0.181 +0.887,0.554,0.178 +0.886,0.550,0.175 +0.886,0.547,0.172 +0.886,0.543,0.169 +0.886,0.540,0.166 +0.885,0.536,0.164 +0.885,0.533,0.161 +0.885,0.529,0.159 +0.885,0.525,0.158 +0.885,0.522,0.156 +0.884,0.518,0.154 +0.884,0.515,0.152 +0.884,0.511,0.150 +0.884,0.507,0.148 +0.883,0.504,0.146 +0.883,0.500,0.144 +0.883,0.496,0.142 +0.882,0.493,0.140 +0.882,0.489,0.138 +0.882,0.485,0.136 +0.882,0.481,0.134 +0.881,0.478,0.132 +0.881,0.474,0.130 +0.881,0.470,0.128 +0.880,0.466,0.126 +0.880,0.463,0.124 +0.880,0.459,0.122 +0.879,0.455,0.120 +0.879,0.451,0.119 +0.878,0.447,0.117 +0.878,0.443,0.116 +0.878,0.440,0.115 +0.877,0.436,0.114 +0.877,0.432,0.113 +0.877,0.428,0.112 +0.876,0.424,0.111 +0.876,0.420,0.110 +0.875,0.416,0.110 +0.875,0.412,0.109 +0.874,0.408,0.108 +0.874,0.404,0.107 +0.874,0.400,0.106 +0.873,0.396,0.105 +0.873,0.392,0.104 +0.872,0.387,0.103 +0.872,0.383,0.102 +0.871,0.379,0.101 +0.871,0.375,0.100 +0.870,0.371,0.100 +0.870,0.367,0.099 +0.869,0.362,0.098 +0.869,0.358,0.097 +0.868,0.354,0.096 +0.868,0.349,0.097 +0.867,0.345,0.097 +0.867,0.341,0.097 +0.866,0.336,0.097 +0.865,0.332,0.097 +0.865,0.327,0.097 +0.864,0.323,0.097 +0.864,0.318,0.097 +0.863,0.313,0.097 +0.862,0.309,0.098 +0.862,0.304,0.098 +0.861,0.299,0.098 +0.861,0.295,0.098 +0.860,0.290,0.098 +0.859,0.285,0.098 +0.859,0.280,0.098 +0.858,0.275,0.098 +0.857,0.270,0.098 +0.857,0.265,0.098 +0.856,0.259,0.098 +0.855,0.254,0.098 +0.855,0.249,0.098 +0.854,0.243,0.099 +0.853,0.238,0.099 +0.852,0.232,0.100 +0.852,0.226,0.101 +0.851,0.221,0.102 +0.850,0.215,0.103 +0.849,0.209,0.104 +0.848,0.203,0.104 +0.847,0.196,0.105 +0.846,0.190,0.106 +0.846,0.183,0.106 +0.845,0.177,0.107 +0.844,0.169,0.108 +0.843,0.162,0.108 +0.842,0.155,0.109 +0.841,0.147,0.110 +0.840,0.138,0.110 +0.840,0.130,0.111 +0.839,0.120,0.112 +0.838,0.110,0.112 +0.837,0.099,0.113 +0.836,0.088,0.113 +0.835,0.074,0.114 +0.834,0.059,0.114 diff --git a/pyqtgraph/colors/maps/CET-L19.csv b/pyqtgraph/colors/maps/CET-L19.csv new file mode 100644 index 00000000..652b489c --- /dev/null +++ b/pyqtgraph/colors/maps/CET-L19.csv @@ -0,0 +1,256 @@ +1.000,1.000,1.000 +0.995,0.998,1.000 +0.990,0.996,0.999 +0.985,0.994,0.999 +0.980,0.992,0.998 +0.975,0.990,0.998 +0.970,0.989,0.998 +0.965,0.987,0.997 +0.960,0.985,0.997 +0.955,0.983,0.996 +0.950,0.981,0.996 +0.945,0.979,0.996 +0.940,0.977,0.995 +0.935,0.975,0.995 +0.930,0.973,0.994 +0.925,0.971,0.994 +0.920,0.969,0.994 +0.915,0.967,0.993 +0.910,0.965,0.993 +0.905,0.963,0.992 +0.900,0.962,0.992 +0.895,0.960,0.992 +0.890,0.958,0.991 +0.885,0.956,0.991 +0.881,0.954,0.991 +0.877,0.951,0.991 +0.873,0.949,0.991 +0.869,0.947,0.991 +0.865,0.944,0.992 +0.861,0.942,0.992 +0.857,0.940,0.992 +0.853,0.938,0.992 +0.849,0.935,0.993 +0.845,0.933,0.993 +0.840,0.931,0.993 +0.836,0.928,0.993 +0.832,0.926,0.993 +0.828,0.924,0.994 +0.824,0.922,0.994 +0.820,0.919,0.994 +0.816,0.917,0.994 +0.812,0.915,0.994 +0.808,0.913,0.994 +0.804,0.910,0.995 +0.799,0.908,0.995 +0.795,0.906,0.995 +0.791,0.904,0.995 +0.788,0.901,0.995 +0.786,0.898,0.996 +0.783,0.896,0.996 +0.781,0.893,0.996 +0.778,0.890,0.996 +0.776,0.888,0.997 +0.773,0.885,0.997 +0.771,0.882,0.997 +0.768,0.880,0.997 +0.766,0.877,0.998 +0.763,0.874,0.998 +0.761,0.871,0.998 +0.758,0.869,0.998 +0.756,0.866,0.998 +0.753,0.863,0.999 +0.751,0.861,0.999 +0.748,0.858,0.999 +0.746,0.855,0.999 +0.743,0.853,1.000 +0.740,0.850,1.000 +0.738,0.847,1.000 +0.735,0.845,1.000 +0.733,0.842,1.000 +0.731,0.839,1.000 +0.731,0.836,1.000 +0.730,0.833,1.000 +0.730,0.830,0.999 +0.729,0.827,0.999 +0.729,0.824,0.999 +0.728,0.821,0.998 +0.728,0.817,0.998 +0.727,0.814,0.998 +0.727,0.811,0.997 +0.726,0.808,0.997 +0.726,0.805,0.996 +0.725,0.802,0.996 +0.725,0.799,0.996 +0.724,0.796,0.995 +0.724,0.793,0.995 +0.723,0.789,0.995 +0.723,0.786,0.994 +0.722,0.783,0.994 +0.722,0.780,0.994 +0.721,0.777,0.993 +0.721,0.774,0.993 +0.720,0.771,0.992 +0.720,0.767,0.992 +0.722,0.764,0.990 +0.723,0.760,0.989 +0.725,0.757,0.987 +0.726,0.753,0.986 +0.728,0.750,0.985 +0.729,0.746,0.983 +0.731,0.743,0.982 +0.732,0.739,0.980 +0.734,0.735,0.979 +0.735,0.732,0.977 +0.736,0.728,0.976 +0.738,0.725,0.974 +0.739,0.721,0.973 +0.740,0.718,0.971 +0.742,0.714,0.970 +0.743,0.710,0.968 +0.744,0.707,0.967 +0.746,0.703,0.966 +0.747,0.699,0.964 +0.748,0.696,0.963 +0.749,0.692,0.961 +0.750,0.689,0.960 +0.752,0.685,0.958 +0.755,0.681,0.955 +0.758,0.677,0.952 +0.760,0.673,0.949 +0.763,0.669,0.946 +0.766,0.665,0.943 +0.768,0.661,0.940 +0.771,0.657,0.937 +0.774,0.653,0.934 +0.776,0.649,0.931 +0.779,0.645,0.928 +0.781,0.641,0.926 +0.784,0.637,0.923 +0.786,0.633,0.920 +0.789,0.629,0.917 +0.791,0.624,0.914 +0.794,0.620,0.911 +0.796,0.616,0.908 +0.798,0.612,0.905 +0.801,0.608,0.902 +0.803,0.604,0.899 +0.805,0.600,0.896 +0.807,0.595,0.893 +0.809,0.591,0.890 +0.812,0.587,0.886 +0.816,0.582,0.881 +0.819,0.578,0.876 +0.822,0.574,0.872 +0.824,0.569,0.867 +0.827,0.565,0.863 +0.830,0.560,0.858 +0.833,0.556,0.853 +0.836,0.551,0.849 +0.838,0.547,0.844 +0.841,0.542,0.839 +0.844,0.538,0.835 +0.846,0.533,0.830 +0.849,0.529,0.826 +0.851,0.524,0.821 +0.854,0.520,0.817 +0.856,0.515,0.812 +0.859,0.510,0.807 +0.861,0.505,0.803 +0.864,0.501,0.798 +0.866,0.496,0.794 +0.868,0.491,0.789 +0.870,0.486,0.785 +0.873,0.482,0.779 +0.875,0.477,0.773 +0.877,0.473,0.766 +0.879,0.468,0.760 +0.882,0.463,0.754 +0.884,0.458,0.748 +0.886,0.454,0.741 +0.888,0.449,0.735 +0.890,0.444,0.729 +0.892,0.439,0.723 +0.894,0.434,0.717 +0.896,0.429,0.711 +0.898,0.425,0.704 +0.899,0.420,0.698 +0.901,0.415,0.692 +0.903,0.410,0.686 +0.905,0.404,0.680 +0.906,0.399,0.674 +0.908,0.394,0.668 +0.910,0.389,0.662 +0.911,0.384,0.655 +0.913,0.378,0.649 +0.914,0.373,0.643 +0.915,0.368,0.636 +0.916,0.364,0.629 +0.917,0.359,0.621 +0.918,0.354,0.614 +0.918,0.350,0.606 +0.919,0.345,0.599 +0.920,0.340,0.592 +0.920,0.335,0.584 +0.921,0.330,0.577 +0.921,0.326,0.569 +0.922,0.321,0.562 +0.922,0.316,0.555 +0.923,0.311,0.547 +0.923,0.306,0.540 +0.924,0.300,0.532 +0.924,0.295,0.525 +0.924,0.290,0.518 +0.925,0.285,0.510 +0.925,0.279,0.503 +0.925,0.274,0.496 +0.925,0.268,0.489 +0.925,0.263,0.481 +0.925,0.257,0.474 +0.925,0.252,0.467 +0.924,0.248,0.458 +0.923,0.244,0.450 +0.922,0.240,0.442 +0.921,0.237,0.434 +0.919,0.233,0.425 +0.918,0.229,0.417 +0.917,0.224,0.409 +0.916,0.220,0.401 +0.914,0.216,0.393 +0.913,0.212,0.385 +0.912,0.208,0.376 +0.910,0.204,0.368 +0.909,0.200,0.360 +0.908,0.195,0.352 +0.906,0.191,0.344 +0.905,0.186,0.336 +0.903,0.182,0.328 +0.901,0.177,0.320 +0.900,0.173,0.312 +0.898,0.168,0.304 +0.897,0.163,0.295 +0.895,0.159,0.287 +0.893,0.154,0.279 +0.890,0.153,0.271 +0.887,0.152,0.262 +0.884,0.151,0.253 +0.880,0.149,0.245 +0.877,0.148,0.236 +0.874,0.147,0.227 +0.871,0.146,0.218 +0.867,0.145,0.210 +0.864,0.144,0.201 +0.861,0.143,0.192 +0.857,0.141,0.183 +0.854,0.140,0.174 +0.851,0.139,0.164 +0.847,0.138,0.155 +0.844,0.137,0.145 +0.840,0.136,0.136 +0.837,0.135,0.126 +0.833,0.134,0.115 +0.830,0.133,0.105 +0.826,0.132,0.094 +0.823,0.131,0.082 +0.819,0.130,0.069 +0.816,0.130,0.056 diff --git a/pyqtgraph/colors/maps/CET-L2.csv b/pyqtgraph/colors/maps/CET-L2.csv new file mode 100644 index 00000000..921590d1 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-L2.csv @@ -0,0 +1,256 @@ +0.108,0.108,0.108 +0.110,0.110,0.110 +0.113,0.113,0.113 +0.116,0.116,0.116 +0.118,0.118,0.118 +0.121,0.121,0.121 +0.123,0.123,0.123 +0.126,0.126,0.126 +0.129,0.129,0.129 +0.131,0.132,0.132 +0.134,0.134,0.134 +0.137,0.137,0.137 +0.140,0.140,0.140 +0.142,0.142,0.142 +0.145,0.145,0.145 +0.148,0.148,0.148 +0.150,0.150,0.150 +0.153,0.153,0.153 +0.156,0.156,0.156 +0.159,0.159,0.159 +0.161,0.161,0.161 +0.164,0.164,0.164 +0.167,0.167,0.167 +0.170,0.170,0.170 +0.172,0.173,0.173 +0.175,0.175,0.175 +0.178,0.178,0.178 +0.181,0.181,0.181 +0.184,0.184,0.184 +0.187,0.187,0.187 +0.189,0.189,0.189 +0.192,0.192,0.192 +0.195,0.195,0.195 +0.198,0.198,0.198 +0.201,0.201,0.201 +0.204,0.204,0.204 +0.206,0.207,0.206 +0.209,0.209,0.209 +0.212,0.212,0.212 +0.215,0.215,0.215 +0.218,0.218,0.218 +0.221,0.221,0.221 +0.224,0.224,0.224 +0.227,0.227,0.227 +0.230,0.230,0.230 +0.232,0.233,0.233 +0.235,0.235,0.235 +0.238,0.238,0.238 +0.241,0.241,0.241 +0.244,0.244,0.244 +0.247,0.247,0.247 +0.250,0.250,0.250 +0.253,0.253,0.253 +0.256,0.256,0.256 +0.259,0.259,0.259 +0.262,0.262,0.262 +0.265,0.265,0.265 +0.268,0.268,0.268 +0.271,0.271,0.271 +0.274,0.274,0.274 +0.277,0.277,0.277 +0.280,0.280,0.280 +0.283,0.283,0.283 +0.286,0.286,0.286 +0.289,0.289,0.289 +0.292,0.292,0.292 +0.295,0.295,0.295 +0.298,0.298,0.298 +0.301,0.301,0.301 +0.304,0.304,0.304 +0.307,0.307,0.307 +0.310,0.310,0.310 +0.313,0.313,0.313 +0.316,0.317,0.317 +0.320,0.320,0.320 +0.323,0.323,0.323 +0.326,0.326,0.326 +0.329,0.329,0.329 +0.332,0.332,0.332 +0.335,0.335,0.335 +0.338,0.338,0.338 +0.341,0.341,0.341 +0.344,0.344,0.344 +0.347,0.348,0.348 +0.351,0.351,0.351 +0.354,0.354,0.354 +0.357,0.357,0.357 +0.360,0.360,0.360 +0.363,0.363,0.363 +0.366,0.366,0.366 +0.369,0.370,0.370 +0.373,0.373,0.373 +0.376,0.376,0.376 +0.379,0.379,0.379 +0.382,0.382,0.382 +0.385,0.385,0.385 +0.389,0.389,0.389 +0.392,0.392,0.392 +0.395,0.395,0.395 +0.398,0.398,0.398 +0.401,0.401,0.401 +0.404,0.405,0.405 +0.408,0.408,0.408 +0.411,0.411,0.411 +0.414,0.414,0.414 +0.417,0.417,0.417 +0.421,0.421,0.421 +0.424,0.424,0.424 +0.427,0.427,0.427 +0.430,0.430,0.430 +0.434,0.434,0.434 +0.437,0.437,0.437 +0.440,0.440,0.440 +0.443,0.443,0.443 +0.447,0.447,0.447 +0.450,0.450,0.450 +0.453,0.453,0.453 +0.456,0.456,0.456 +0.460,0.460,0.460 +0.463,0.463,0.463 +0.466,0.466,0.466 +0.470,0.470,0.470 +0.473,0.473,0.473 +0.476,0.476,0.476 +0.479,0.480,0.480 +0.483,0.483,0.483 +0.486,0.486,0.486 +0.489,0.489,0.489 +0.493,0.493,0.493 +0.496,0.496,0.496 +0.499,0.499,0.499 +0.503,0.503,0.503 +0.506,0.506,0.506 +0.509,0.509,0.509 +0.513,0.513,0.513 +0.516,0.516,0.516 +0.519,0.520,0.520 +0.523,0.523,0.523 +0.526,0.526,0.526 +0.530,0.530,0.530 +0.533,0.533,0.533 +0.536,0.536,0.536 +0.540,0.540,0.540 +0.543,0.543,0.543 +0.546,0.547,0.546 +0.550,0.550,0.550 +0.553,0.553,0.553 +0.557,0.557,0.557 +0.560,0.560,0.560 +0.563,0.563,0.563 +0.567,0.567,0.567 +0.570,0.570,0.570 +0.574,0.574,0.574 +0.577,0.577,0.577 +0.580,0.581,0.581 +0.584,0.584,0.584 +0.587,0.587,0.587 +0.591,0.591,0.591 +0.594,0.594,0.594 +0.598,0.598,0.598 +0.601,0.601,0.601 +0.605,0.605,0.605 +0.608,0.608,0.608 +0.611,0.612,0.612 +0.615,0.615,0.615 +0.618,0.618,0.618 +0.622,0.622,0.622 +0.625,0.625,0.625 +0.629,0.629,0.629 +0.632,0.632,0.632 +0.636,0.636,0.636 +0.639,0.639,0.639 +0.643,0.643,0.643 +0.646,0.646,0.646 +0.650,0.650,0.650 +0.653,0.653,0.653 +0.657,0.657,0.657 +0.660,0.660,0.660 +0.664,0.664,0.664 +0.667,0.667,0.667 +0.671,0.671,0.671 +0.674,0.674,0.674 +0.678,0.678,0.678 +0.681,0.681,0.681 +0.685,0.685,0.685 +0.688,0.688,0.688 +0.692,0.692,0.692 +0.695,0.696,0.695 +0.699,0.699,0.699 +0.702,0.703,0.703 +0.706,0.706,0.706 +0.710,0.710,0.710 +0.713,0.713,0.713 +0.717,0.717,0.717 +0.720,0.720,0.720 +0.724,0.724,0.724 +0.727,0.728,0.727 +0.731,0.731,0.731 +0.735,0.735,0.735 +0.738,0.738,0.738 +0.742,0.742,0.742 +0.745,0.745,0.745 +0.749,0.749,0.749 +0.752,0.753,0.753 +0.756,0.756,0.756 +0.760,0.760,0.760 +0.763,0.763,0.763 +0.767,0.767,0.767 +0.770,0.771,0.771 +0.774,0.774,0.774 +0.778,0.778,0.778 +0.781,0.781,0.781 +0.785,0.785,0.785 +0.789,0.789,0.789 +0.792,0.792,0.792 +0.796,0.796,0.796 +0.799,0.800,0.800 +0.803,0.803,0.803 +0.807,0.807,0.807 +0.810,0.810,0.810 +0.814,0.814,0.814 +0.818,0.818,0.818 +0.821,0.821,0.821 +0.825,0.825,0.825 +0.829,0.829,0.829 +0.832,0.832,0.832 +0.836,0.836,0.836 +0.840,0.840,0.840 +0.843,0.843,0.843 +0.847,0.847,0.847 +0.851,0.851,0.851 +0.854,0.854,0.854 +0.858,0.858,0.858 +0.862,0.862,0.862 +0.865,0.865,0.865 +0.869,0.869,0.869 +0.873,0.873,0.873 +0.876,0.877,0.876 +0.880,0.880,0.880 +0.884,0.884,0.884 +0.887,0.888,0.888 +0.891,0.891,0.891 +0.895,0.895,0.895 +0.899,0.899,0.899 +0.902,0.902,0.902 +0.906,0.906,0.906 +0.910,0.910,0.910 +0.913,0.914,0.914 +0.917,0.917,0.917 +0.921,0.921,0.921 +0.925,0.925,0.925 +0.928,0.929,0.929 +0.932,0.932,0.932 +0.936,0.936,0.936 +0.940,0.940,0.940 +0.943,0.944,0.943 diff --git a/pyqtgraph/colors/maps/CET-L3.csv b/pyqtgraph/colors/maps/CET-L3.csv new file mode 100644 index 00000000..757974af --- /dev/null +++ b/pyqtgraph/colors/maps/CET-L3.csv @@ -0,0 +1,256 @@ +0.000,0.000,0.000 +0.027,0.000,0.000 +0.052,0.000,0.000 +0.072,0.000,0.000 +0.087,0.000,0.000 +0.101,0.000,0.000 +0.113,0.000,0.000 +0.124,0.000,0.000 +0.135,0.001,0.000 +0.144,0.001,0.000 +0.153,0.001,0.000 +0.161,0.001,0.000 +0.169,0.001,0.000 +0.177,0.001,0.000 +0.184,0.002,0.000 +0.191,0.002,0.000 +0.198,0.002,0.000 +0.204,0.002,0.000 +0.210,0.002,0.000 +0.216,0.002,0.000 +0.222,0.002,0.000 +0.228,0.002,0.000 +0.234,0.002,0.000 +0.240,0.002,0.000 +0.245,0.002,0.000 +0.251,0.002,0.000 +0.257,0.002,0.000 +0.263,0.002,0.000 +0.269,0.002,0.000 +0.275,0.002,0.000 +0.280,0.002,0.000 +0.286,0.003,0.000 +0.292,0.003,0.000 +0.298,0.003,0.000 +0.304,0.003,0.000 +0.310,0.003,0.000 +0.316,0.003,0.000 +0.322,0.003,0.000 +0.328,0.003,0.000 +0.334,0.004,0.000 +0.341,0.004,0.000 +0.347,0.004,0.000 +0.353,0.004,0.000 +0.359,0.004,0.000 +0.365,0.004,0.000 +0.371,0.005,0.000 +0.378,0.005,0.000 +0.384,0.005,0.000 +0.390,0.005,0.000 +0.396,0.005,0.000 +0.403,0.005,0.000 +0.409,0.006,0.000 +0.415,0.006,0.000 +0.422,0.006,0.000 +0.428,0.006,0.000 +0.434,0.007,0.000 +0.441,0.007,0.000 +0.447,0.007,0.000 +0.453,0.007,0.000 +0.460,0.007,0.000 +0.466,0.008,0.000 +0.473,0.008,0.000 +0.479,0.008,0.000 +0.486,0.009,0.000 +0.492,0.009,0.000 +0.499,0.009,0.000 +0.505,0.009,0.000 +0.512,0.010,0.000 +0.518,0.010,0.000 +0.525,0.010,0.000 +0.532,0.011,0.000 +0.538,0.011,0.000 +0.545,0.011,0.000 +0.552,0.012,0.000 +0.558,0.012,0.000 +0.565,0.013,0.000 +0.572,0.013,0.000 +0.578,0.013,0.000 +0.585,0.014,0.000 +0.592,0.014,0.000 +0.598,0.015,0.000 +0.605,0.015,0.000 +0.612,0.015,0.000 +0.619,0.016,0.000 +0.625,0.016,0.000 +0.632,0.017,0.000 +0.639,0.017,0.000 +0.646,0.018,0.000 +0.653,0.018,0.000 +0.660,0.019,0.000 +0.666,0.020,0.000 +0.673,0.020,0.000 +0.680,0.021,0.000 +0.687,0.021,0.000 +0.694,0.022,0.000 +0.701,0.023,0.000 +0.708,0.023,0.000 +0.715,0.024,0.000 +0.722,0.025,0.000 +0.729,0.026,0.000 +0.736,0.026,0.000 +0.743,0.027,0.000 +0.750,0.028,0.000 +0.757,0.029,0.000 +0.764,0.030,0.000 +0.771,0.031,0.000 +0.778,0.032,0.000 +0.785,0.033,0.000 +0.792,0.034,0.000 +0.799,0.035,0.000 +0.806,0.036,0.000 +0.813,0.037,0.000 +0.820,0.038,0.000 +0.827,0.040,0.000 +0.834,0.041,0.000 +0.841,0.043,0.000 +0.848,0.044,0.000 +0.855,0.046,0.000 +0.863,0.048,0.000 +0.870,0.050,0.000 +0.877,0.052,0.000 +0.884,0.054,0.000 +0.891,0.056,0.000 +0.898,0.059,0.000 +0.905,0.062,0.000 +0.911,0.065,0.000 +0.918,0.069,0.000 +0.924,0.075,0.000 +0.931,0.081,0.000 +0.936,0.089,0.000 +0.942,0.097,0.000 +0.947,0.107,0.000 +0.952,0.117,0.000 +0.957,0.127,0.000 +0.961,0.138,0.000 +0.965,0.150,0.000 +0.968,0.161,0.000 +0.971,0.173,0.000 +0.974,0.185,0.000 +0.977,0.197,0.000 +0.979,0.208,0.000 +0.981,0.220,0.000 +0.983,0.232,0.000 +0.985,0.243,0.000 +0.987,0.254,0.000 +0.988,0.265,0.000 +0.989,0.276,0.000 +0.991,0.287,0.000 +0.992,0.297,0.000 +0.993,0.308,0.000 +0.993,0.318,0.000 +0.994,0.328,0.000 +0.995,0.338,0.000 +0.996,0.347,0.000 +0.996,0.357,0.000 +0.997,0.366,0.000 +0.997,0.376,0.000 +0.998,0.385,0.000 +0.998,0.394,0.000 +0.998,0.403,0.000 +0.999,0.411,0.000 +0.999,0.420,0.000 +0.999,0.429,0.000 +0.999,0.437,0.000 +1.000,0.446,0.000 +1.000,0.454,0.000 +1.000,0.462,0.000 +1.000,0.470,0.000 +1.000,0.478,0.000 +1.000,0.486,0.000 +1.000,0.494,0.000 +1.000,0.502,0.000 +1.000,0.510,0.000 +1.000,0.518,0.000 +1.000,0.525,0.000 +1.000,0.533,0.000 +1.000,0.540,0.000 +1.000,0.548,0.000 +1.000,0.555,0.000 +1.000,0.562,0.001 +1.000,0.570,0.001 +1.000,0.577,0.001 +1.000,0.584,0.001 +1.000,0.591,0.001 +1.000,0.598,0.002 +1.000,0.605,0.002 +1.000,0.612,0.002 +1.000,0.619,0.003 +1.000,0.626,0.003 +1.000,0.633,0.003 +1.000,0.640,0.004 +1.000,0.647,0.004 +1.000,0.653,0.004 +1.000,0.660,0.005 +1.000,0.667,0.005 +1.000,0.673,0.006 +1.000,0.680,0.006 +1.000,0.687,0.007 +1.000,0.693,0.007 +1.000,0.700,0.008 +1.000,0.706,0.009 +1.000,0.713,0.009 +1.000,0.719,0.010 +1.000,0.726,0.011 +1.000,0.732,0.012 +1.000,0.739,0.012 +1.000,0.745,0.013 +1.000,0.751,0.014 +1.000,0.758,0.015 +1.000,0.764,0.016 +1.000,0.770,0.017 +1.000,0.777,0.018 +1.000,0.783,0.019 +1.000,0.789,0.020 +1.000,0.796,0.021 +1.000,0.802,0.023 +1.000,0.808,0.024 +1.000,0.814,0.025 +1.000,0.820,0.027 +1.000,0.827,0.028 +1.000,0.833,0.030 +1.000,0.839,0.032 +1.000,0.845,0.033 +1.000,0.851,0.035 +1.000,0.857,0.037 +1.000,0.863,0.040 +1.000,0.869,0.042 +1.000,0.876,0.044 +1.000,0.882,0.047 +1.000,0.888,0.050 +1.000,0.894,0.053 +1.000,0.900,0.056 +1.000,0.906,0.060 +1.000,0.912,0.064 +1.000,0.918,0.069 +1.000,0.924,0.074 +1.000,0.930,0.081 +1.000,0.936,0.091 +1.000,0.942,0.104 +1.000,0.948,0.121 +1.000,0.953,0.141 +1.000,0.959,0.167 +1.000,0.965,0.198 +1.000,0.970,0.235 +1.000,0.975,0.279 +1.000,0.980,0.329 +1.000,0.984,0.386 +1.000,0.988,0.449 +1.000,0.991,0.517 +1.000,0.994,0.588 +1.000,0.996,0.660 +1.000,0.998,0.732 +1.000,0.999,0.803 +1.000,1.000,0.871 +1.000,1.000,0.937 +1.000,1.000,1.000 diff --git a/pyqtgraph/colors/maps/CET-L4.csv b/pyqtgraph/colors/maps/CET-L4.csv new file mode 100644 index 00000000..035a9ff2 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-L4.csv @@ -0,0 +1,256 @@ +0.000,0.000,0.000 +0.026,0.000,0.000 +0.051,0.000,0.000 +0.070,0.000,0.000 +0.085,0.000,0.000 +0.099,0.000,0.000 +0.111,0.000,0.000 +0.122,0.000,0.000 +0.132,0.000,0.000 +0.142,0.001,0.000 +0.150,0.001,0.000 +0.159,0.001,0.000 +0.166,0.001,0.000 +0.174,0.001,0.000 +0.181,0.001,0.000 +0.188,0.001,0.000 +0.195,0.001,0.000 +0.201,0.001,0.000 +0.207,0.001,0.000 +0.213,0.001,0.000 +0.219,0.002,0.000 +0.224,0.002,0.000 +0.230,0.002,0.000 +0.236,0.002,0.000 +0.241,0.002,0.000 +0.247,0.002,0.000 +0.253,0.002,0.000 +0.258,0.002,0.000 +0.264,0.002,0.000 +0.270,0.002,0.000 +0.275,0.002,0.000 +0.281,0.002,0.000 +0.287,0.003,0.000 +0.293,0.003,0.000 +0.298,0.003,0.000 +0.304,0.003,0.000 +0.310,0.003,0.000 +0.316,0.003,0.000 +0.322,0.003,0.000 +0.328,0.003,0.000 +0.334,0.004,0.000 +0.339,0.004,0.000 +0.345,0.004,0.000 +0.351,0.004,0.000 +0.357,0.004,0.000 +0.363,0.004,0.000 +0.369,0.004,0.000 +0.375,0.005,0.000 +0.381,0.005,0.000 +0.387,0.005,0.000 +0.394,0.005,0.000 +0.400,0.005,0.000 +0.406,0.006,0.000 +0.412,0.006,0.000 +0.418,0.006,0.000 +0.424,0.006,0.000 +0.430,0.006,0.000 +0.437,0.007,0.000 +0.443,0.007,0.000 +0.449,0.007,0.000 +0.455,0.007,0.000 +0.461,0.008,0.000 +0.468,0.008,0.000 +0.474,0.008,0.000 +0.480,0.008,0.000 +0.487,0.009,0.000 +0.493,0.009,0.000 +0.499,0.009,0.000 +0.506,0.009,0.000 +0.512,0.010,0.000 +0.518,0.010,0.000 +0.525,0.010,0.000 +0.531,0.011,0.000 +0.538,0.011,0.000 +0.544,0.011,0.000 +0.551,0.012,0.000 +0.557,0.012,0.000 +0.563,0.012,0.000 +0.570,0.013,0.000 +0.576,0.013,0.000 +0.583,0.014,0.000 +0.589,0.014,0.000 +0.596,0.014,0.000 +0.603,0.015,0.000 +0.609,0.015,0.000 +0.616,0.016,0.000 +0.622,0.016,0.000 +0.629,0.017,0.000 +0.635,0.017,0.000 +0.642,0.018,0.000 +0.649,0.018,0.000 +0.655,0.019,0.000 +0.662,0.019,0.000 +0.669,0.020,0.000 +0.675,0.020,0.000 +0.682,0.021,0.000 +0.689,0.022,0.000 +0.695,0.022,0.000 +0.702,0.023,0.000 +0.709,0.024,0.000 +0.716,0.024,0.000 +0.722,0.025,0.000 +0.729,0.026,0.000 +0.736,0.026,0.000 +0.743,0.027,0.000 +0.750,0.028,0.000 +0.756,0.029,0.000 +0.763,0.030,0.000 +0.770,0.031,0.000 +0.777,0.032,0.000 +0.784,0.033,0.000 +0.790,0.034,0.000 +0.797,0.035,0.000 +0.804,0.036,0.000 +0.811,0.037,0.000 +0.818,0.038,0.000 +0.825,0.039,0.000 +0.832,0.041,0.000 +0.839,0.042,0.000 +0.845,0.044,0.000 +0.852,0.045,0.000 +0.859,0.047,0.000 +0.866,0.049,0.000 +0.873,0.050,0.000 +0.880,0.052,0.000 +0.887,0.055,0.000 +0.893,0.057,0.000 +0.900,0.060,0.000 +0.907,0.063,0.000 +0.913,0.066,0.000 +0.920,0.071,0.000 +0.926,0.076,0.000 +0.932,0.084,0.000 +0.937,0.093,0.000 +0.942,0.104,0.000 +0.946,0.115,0.000 +0.950,0.128,0.000 +0.953,0.140,0.000 +0.956,0.153,0.000 +0.959,0.166,0.000 +0.961,0.179,0.000 +0.963,0.191,0.000 +0.965,0.203,0.000 +0.967,0.215,0.000 +0.969,0.227,0.000 +0.970,0.238,0.000 +0.972,0.249,0.000 +0.973,0.260,0.000 +0.974,0.270,0.000 +0.975,0.281,0.000 +0.976,0.291,0.000 +0.977,0.301,0.000 +0.978,0.311,0.000 +0.979,0.320,0.000 +0.980,0.330,0.000 +0.981,0.339,0.000 +0.982,0.348,0.000 +0.982,0.357,0.000 +0.983,0.366,0.000 +0.984,0.375,0.000 +0.984,0.383,0.000 +0.985,0.392,0.000 +0.985,0.400,0.000 +0.986,0.408,0.000 +0.986,0.416,0.000 +0.987,0.425,0.000 +0.987,0.433,0.000 +0.988,0.440,0.000 +0.988,0.448,0.000 +0.989,0.456,0.000 +0.989,0.464,0.000 +0.989,0.471,0.000 +0.990,0.479,0.000 +0.990,0.486,0.000 +0.991,0.494,0.000 +0.991,0.501,0.000 +0.991,0.508,0.000 +0.991,0.515,0.000 +0.992,0.523,0.000 +0.992,0.530,0.000 +0.992,0.537,0.000 +0.993,0.544,0.000 +0.993,0.551,0.000 +0.993,0.558,0.000 +0.993,0.565,0.000 +0.994,0.571,0.000 +0.994,0.578,0.000 +0.994,0.585,0.000 +0.994,0.592,0.000 +0.995,0.598,0.000 +0.995,0.605,0.000 +0.995,0.612,0.000 +0.995,0.618,0.000 +0.995,0.625,0.000 +0.996,0.632,0.000 +0.996,0.638,0.000 +0.996,0.645,0.000 +0.996,0.651,0.000 +0.996,0.657,0.000 +0.996,0.664,0.000 +0.997,0.670,0.000 +0.997,0.677,0.000 +0.997,0.683,0.000 +0.997,0.689,0.000 +0.997,0.696,0.000 +0.997,0.702,0.000 +0.997,0.708,0.000 +0.997,0.714,0.000 +0.998,0.721,0.000 +0.998,0.727,0.000 +0.998,0.733,0.000 +0.998,0.739,0.000 +0.998,0.745,0.000 +0.998,0.752,0.000 +0.998,0.758,0.000 +0.998,0.764,0.000 +0.998,0.770,0.000 +0.999,0.776,0.000 +0.999,0.782,0.000 +0.999,0.788,0.000 +0.999,0.794,0.000 +0.999,0.800,0.000 +0.999,0.806,0.000 +0.999,0.812,0.000 +0.999,0.818,0.000 +0.999,0.824,0.000 +0.999,0.830,0.000 +0.999,0.836,0.000 +0.999,0.842,0.000 +0.999,0.848,0.000 +0.999,0.854,0.000 +0.999,0.860,0.000 +1.000,0.866,0.000 +1.000,0.872,0.000 +1.000,0.878,0.000 +1.000,0.884,0.000 +1.000,0.890,0.000 +1.000,0.895,0.000 +1.000,0.901,0.000 +1.000,0.907,0.000 +1.000,0.913,0.000 +1.000,0.919,0.000 +1.000,0.925,0.000 +1.000,0.930,0.000 +1.000,0.936,0.000 +1.000,0.942,0.000 +1.000,0.948,0.000 +1.000,0.954,0.000 +1.000,0.960,0.000 +1.000,0.965,0.000 +1.000,0.971,0.000 +1.000,0.977,0.000 +1.000,0.983,0.000 +1.000,0.988,0.000 +1.000,0.994,0.000 +1.000,1.000,0.000 diff --git a/pyqtgraph/colors/maps/CET-L5.csv b/pyqtgraph/colors/maps/CET-L5.csv new file mode 100644 index 00000000..cd07fae9 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-L5.csv @@ -0,0 +1,256 @@ +0.002,0.083,0.022 +0.004,0.086,0.022 +0.007,0.090,0.022 +0.009,0.093,0.022 +0.012,0.096,0.022 +0.014,0.100,0.022 +0.017,0.103,0.022 +0.019,0.106,0.022 +0.022,0.109,0.022 +0.024,0.112,0.022 +0.026,0.115,0.022 +0.028,0.118,0.022 +0.030,0.121,0.022 +0.032,0.124,0.022 +0.033,0.127,0.022 +0.034,0.130,0.022 +0.036,0.133,0.022 +0.036,0.136,0.022 +0.037,0.140,0.021 +0.037,0.143,0.021 +0.037,0.146,0.021 +0.037,0.150,0.021 +0.037,0.153,0.021 +0.036,0.156,0.021 +0.036,0.160,0.021 +0.036,0.163,0.020 +0.035,0.167,0.020 +0.035,0.170,0.020 +0.035,0.173,0.020 +0.034,0.177,0.020 +0.034,0.180,0.020 +0.034,0.184,0.019 +0.033,0.187,0.019 +0.033,0.191,0.019 +0.033,0.194,0.019 +0.033,0.197,0.019 +0.033,0.201,0.019 +0.033,0.204,0.019 +0.033,0.208,0.019 +0.034,0.211,0.018 +0.034,0.215,0.018 +0.035,0.218,0.018 +0.036,0.222,0.019 +0.037,0.225,0.019 +0.038,0.228,0.019 +0.039,0.232,0.019 +0.040,0.235,0.019 +0.041,0.239,0.019 +0.042,0.242,0.019 +0.043,0.246,0.019 +0.044,0.249,0.019 +0.045,0.253,0.019 +0.046,0.256,0.019 +0.047,0.260,0.020 +0.048,0.263,0.020 +0.049,0.267,0.020 +0.050,0.270,0.020 +0.051,0.274,0.020 +0.052,0.277,0.020 +0.053,0.281,0.020 +0.054,0.284,0.020 +0.055,0.288,0.020 +0.057,0.292,0.020 +0.058,0.295,0.020 +0.059,0.299,0.020 +0.060,0.302,0.020 +0.061,0.306,0.020 +0.062,0.310,0.020 +0.063,0.313,0.020 +0.064,0.317,0.021 +0.065,0.320,0.021 +0.066,0.324,0.021 +0.067,0.328,0.022 +0.068,0.331,0.022 +0.069,0.335,0.022 +0.070,0.339,0.023 +0.070,0.342,0.023 +0.071,0.346,0.023 +0.072,0.350,0.024 +0.073,0.353,0.024 +0.074,0.357,0.024 +0.075,0.361,0.025 +0.076,0.365,0.025 +0.077,0.368,0.025 +0.078,0.372,0.026 +0.079,0.376,0.026 +0.080,0.380,0.026 +0.081,0.383,0.027 +0.082,0.387,0.027 +0.083,0.391,0.028 +0.084,0.395,0.028 +0.085,0.398,0.028 +0.086,0.402,0.029 +0.087,0.406,0.029 +0.088,0.410,0.030 +0.089,0.413,0.030 +0.090,0.417,0.030 +0.091,0.421,0.031 +0.092,0.425,0.031 +0.093,0.429,0.032 +0.094,0.433,0.032 +0.095,0.436,0.032 +0.096,0.440,0.033 +0.097,0.444,0.033 +0.098,0.448,0.034 +0.099,0.452,0.034 +0.100,0.456,0.034 +0.101,0.460,0.035 +0.102,0.463,0.036 +0.103,0.467,0.036 +0.104,0.471,0.036 +0.105,0.475,0.037 +0.106,0.479,0.037 +0.107,0.483,0.038 +0.108,0.487,0.038 +0.109,0.491,0.039 +0.110,0.495,0.039 +0.111,0.499,0.039 +0.112,0.503,0.040 +0.113,0.506,0.040 +0.114,0.510,0.041 +0.115,0.514,0.041 +0.116,0.518,0.042 +0.117,0.522,0.042 +0.118,0.526,0.043 +0.119,0.530,0.043 +0.120,0.534,0.044 +0.121,0.538,0.044 +0.122,0.542,0.045 +0.123,0.546,0.045 +0.124,0.550,0.045 +0.125,0.554,0.046 +0.126,0.558,0.046 +0.127,0.562,0.047 +0.128,0.566,0.047 +0.129,0.570,0.048 +0.130,0.574,0.048 +0.131,0.578,0.049 +0.132,0.582,0.049 +0.133,0.586,0.050 +0.134,0.590,0.050 +0.135,0.595,0.050 +0.136,0.599,0.051 +0.137,0.603,0.051 +0.138,0.607,0.052 +0.139,0.611,0.052 +0.140,0.615,0.053 +0.141,0.619,0.053 +0.142,0.623,0.054 +0.143,0.627,0.054 +0.144,0.631,0.054 +0.145,0.635,0.055 +0.146,0.639,0.055 +0.147,0.644,0.056 +0.148,0.648,0.056 +0.149,0.652,0.057 +0.150,0.656,0.057 +0.151,0.660,0.058 +0.152,0.664,0.058 +0.153,0.668,0.059 +0.155,0.673,0.059 +0.156,0.677,0.060 +0.157,0.681,0.060 +0.158,0.685,0.060 +0.159,0.689,0.061 +0.160,0.693,0.061 +0.161,0.698,0.062 +0.162,0.702,0.062 +0.163,0.706,0.063 +0.164,0.710,0.063 +0.165,0.714,0.064 +0.166,0.719,0.064 +0.167,0.723,0.064 +0.168,0.727,0.065 +0.169,0.731,0.065 +0.170,0.735,0.066 +0.171,0.740,0.066 +0.172,0.744,0.067 +0.173,0.748,0.067 +0.174,0.752,0.068 +0.175,0.757,0.068 +0.177,0.761,0.069 +0.178,0.765,0.069 +0.179,0.769,0.070 +0.180,0.774,0.070 +0.181,0.778,0.070 +0.182,0.782,0.071 +0.183,0.786,0.071 +0.184,0.791,0.072 +0.185,0.795,0.072 +0.186,0.799,0.073 +0.187,0.803,0.073 +0.188,0.808,0.074 +0.189,0.812,0.074 +0.190,0.816,0.074 +0.191,0.821,0.075 +0.193,0.825,0.075 +0.194,0.829,0.076 +0.195,0.834,0.076 +0.196,0.838,0.077 +0.197,0.842,0.077 +0.198,0.847,0.077 +0.199,0.851,0.078 +0.200,0.855,0.078 +0.201,0.860,0.079 +0.202,0.864,0.079 +0.203,0.868,0.080 +0.204,0.873,0.080 +0.205,0.877,0.081 +0.206,0.881,0.081 +0.208,0.886,0.082 +0.209,0.890,0.082 +0.210,0.895,0.082 +0.212,0.899,0.083 +0.216,0.903,0.083 +0.222,0.907,0.084 +0.231,0.911,0.084 +0.242,0.915,0.084 +0.254,0.919,0.084 +0.267,0.923,0.084 +0.281,0.926,0.085 +0.296,0.930,0.085 +0.311,0.933,0.085 +0.327,0.936,0.085 +0.343,0.940,0.085 +0.359,0.943,0.085 +0.375,0.946,0.085 +0.392,0.949,0.085 +0.408,0.952,0.084 +0.425,0.955,0.084 +0.441,0.958,0.084 +0.458,0.960,0.084 +0.474,0.963,0.084 +0.491,0.966,0.084 +0.507,0.968,0.084 +0.524,0.971,0.083 +0.540,0.973,0.083 +0.557,0.976,0.083 +0.573,0.978,0.083 +0.589,0.980,0.083 +0.606,0.982,0.083 +0.622,0.985,0.082 +0.638,0.987,0.082 +0.655,0.989,0.082 +0.671,0.991,0.082 +0.687,0.993,0.082 +0.703,0.995,0.082 +0.719,0.996,0.082 +0.735,0.998,0.082 +0.751,1.000,0.081 +0.767,1.000,0.081 +0.783,1.000,0.081 +0.800,1.000,0.081 +0.816,1.000,0.081 +0.832,1.000,0.081 +0.848,1.000,0.081 diff --git a/pyqtgraph/colors/maps/CET-L6.csv b/pyqtgraph/colors/maps/CET-L6.csv new file mode 100644 index 00000000..961b35db --- /dev/null +++ b/pyqtgraph/colors/maps/CET-L6.csv @@ -0,0 +1,256 @@ +0.000,0.002,0.307 +0.000,0.004,0.314 +0.000,0.006,0.322 +0.000,0.008,0.330 +0.000,0.009,0.337 +0.000,0.010,0.345 +0.000,0.011,0.352 +0.000,0.011,0.360 +0.000,0.011,0.368 +0.002,0.011,0.376 +0.004,0.011,0.384 +0.007,0.010,0.392 +0.009,0.010,0.400 +0.012,0.010,0.407 +0.015,0.010,0.416 +0.018,0.009,0.424 +0.021,0.009,0.432 +0.024,0.009,0.440 +0.026,0.009,0.448 +0.029,0.008,0.456 +0.032,0.008,0.464 +0.036,0.008,0.473 +0.039,0.007,0.481 +0.041,0.007,0.489 +0.044,0.007,0.498 +0.047,0.007,0.506 +0.049,0.006,0.514 +0.052,0.006,0.523 +0.054,0.006,0.531 +0.056,0.006,0.540 +0.057,0.006,0.549 +0.059,0.005,0.557 +0.061,0.005,0.566 +0.062,0.005,0.575 +0.063,0.005,0.583 +0.064,0.005,0.592 +0.064,0.006,0.601 +0.064,0.006,0.610 +0.064,0.006,0.619 +0.063,0.007,0.628 +0.062,0.007,0.637 +0.060,0.008,0.646 +0.058,0.009,0.656 +0.055,0.010,0.665 +0.052,0.011,0.674 +0.049,0.013,0.683 +0.046,0.014,0.692 +0.043,0.016,0.701 +0.040,0.017,0.710 +0.038,0.019,0.719 +0.036,0.021,0.727 +0.033,0.024,0.736 +0.032,0.026,0.744 +0.031,0.029,0.753 +0.030,0.031,0.761 +0.029,0.034,0.769 +0.029,0.038,0.777 +0.030,0.041,0.785 +0.031,0.044,0.793 +0.032,0.048,0.801 +0.034,0.051,0.808 +0.037,0.055,0.816 +0.040,0.058,0.823 +0.043,0.062,0.831 +0.047,0.065,0.838 +0.052,0.069,0.845 +0.056,0.072,0.852 +0.061,0.076,0.859 +0.066,0.080,0.866 +0.071,0.084,0.873 +0.076,0.087,0.879 +0.082,0.091,0.886 +0.087,0.095,0.892 +0.092,0.099,0.898 +0.097,0.104,0.904 +0.102,0.108,0.910 +0.107,0.113,0.915 +0.111,0.118,0.920 +0.116,0.123,0.925 +0.120,0.128,0.930 +0.124,0.134,0.935 +0.128,0.139,0.939 +0.132,0.145,0.944 +0.135,0.151,0.948 +0.139,0.157,0.951 +0.142,0.163,0.955 +0.146,0.169,0.958 +0.149,0.175,0.962 +0.152,0.181,0.964 +0.155,0.187,0.967 +0.158,0.194,0.970 +0.160,0.200,0.972 +0.163,0.206,0.974 +0.165,0.213,0.976 +0.168,0.220,0.977 +0.170,0.226,0.979 +0.172,0.233,0.980 +0.174,0.239,0.981 +0.175,0.246,0.982 +0.177,0.253,0.982 +0.178,0.260,0.983 +0.179,0.266,0.983 +0.180,0.273,0.984 +0.181,0.280,0.984 +0.182,0.286,0.984 +0.183,0.292,0.985 +0.184,0.299,0.985 +0.185,0.305,0.985 +0.185,0.311,0.986 +0.186,0.317,0.986 +0.186,0.323,0.987 +0.186,0.329,0.987 +0.187,0.335,0.987 +0.187,0.341,0.988 +0.187,0.347,0.988 +0.187,0.353,0.988 +0.187,0.359,0.989 +0.186,0.365,0.989 +0.186,0.371,0.989 +0.186,0.376,0.990 +0.185,0.382,0.990 +0.184,0.388,0.990 +0.184,0.393,0.991 +0.183,0.399,0.991 +0.182,0.405,0.991 +0.181,0.410,0.992 +0.180,0.416,0.992 +0.178,0.421,0.992 +0.177,0.427,0.993 +0.176,0.432,0.993 +0.175,0.438,0.993 +0.174,0.443,0.994 +0.173,0.449,0.994 +0.172,0.454,0.994 +0.171,0.459,0.994 +0.171,0.465,0.994 +0.170,0.470,0.995 +0.170,0.475,0.995 +0.170,0.480,0.995 +0.170,0.486,0.995 +0.170,0.491,0.995 +0.171,0.496,0.995 +0.171,0.501,0.995 +0.172,0.506,0.995 +0.173,0.511,0.995 +0.174,0.516,0.995 +0.175,0.521,0.995 +0.176,0.526,0.995 +0.178,0.531,0.995 +0.179,0.536,0.995 +0.181,0.541,0.995 +0.183,0.546,0.995 +0.185,0.551,0.995 +0.187,0.556,0.994 +0.189,0.561,0.994 +0.192,0.566,0.994 +0.194,0.571,0.994 +0.197,0.575,0.993 +0.199,0.580,0.993 +0.201,0.585,0.993 +0.203,0.590,0.993 +0.205,0.595,0.993 +0.206,0.600,0.992 +0.207,0.605,0.992 +0.208,0.610,0.992 +0.209,0.615,0.992 +0.210,0.620,0.992 +0.211,0.624,0.991 +0.211,0.629,0.991 +0.211,0.634,0.991 +0.211,0.639,0.991 +0.211,0.644,0.991 +0.211,0.649,0.991 +0.210,0.654,0.990 +0.210,0.659,0.990 +0.209,0.664,0.990 +0.208,0.669,0.990 +0.206,0.674,0.990 +0.205,0.679,0.990 +0.203,0.684,0.990 +0.201,0.689,0.990 +0.199,0.694,0.989 +0.197,0.699,0.989 +0.194,0.704,0.989 +0.191,0.709,0.989 +0.188,0.714,0.989 +0.185,0.719,0.989 +0.182,0.724,0.989 +0.179,0.729,0.989 +0.177,0.734,0.989 +0.174,0.739,0.988 +0.172,0.744,0.988 +0.170,0.749,0.988 +0.168,0.754,0.988 +0.166,0.759,0.988 +0.165,0.764,0.987 +0.163,0.769,0.987 +0.162,0.774,0.987 +0.161,0.778,0.987 +0.160,0.783,0.987 +0.160,0.788,0.986 +0.160,0.793,0.986 +0.160,0.798,0.986 +0.160,0.803,0.985 +0.161,0.807,0.985 +0.161,0.812,0.985 +0.162,0.817,0.984 +0.164,0.822,0.984 +0.165,0.827,0.984 +0.167,0.831,0.983 +0.169,0.836,0.983 +0.171,0.841,0.982 +0.174,0.845,0.982 +0.177,0.850,0.982 +0.183,0.855,0.981 +0.190,0.859,0.981 +0.199,0.864,0.980 +0.210,0.868,0.980 +0.221,0.872,0.979 +0.233,0.876,0.979 +0.246,0.880,0.979 +0.260,0.884,0.978 +0.273,0.888,0.978 +0.287,0.892,0.977 +0.301,0.896,0.977 +0.314,0.900,0.976 +0.328,0.904,0.976 +0.342,0.907,0.976 +0.356,0.911,0.975 +0.370,0.915,0.975 +0.384,0.918,0.974 +0.397,0.922,0.974 +0.411,0.925,0.973 +0.424,0.929,0.973 +0.438,0.932,0.973 +0.451,0.936,0.972 +0.464,0.939,0.972 +0.478,0.943,0.971 +0.491,0.946,0.971 +0.504,0.949,0.970 +0.517,0.953,0.970 +0.529,0.956,0.969 +0.542,0.959,0.969 +0.555,0.962,0.968 +0.568,0.966,0.968 +0.580,0.969,0.968 +0.593,0.972,0.967 +0.605,0.975,0.967 +0.618,0.978,0.966 +0.630,0.981,0.966 +0.642,0.984,0.965 +0.654,0.987,0.965 +0.667,0.990,0.964 +0.679,0.993,0.964 +0.691,0.996,0.963 +0.703,0.999,0.963 diff --git a/pyqtgraph/colors/maps/CET-L7.csv b/pyqtgraph/colors/maps/CET-L7.csv new file mode 100644 index 00000000..023f95e9 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-L7.csv @@ -0,0 +1,256 @@ +0.000,0.008,0.296 +0.000,0.010,0.303 +0.000,0.012,0.311 +0.000,0.014,0.319 +0.000,0.016,0.327 +0.000,0.017,0.335 +0.000,0.018,0.343 +0.000,0.019,0.351 +0.000,0.019,0.359 +0.000,0.020,0.368 +0.000,0.020,0.376 +0.000,0.020,0.384 +0.000,0.020,0.392 +0.000,0.020,0.401 +0.001,0.020,0.409 +0.002,0.020,0.417 +0.003,0.020,0.426 +0.005,0.021,0.434 +0.006,0.021,0.442 +0.007,0.021,0.451 +0.008,0.021,0.459 +0.009,0.021,0.468 +0.010,0.021,0.476 +0.012,0.021,0.485 +0.013,0.021,0.493 +0.014,0.021,0.502 +0.015,0.021,0.511 +0.016,0.021,0.519 +0.017,0.022,0.528 +0.018,0.022,0.537 +0.019,0.022,0.546 +0.020,0.022,0.554 +0.021,0.022,0.563 +0.022,0.022,0.572 +0.022,0.023,0.581 +0.023,0.023,0.590 +0.023,0.023,0.599 +0.023,0.024,0.607 +0.023,0.024,0.616 +0.023,0.024,0.625 +0.023,0.025,0.634 +0.022,0.025,0.643 +0.021,0.026,0.652 +0.020,0.027,0.661 +0.019,0.028,0.670 +0.018,0.029,0.679 +0.018,0.030,0.688 +0.018,0.031,0.697 +0.019,0.032,0.706 +0.020,0.033,0.714 +0.021,0.035,0.723 +0.023,0.036,0.731 +0.025,0.038,0.740 +0.029,0.039,0.748 +0.032,0.041,0.756 +0.037,0.043,0.764 +0.041,0.044,0.772 +0.046,0.046,0.780 +0.052,0.048,0.788 +0.057,0.050,0.796 +0.063,0.052,0.804 +0.069,0.054,0.811 +0.075,0.056,0.819 +0.081,0.058,0.826 +0.087,0.060,0.833 +0.094,0.063,0.841 +0.100,0.065,0.848 +0.106,0.067,0.855 +0.113,0.070,0.862 +0.119,0.072,0.869 +0.126,0.075,0.876 +0.133,0.077,0.882 +0.140,0.079,0.889 +0.148,0.082,0.895 +0.156,0.084,0.901 +0.165,0.086,0.907 +0.174,0.088,0.913 +0.184,0.090,0.919 +0.194,0.092,0.924 +0.204,0.094,0.929 +0.214,0.095,0.934 +0.225,0.097,0.939 +0.236,0.098,0.943 +0.247,0.099,0.947 +0.258,0.101,0.951 +0.269,0.102,0.955 +0.281,0.103,0.959 +0.292,0.104,0.962 +0.304,0.105,0.966 +0.316,0.106,0.969 +0.327,0.107,0.971 +0.339,0.107,0.974 +0.351,0.108,0.976 +0.363,0.109,0.979 +0.375,0.109,0.980 +0.387,0.110,0.982 +0.399,0.110,0.984 +0.411,0.110,0.985 +0.423,0.111,0.986 +0.435,0.111,0.987 +0.447,0.111,0.988 +0.458,0.111,0.988 +0.470,0.111,0.989 +0.481,0.111,0.989 +0.493,0.111,0.990 +0.504,0.111,0.991 +0.515,0.111,0.991 +0.525,0.111,0.992 +0.536,0.112,0.992 +0.547,0.112,0.993 +0.557,0.112,0.993 +0.568,0.112,0.993 +0.578,0.112,0.994 +0.588,0.112,0.994 +0.598,0.112,0.994 +0.608,0.112,0.995 +0.618,0.112,0.995 +0.628,0.112,0.995 +0.638,0.112,0.995 +0.648,0.112,0.996 +0.657,0.112,0.996 +0.667,0.112,0.996 +0.677,0.112,0.996 +0.686,0.112,0.996 +0.696,0.112,0.996 +0.705,0.112,0.996 +0.715,0.112,0.996 +0.724,0.112,0.996 +0.733,0.112,0.996 +0.742,0.112,0.996 +0.751,0.113,0.996 +0.760,0.114,0.996 +0.769,0.115,0.996 +0.777,0.117,0.996 +0.785,0.119,0.996 +0.793,0.122,0.996 +0.801,0.125,0.996 +0.809,0.128,0.996 +0.816,0.132,0.996 +0.823,0.136,0.996 +0.831,0.140,0.996 +0.838,0.145,0.996 +0.845,0.149,0.996 +0.851,0.154,0.996 +0.858,0.160,0.996 +0.864,0.165,0.996 +0.871,0.171,0.996 +0.877,0.176,0.996 +0.883,0.182,0.996 +0.888,0.188,0.996 +0.894,0.195,0.996 +0.900,0.201,0.996 +0.905,0.208,0.996 +0.910,0.214,0.996 +0.915,0.221,0.996 +0.920,0.228,0.996 +0.925,0.234,0.996 +0.930,0.241,0.996 +0.934,0.249,0.996 +0.939,0.256,0.996 +0.943,0.263,0.997 +0.947,0.270,0.997 +0.951,0.278,0.997 +0.955,0.285,0.997 +0.958,0.293,0.996 +0.961,0.301,0.996 +0.965,0.308,0.996 +0.968,0.316,0.996 +0.971,0.324,0.996 +0.973,0.332,0.996 +0.976,0.340,0.996 +0.978,0.348,0.996 +0.981,0.356,0.996 +0.983,0.364,0.996 +0.985,0.372,0.995 +0.987,0.381,0.995 +0.988,0.389,0.995 +0.990,0.397,0.995 +0.991,0.405,0.995 +0.992,0.414,0.994 +0.993,0.422,0.994 +0.994,0.430,0.994 +0.994,0.439,0.994 +0.995,0.447,0.993 +0.995,0.456,0.993 +0.995,0.464,0.993 +0.995,0.472,0.992 +0.996,0.481,0.992 +0.996,0.489,0.992 +0.996,0.497,0.992 +0.996,0.504,0.991 +0.996,0.512,0.991 +0.996,0.520,0.991 +0.996,0.527,0.991 +0.996,0.535,0.991 +0.996,0.542,0.991 +0.997,0.550,0.991 +0.997,0.557,0.991 +0.997,0.564,0.991 +0.997,0.572,0.991 +0.997,0.579,0.991 +0.997,0.586,0.991 +0.997,0.593,0.991 +0.997,0.600,0.991 +0.997,0.607,0.991 +0.997,0.614,0.991 +0.997,0.620,0.991 +0.997,0.627,0.991 +0.997,0.634,0.992 +0.997,0.641,0.992 +0.997,0.647,0.992 +0.997,0.654,0.992 +0.997,0.660,0.993 +0.997,0.667,0.993 +0.997,0.673,0.993 +0.997,0.680,0.994 +0.997,0.686,0.994 +0.997,0.693,0.994 +0.997,0.699,0.995 +0.997,0.705,0.995 +0.997,0.712,0.995 +0.997,0.718,0.995 +0.997,0.724,0.995 +0.998,0.730,0.996 +0.998,0.736,0.996 +0.998,0.743,0.996 +0.998,0.749,0.996 +0.998,0.755,0.996 +0.998,0.761,0.996 +0.998,0.767,0.997 +0.998,0.773,0.997 +0.998,0.779,0.997 +0.998,0.785,0.997 +0.998,0.791,0.997 +0.998,0.797,0.997 +0.998,0.803,0.997 +0.999,0.809,0.997 +0.999,0.815,0.997 +0.999,0.821,0.997 +0.999,0.827,0.997 +0.999,0.833,0.997 +0.999,0.839,0.998 +0.999,0.845,0.998 +0.999,0.851,0.998 +0.999,0.857,0.998 +0.999,0.863,0.998 +0.999,0.868,0.998 +0.998,0.874,0.998 +0.998,0.880,0.998 +0.998,0.886,0.998 +0.998,0.892,0.998 +0.998,0.898,0.998 +0.998,0.903,0.997 +0.998,0.909,0.997 +0.998,0.915,0.997 +0.998,0.921,0.997 diff --git a/pyqtgraph/colors/maps/CET-L8.csv b/pyqtgraph/colors/maps/CET-L8.csv new file mode 100644 index 00000000..3a4e3fdf --- /dev/null +++ b/pyqtgraph/colors/maps/CET-L8.csv @@ -0,0 +1,256 @@ +0.002,0.058,0.364 +0.002,0.060,0.370 +0.003,0.062,0.377 +0.004,0.064,0.383 +0.006,0.065,0.390 +0.008,0.067,0.396 +0.010,0.069,0.402 +0.013,0.071,0.409 +0.016,0.072,0.415 +0.019,0.074,0.421 +0.023,0.076,0.427 +0.028,0.077,0.433 +0.033,0.079,0.439 +0.039,0.081,0.445 +0.045,0.082,0.451 +0.052,0.084,0.457 +0.058,0.085,0.463 +0.065,0.087,0.468 +0.071,0.088,0.474 +0.078,0.089,0.480 +0.085,0.091,0.485 +0.092,0.092,0.490 +0.099,0.093,0.496 +0.107,0.095,0.501 +0.114,0.096,0.506 +0.122,0.097,0.511 +0.129,0.098,0.516 +0.137,0.099,0.520 +0.145,0.100,0.525 +0.153,0.101,0.529 +0.162,0.102,0.534 +0.170,0.102,0.538 +0.178,0.103,0.542 +0.187,0.104,0.546 +0.196,0.104,0.549 +0.205,0.104,0.553 +0.214,0.105,0.556 +0.224,0.105,0.559 +0.233,0.105,0.562 +0.243,0.105,0.564 +0.253,0.104,0.566 +0.263,0.104,0.568 +0.273,0.103,0.570 +0.284,0.102,0.571 +0.295,0.101,0.572 +0.306,0.100,0.573 +0.317,0.098,0.573 +0.328,0.097,0.573 +0.339,0.095,0.574 +0.350,0.093,0.574 +0.360,0.092,0.574 +0.370,0.090,0.574 +0.380,0.088,0.574 +0.390,0.087,0.573 +0.399,0.085,0.573 +0.409,0.083,0.573 +0.418,0.081,0.573 +0.428,0.079,0.572 +0.437,0.077,0.572 +0.446,0.075,0.572 +0.455,0.074,0.571 +0.464,0.072,0.570 +0.473,0.070,0.570 +0.481,0.068,0.569 +0.490,0.066,0.568 +0.499,0.064,0.568 +0.507,0.062,0.567 +0.515,0.060,0.566 +0.524,0.058,0.565 +0.532,0.056,0.564 +0.540,0.054,0.563 +0.548,0.052,0.562 +0.556,0.051,0.560 +0.564,0.049,0.559 +0.572,0.048,0.558 +0.580,0.046,0.556 +0.588,0.045,0.555 +0.596,0.043,0.554 +0.603,0.042,0.552 +0.611,0.041,0.551 +0.619,0.040,0.549 +0.626,0.039,0.548 +0.634,0.038,0.546 +0.641,0.038,0.545 +0.648,0.037,0.543 +0.656,0.037,0.542 +0.663,0.037,0.540 +0.670,0.037,0.538 +0.677,0.037,0.537 +0.684,0.037,0.535 +0.691,0.038,0.534 +0.698,0.039,0.532 +0.705,0.040,0.530 +0.712,0.041,0.529 +0.719,0.042,0.527 +0.726,0.044,0.525 +0.733,0.045,0.523 +0.739,0.047,0.522 +0.746,0.049,0.520 +0.753,0.051,0.518 +0.759,0.054,0.516 +0.766,0.056,0.514 +0.772,0.059,0.513 +0.779,0.061,0.511 +0.785,0.064,0.509 +0.792,0.067,0.507 +0.798,0.070,0.505 +0.804,0.074,0.503 +0.811,0.078,0.501 +0.817,0.082,0.499 +0.823,0.087,0.496 +0.828,0.092,0.494 +0.834,0.097,0.492 +0.840,0.103,0.489 +0.845,0.108,0.487 +0.850,0.114,0.484 +0.856,0.120,0.481 +0.861,0.126,0.478 +0.866,0.133,0.475 +0.871,0.139,0.472 +0.876,0.146,0.469 +0.880,0.152,0.466 +0.885,0.159,0.463 +0.889,0.166,0.460 +0.894,0.173,0.456 +0.898,0.180,0.453 +0.902,0.187,0.449 +0.906,0.194,0.445 +0.910,0.201,0.441 +0.914,0.208,0.438 +0.918,0.215,0.434 +0.921,0.223,0.429 +0.924,0.230,0.425 +0.928,0.237,0.421 +0.931,0.245,0.417 +0.934,0.252,0.412 +0.937,0.259,0.408 +0.940,0.267,0.403 +0.943,0.274,0.399 +0.945,0.281,0.394 +0.948,0.289,0.390 +0.950,0.296,0.386 +0.952,0.303,0.382 +0.955,0.311,0.378 +0.957,0.318,0.374 +0.959,0.325,0.370 +0.961,0.333,0.366 +0.962,0.340,0.363 +0.964,0.347,0.359 +0.966,0.354,0.355 +0.967,0.361,0.352 +0.968,0.369,0.348 +0.970,0.376,0.345 +0.971,0.383,0.341 +0.972,0.390,0.338 +0.973,0.398,0.335 +0.974,0.405,0.332 +0.974,0.412,0.329 +0.975,0.419,0.325 +0.975,0.426,0.323 +0.976,0.434,0.320 +0.976,0.441,0.317 +0.976,0.448,0.314 +0.976,0.455,0.311 +0.976,0.462,0.309 +0.976,0.469,0.306 +0.976,0.477,0.304 +0.976,0.484,0.301 +0.976,0.491,0.299 +0.976,0.497,0.296 +0.976,0.504,0.294 +0.976,0.511,0.291 +0.976,0.517,0.289 +0.976,0.524,0.286 +0.976,0.530,0.284 +0.976,0.537,0.281 +0.976,0.543,0.278 +0.976,0.549,0.276 +0.976,0.555,0.273 +0.976,0.562,0.271 +0.977,0.568,0.268 +0.977,0.574,0.266 +0.977,0.580,0.263 +0.978,0.585,0.261 +0.978,0.591,0.258 +0.979,0.597,0.256 +0.979,0.603,0.253 +0.980,0.609,0.250 +0.980,0.614,0.248 +0.981,0.620,0.245 +0.981,0.625,0.243 +0.982,0.631,0.240 +0.983,0.636,0.238 +0.983,0.642,0.235 +0.984,0.647,0.232 +0.985,0.653,0.230 +0.986,0.658,0.227 +0.987,0.663,0.225 +0.987,0.669,0.224 +0.988,0.674,0.222 +0.988,0.680,0.221 +0.989,0.685,0.220 +0.989,0.690,0.220 +0.989,0.696,0.219 +0.990,0.701,0.219 +0.990,0.707,0.218 +0.990,0.712,0.218 +0.990,0.718,0.218 +0.990,0.723,0.219 +0.990,0.728,0.219 +0.991,0.734,0.219 +0.991,0.739,0.220 +0.991,0.745,0.221 +0.990,0.750,0.221 +0.990,0.755,0.222 +0.990,0.761,0.223 +0.990,0.766,0.224 +0.990,0.772,0.225 +0.990,0.777,0.226 +0.990,0.783,0.228 +0.989,0.788,0.229 +0.989,0.793,0.230 +0.989,0.799,0.232 +0.988,0.804,0.233 +0.988,0.810,0.235 +0.987,0.815,0.237 +0.987,0.820,0.238 +0.987,0.826,0.240 +0.986,0.831,0.242 +0.986,0.836,0.244 +0.985,0.842,0.245 +0.984,0.847,0.247 +0.984,0.853,0.249 +0.983,0.858,0.251 +0.983,0.863,0.254 +0.982,0.869,0.256 +0.981,0.874,0.258 +0.980,0.879,0.260 +0.980,0.885,0.262 +0.979,0.890,0.264 +0.978,0.895,0.267 +0.977,0.901,0.269 +0.976,0.906,0.271 +0.975,0.912,0.274 +0.974,0.917,0.276 +0.973,0.922,0.279 +0.972,0.928,0.281 +0.971,0.933,0.284 +0.970,0.938,0.286 +0.969,0.944,0.289 +0.968,0.949,0.291 +0.967,0.954,0.294 +0.966,0.960,0.297 +0.964,0.965,0.299 +0.963,0.970,0.302 +0.962,0.976,0.305 diff --git a/pyqtgraph/colors/maps/CET-L9.csv b/pyqtgraph/colors/maps/CET-L9.csv new file mode 100644 index 00000000..fed08cc9 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-L9.csv @@ -0,0 +1,256 @@ +0.020,0.000,0.673 +0.022,0.009,0.675 +0.024,0.020,0.676 +0.026,0.032,0.677 +0.028,0.043,0.679 +0.029,0.053,0.680 +0.031,0.063,0.682 +0.033,0.072,0.683 +0.035,0.080,0.684 +0.036,0.087,0.686 +0.038,0.094,0.687 +0.039,0.101,0.688 +0.041,0.108,0.689 +0.042,0.114,0.690 +0.043,0.121,0.692 +0.045,0.127,0.693 +0.046,0.133,0.694 +0.047,0.139,0.695 +0.048,0.144,0.696 +0.048,0.150,0.697 +0.049,0.155,0.698 +0.050,0.161,0.699 +0.051,0.166,0.700 +0.051,0.171,0.701 +0.052,0.177,0.702 +0.052,0.182,0.703 +0.053,0.187,0.703 +0.053,0.192,0.704 +0.053,0.197,0.705 +0.054,0.202,0.705 +0.054,0.207,0.706 +0.054,0.212,0.707 +0.054,0.216,0.707 +0.054,0.221,0.708 +0.054,0.226,0.708 +0.054,0.231,0.709 +0.054,0.236,0.709 +0.054,0.240,0.709 +0.053,0.245,0.709 +0.053,0.250,0.710 +0.053,0.254,0.710 +0.052,0.259,0.710 +0.052,0.264,0.710 +0.051,0.268,0.710 +0.051,0.273,0.710 +0.050,0.278,0.709 +0.049,0.282,0.709 +0.048,0.287,0.709 +0.047,0.292,0.708 +0.046,0.296,0.708 +0.045,0.301,0.707 +0.044,0.305,0.706 +0.043,0.310,0.705 +0.042,0.315,0.704 +0.041,0.319,0.703 +0.039,0.324,0.702 +0.038,0.329,0.700 +0.036,0.333,0.698 +0.035,0.338,0.697 +0.033,0.343,0.695 +0.031,0.347,0.692 +0.030,0.352,0.690 +0.028,0.357,0.687 +0.026,0.362,0.684 +0.025,0.367,0.681 +0.023,0.372,0.677 +0.022,0.377,0.673 +0.022,0.381,0.668 +0.024,0.386,0.663 +0.028,0.391,0.659 +0.032,0.396,0.654 +0.039,0.401,0.648 +0.045,0.405,0.643 +0.052,0.410,0.637 +0.059,0.414,0.632 +0.067,0.419,0.626 +0.074,0.423,0.620 +0.080,0.428,0.614 +0.087,0.432,0.607 +0.094,0.437,0.601 +0.100,0.441,0.594 +0.106,0.446,0.588 +0.112,0.450,0.581 +0.117,0.454,0.574 +0.123,0.459,0.567 +0.128,0.463,0.560 +0.133,0.467,0.553 +0.138,0.472,0.545 +0.142,0.476,0.538 +0.147,0.480,0.530 +0.151,0.485,0.523 +0.155,0.489,0.515 +0.158,0.493,0.507 +0.162,0.497,0.499 +0.165,0.502,0.491 +0.168,0.506,0.482 +0.171,0.510,0.474 +0.174,0.514,0.466 +0.176,0.519,0.457 +0.179,0.523,0.448 +0.181,0.527,0.440 +0.182,0.531,0.431 +0.184,0.536,0.422 +0.185,0.540,0.413 +0.187,0.544,0.403 +0.188,0.548,0.394 +0.188,0.552,0.384 +0.189,0.557,0.375 +0.190,0.561,0.366 +0.191,0.565,0.357 +0.192,0.569,0.348 +0.194,0.573,0.339 +0.196,0.577,0.331 +0.198,0.581,0.323 +0.200,0.585,0.315 +0.202,0.588,0.307 +0.205,0.592,0.299 +0.208,0.596,0.292 +0.211,0.600,0.284 +0.215,0.603,0.277 +0.218,0.607,0.270 +0.222,0.611,0.263 +0.226,0.614,0.256 +0.230,0.618,0.250 +0.235,0.621,0.243 +0.240,0.625,0.237 +0.245,0.628,0.230 +0.250,0.631,0.224 +0.255,0.635,0.218 +0.260,0.638,0.212 +0.266,0.641,0.205 +0.272,0.645,0.200 +0.278,0.648,0.194 +0.284,0.651,0.188 +0.290,0.654,0.182 +0.296,0.657,0.176 +0.303,0.661,0.171 +0.309,0.664,0.165 +0.316,0.667,0.159 +0.323,0.670,0.154 +0.329,0.673,0.148 +0.336,0.676,0.143 +0.343,0.679,0.137 +0.351,0.682,0.132 +0.358,0.685,0.127 +0.365,0.688,0.121 +0.372,0.691,0.116 +0.380,0.694,0.111 +0.387,0.696,0.105 +0.395,0.699,0.100 +0.403,0.702,0.095 +0.411,0.705,0.090 +0.418,0.707,0.084 +0.426,0.710,0.079 +0.434,0.713,0.074 +0.442,0.716,0.069 +0.450,0.718,0.064 +0.458,0.721,0.058 +0.466,0.723,0.053 +0.475,0.726,0.048 +0.483,0.728,0.043 +0.491,0.731,0.038 +0.500,0.733,0.033 +0.508,0.736,0.029 +0.516,0.738,0.025 +0.525,0.741,0.022 +0.533,0.743,0.019 +0.542,0.746,0.016 +0.551,0.748,0.014 +0.559,0.750,0.013 +0.568,0.752,0.011 +0.577,0.755,0.010 +0.586,0.757,0.010 +0.594,0.759,0.010 +0.603,0.761,0.009 +0.611,0.764,0.009 +0.620,0.766,0.010 +0.628,0.768,0.010 +0.637,0.770,0.010 +0.645,0.773,0.011 +0.653,0.775,0.012 +0.662,0.777,0.013 +0.670,0.779,0.014 +0.678,0.781,0.015 +0.686,0.784,0.017 +0.694,0.786,0.019 +0.702,0.788,0.021 +0.709,0.790,0.023 +0.717,0.793,0.025 +0.725,0.795,0.028 +0.733,0.797,0.031 +0.740,0.800,0.034 +0.748,0.802,0.038 +0.755,0.804,0.042 +0.763,0.806,0.045 +0.770,0.809,0.049 +0.777,0.811,0.053 +0.784,0.813,0.057 +0.792,0.816,0.062 +0.799,0.818,0.066 +0.806,0.820,0.070 +0.813,0.823,0.075 +0.820,0.825,0.079 +0.826,0.828,0.084 +0.833,0.830,0.089 +0.840,0.833,0.093 +0.846,0.835,0.098 +0.853,0.837,0.103 +0.859,0.840,0.108 +0.865,0.843,0.113 +0.872,0.845,0.118 +0.878,0.848,0.124 +0.884,0.850,0.129 +0.890,0.853,0.135 +0.895,0.856,0.140 +0.901,0.858,0.146 +0.906,0.861,0.152 +0.912,0.864,0.158 +0.917,0.867,0.164 +0.922,0.870,0.171 +0.927,0.873,0.177 +0.932,0.876,0.184 +0.936,0.879,0.191 +0.940,0.882,0.198 +0.944,0.885,0.206 +0.948,0.888,0.213 +0.952,0.892,0.221 +0.955,0.895,0.230 +0.957,0.899,0.238 +0.960,0.903,0.248 +0.962,0.906,0.258 +0.964,0.910,0.269 +0.967,0.914,0.282 +0.969,0.917,0.296 +0.971,0.921,0.311 +0.974,0.924,0.327 +0.976,0.928,0.345 +0.979,0.931,0.363 +0.981,0.934,0.383 +0.984,0.937,0.404 +0.987,0.940,0.426 +0.989,0.943,0.450 +0.991,0.946,0.475 +0.994,0.949,0.501 +0.996,0.952,0.529 +0.997,0.955,0.558 +0.999,0.957,0.590 +1.000,0.960,0.623 +1.000,0.962,0.658 +1.000,0.965,0.695 +1.000,0.967,0.735 +0.998,0.969,0.777 +0.996,0.971,0.822 +0.991,0.973,0.870 +0.985,0.975,0.922 +0.977,0.977,0.977 diff --git a/pyqtgraph/colors/maps/CET-R1.csv b/pyqtgraph/colors/maps/CET-R1.csv new file mode 100644 index 00000000..d05c41d2 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-R1.csv @@ -0,0 +1,256 @@ +0.000,0.187,0.963 +0.000,0.202,0.949 +0.000,0.217,0.935 +0.000,0.231,0.921 +0.011,0.244,0.908 +0.036,0.257,0.894 +0.056,0.269,0.880 +0.069,0.281,0.867 +0.079,0.292,0.853 +0.087,0.302,0.840 +0.092,0.313,0.826 +0.096,0.323,0.813 +0.098,0.333,0.799 +0.100,0.342,0.786 +0.100,0.352,0.772 +0.099,0.361,0.759 +0.098,0.370,0.745 +0.097,0.378,0.732 +0.095,0.386,0.719 +0.093,0.395,0.706 +0.092,0.402,0.693 +0.092,0.410,0.680 +0.092,0.417,0.667 +0.093,0.425,0.654 +0.095,0.432,0.641 +0.099,0.438,0.629 +0.104,0.445,0.616 +0.110,0.451,0.604 +0.117,0.457,0.592 +0.125,0.463,0.580 +0.134,0.469,0.568 +0.142,0.474,0.556 +0.151,0.480,0.544 +0.160,0.485,0.532 +0.169,0.491,0.520 +0.177,0.496,0.509 +0.185,0.501,0.497 +0.193,0.506,0.485 +0.200,0.511,0.473 +0.206,0.516,0.462 +0.213,0.522,0.450 +0.218,0.527,0.438 +0.223,0.532,0.426 +0.228,0.537,0.414 +0.232,0.542,0.402 +0.236,0.547,0.390 +0.239,0.552,0.378 +0.242,0.557,0.365 +0.245,0.562,0.353 +0.247,0.567,0.340 +0.249,0.573,0.327 +0.250,0.578,0.314 +0.252,0.583,0.301 +0.253,0.588,0.288 +0.254,0.593,0.275 +0.255,0.598,0.262 +0.256,0.603,0.248 +0.257,0.608,0.235 +0.258,0.613,0.221 +0.260,0.618,0.208 +0.263,0.623,0.195 +0.266,0.627,0.182 +0.270,0.632,0.169 +0.274,0.636,0.156 +0.280,0.641,0.144 +0.286,0.645,0.133 +0.293,0.649,0.122 +0.302,0.653,0.112 +0.311,0.657,0.102 +0.320,0.660,0.094 +0.331,0.664,0.086 +0.341,0.667,0.080 +0.353,0.671,0.075 +0.364,0.674,0.070 +0.376,0.677,0.067 +0.388,0.680,0.065 +0.400,0.683,0.064 +0.412,0.686,0.064 +0.425,0.689,0.064 +0.437,0.692,0.064 +0.449,0.695,0.065 +0.461,0.698,0.067 +0.473,0.701,0.068 +0.485,0.703,0.070 +0.496,0.706,0.071 +0.508,0.709,0.073 +0.520,0.712,0.075 +0.531,0.715,0.077 +0.542,0.717,0.078 +0.554,0.720,0.080 +0.565,0.723,0.082 +0.576,0.725,0.084 +0.587,0.728,0.086 +0.598,0.731,0.087 +0.609,0.733,0.089 +0.620,0.736,0.091 +0.631,0.739,0.093 +0.642,0.741,0.095 +0.653,0.744,0.096 +0.664,0.746,0.098 +0.674,0.749,0.100 +0.685,0.751,0.102 +0.696,0.754,0.103 +0.707,0.757,0.105 +0.717,0.759,0.107 +0.728,0.762,0.109 +0.738,0.764,0.111 +0.749,0.766,0.112 +0.759,0.769,0.114 +0.770,0.771,0.116 +0.780,0.774,0.118 +0.791,0.776,0.120 +0.801,0.778,0.121 +0.812,0.781,0.123 +0.822,0.783,0.125 +0.832,0.785,0.127 +0.843,0.787,0.128 +0.853,0.789,0.130 +0.863,0.791,0.132 +0.873,0.793,0.133 +0.882,0.794,0.135 +0.892,0.795,0.136 +0.901,0.796,0.137 +0.910,0.797,0.139 +0.918,0.797,0.140 +0.926,0.797,0.141 +0.933,0.796,0.142 +0.940,0.795,0.142 +0.946,0.793,0.143 +0.952,0.791,0.143 +0.957,0.789,0.143 +0.962,0.786,0.143 +0.966,0.782,0.143 +0.969,0.779,0.142 +0.972,0.774,0.142 +0.974,0.770,0.141 +0.976,0.765,0.140 +0.977,0.760,0.139 +0.978,0.754,0.138 +0.979,0.749,0.137 +0.979,0.743,0.136 +0.980,0.737,0.135 +0.980,0.732,0.133 +0.980,0.726,0.132 +0.979,0.720,0.131 +0.979,0.714,0.130 +0.979,0.707,0.128 +0.979,0.701,0.127 +0.978,0.695,0.126 +0.978,0.689,0.124 +0.977,0.683,0.123 +0.977,0.677,0.122 +0.976,0.670,0.121 +0.976,0.664,0.119 +0.975,0.658,0.118 +0.975,0.652,0.117 +0.974,0.645,0.116 +0.974,0.639,0.114 +0.973,0.633,0.113 +0.973,0.627,0.112 +0.972,0.620,0.111 +0.971,0.614,0.110 +0.971,0.608,0.108 +0.970,0.601,0.107 +0.969,0.595,0.106 +0.969,0.588,0.105 +0.968,0.582,0.104 +0.967,0.575,0.103 +0.966,0.569,0.102 +0.966,0.563,0.100 +0.965,0.556,0.099 +0.964,0.549,0.098 +0.963,0.543,0.097 +0.962,0.536,0.096 +0.961,0.530,0.095 +0.961,0.523,0.094 +0.960,0.516,0.093 +0.959,0.510,0.092 +0.958,0.503,0.091 +0.957,0.496,0.090 +0.956,0.489,0.089 +0.955,0.482,0.088 +0.954,0.476,0.087 +0.953,0.469,0.086 +0.952,0.462,0.085 +0.951,0.455,0.084 +0.950,0.448,0.083 +0.949,0.440,0.083 +0.948,0.433,0.082 +0.947,0.426,0.082 +0.946,0.419,0.082 +0.945,0.412,0.082 +0.944,0.405,0.083 +0.943,0.398,0.084 +0.942,0.391,0.086 +0.941,0.384,0.088 +0.941,0.378,0.091 +0.940,0.371,0.095 +0.940,0.365,0.100 +0.940,0.360,0.106 +0.940,0.355,0.113 +0.940,0.350,0.121 +0.941,0.346,0.130 +0.942,0.343,0.139 +0.943,0.340,0.150 +0.944,0.338,0.161 +0.946,0.337,0.173 +0.948,0.337,0.186 +0.950,0.338,0.199 +0.952,0.339,0.213 +0.954,0.341,0.227 +0.957,0.343,0.242 +0.959,0.346,0.257 +0.962,0.350,0.272 +0.965,0.354,0.288 +0.967,0.358,0.304 +0.970,0.362,0.320 +0.973,0.367,0.336 +0.975,0.372,0.352 +0.978,0.377,0.368 +0.980,0.382,0.385 +0.983,0.387,0.401 +0.985,0.392,0.418 +0.987,0.397,0.434 +0.990,0.403,0.451 +0.992,0.408,0.467 +0.993,0.413,0.484 +0.995,0.418,0.500 +0.997,0.424,0.517 +0.999,0.429,0.533 +1.000,0.434,0.550 +1.000,0.440,0.567 +1.000,0.445,0.583 +1.000,0.451,0.600 +1.000,0.456,0.617 +1.000,0.461,0.634 +1.000,0.467,0.651 +1.000,0.472,0.668 +1.000,0.478,0.685 +1.000,0.483,0.702 +1.000,0.488,0.719 +1.000,0.494,0.736 +1.000,0.499,0.753 +1.000,0.505,0.770 +1.000,0.510,0.787 +1.000,0.516,0.805 +1.000,0.521,0.822 +1.000,0.527,0.840 +1.000,0.532,0.857 +1.000,0.538,0.874 +1.000,0.544,0.892 +1.000,0.549,0.910 +0.998,0.555,0.927 +0.997,0.560,0.945 +0.995,0.566,0.963 +0.992,0.572,0.980 diff --git a/pyqtgraph/colors/maps/CET-R2.csv b/pyqtgraph/colors/maps/CET-R2.csv new file mode 100644 index 00000000..bc36cd8a --- /dev/null +++ b/pyqtgraph/colors/maps/CET-R2.csv @@ -0,0 +1,256 @@ +0.000,0.204,0.963 +0.000,0.215,0.951 +0.000,0.226,0.940 +0.000,0.237,0.929 +0.000,0.247,0.918 +0.000,0.256,0.907 +0.000,0.266,0.896 +0.000,0.275,0.885 +0.000,0.283,0.874 +0.000,0.292,0.863 +0.000,0.300,0.852 +0.000,0.309,0.841 +0.000,0.317,0.830 +0.000,0.325,0.819 +0.000,0.332,0.808 +0.000,0.340,0.797 +0.000,0.347,0.786 +0.000,0.355,0.775 +0.000,0.362,0.765 +0.000,0.369,0.754 +0.000,0.376,0.743 +0.000,0.383,0.732 +0.000,0.390,0.721 +0.000,0.396,0.710 +0.000,0.403,0.699 +0.000,0.409,0.689 +0.000,0.416,0.678 +0.000,0.422,0.667 +0.000,0.428,0.657 +0.000,0.433,0.646 +0.000,0.439,0.636 +0.000,0.444,0.626 +0.000,0.449,0.616 +0.000,0.454,0.606 +0.000,0.459,0.596 +0.004,0.464,0.586 +0.030,0.468,0.577 +0.056,0.472,0.567 +0.077,0.477,0.558 +0.095,0.481,0.548 +0.111,0.485,0.539 +0.125,0.489,0.530 +0.138,0.493,0.520 +0.149,0.497,0.511 +0.160,0.501,0.502 +0.169,0.505,0.492 +0.177,0.508,0.483 +0.185,0.512,0.474 +0.192,0.516,0.464 +0.199,0.520,0.455 +0.204,0.524,0.445 +0.210,0.529,0.436 +0.215,0.533,0.426 +0.219,0.537,0.417 +0.223,0.541,0.407 +0.227,0.545,0.397 +0.230,0.549,0.387 +0.233,0.553,0.377 +0.236,0.557,0.367 +0.238,0.561,0.357 +0.240,0.565,0.347 +0.242,0.569,0.336 +0.243,0.574,0.326 +0.245,0.578,0.315 +0.246,0.582,0.304 +0.246,0.586,0.293 +0.247,0.590,0.282 +0.247,0.594,0.271 +0.247,0.599,0.259 +0.247,0.603,0.247 +0.247,0.607,0.235 +0.246,0.611,0.222 +0.246,0.615,0.209 +0.246,0.619,0.196 +0.246,0.623,0.183 +0.246,0.627,0.170 +0.247,0.631,0.156 +0.249,0.635,0.143 +0.252,0.639,0.130 +0.256,0.642,0.117 +0.261,0.646,0.106 +0.267,0.649,0.095 +0.274,0.652,0.085 +0.282,0.655,0.076 +0.291,0.658,0.070 +0.300,0.661,0.065 +0.311,0.664,0.061 +0.321,0.666,0.059 +0.332,0.669,0.058 +0.343,0.671,0.058 +0.354,0.674,0.058 +0.364,0.676,0.060 +0.375,0.679,0.061 +0.386,0.681,0.063 +0.396,0.683,0.065 +0.407,0.686,0.067 +0.417,0.688,0.069 +0.427,0.690,0.071 +0.437,0.693,0.072 +0.447,0.695,0.074 +0.457,0.697,0.076 +0.467,0.700,0.078 +0.476,0.702,0.080 +0.486,0.704,0.082 +0.495,0.706,0.084 +0.505,0.709,0.086 +0.514,0.711,0.088 +0.523,0.713,0.089 +0.533,0.715,0.091 +0.542,0.717,0.093 +0.551,0.720,0.095 +0.560,0.722,0.097 +0.569,0.724,0.098 +0.578,0.726,0.100 +0.587,0.728,0.102 +0.596,0.730,0.104 +0.605,0.733,0.106 +0.614,0.735,0.107 +0.622,0.737,0.109 +0.631,0.739,0.111 +0.640,0.741,0.113 +0.649,0.743,0.115 +0.657,0.745,0.116 +0.666,0.747,0.118 +0.675,0.749,0.120 +0.683,0.751,0.122 +0.692,0.753,0.123 +0.701,0.756,0.125 +0.709,0.758,0.127 +0.718,0.760,0.129 +0.726,0.762,0.130 +0.735,0.764,0.132 +0.743,0.766,0.134 +0.752,0.768,0.136 +0.760,0.770,0.137 +0.769,0.772,0.139 +0.777,0.773,0.141 +0.786,0.775,0.143 +0.794,0.777,0.144 +0.803,0.779,0.146 +0.811,0.781,0.148 +0.819,0.783,0.150 +0.828,0.785,0.151 +0.836,0.787,0.153 +0.845,0.789,0.155 +0.853,0.791,0.157 +0.861,0.793,0.158 +0.870,0.794,0.160 +0.878,0.796,0.162 +0.886,0.798,0.163 +0.895,0.800,0.165 +0.903,0.801,0.167 +0.911,0.802,0.168 +0.919,0.804,0.170 +0.927,0.805,0.171 +0.935,0.805,0.172 +0.942,0.805,0.173 +0.949,0.805,0.174 +0.955,0.804,0.174 +0.961,0.803,0.174 +0.966,0.801,0.174 +0.971,0.798,0.173 +0.975,0.795,0.172 +0.978,0.792,0.171 +0.981,0.788,0.170 +0.983,0.784,0.168 +0.985,0.779,0.167 +0.987,0.775,0.165 +0.988,0.770,0.163 +0.989,0.764,0.161 +0.990,0.759,0.158 +0.991,0.754,0.156 +0.991,0.749,0.154 +0.992,0.744,0.152 +0.993,0.738,0.150 +0.993,0.733,0.148 +0.994,0.728,0.145 +0.995,0.722,0.143 +0.995,0.717,0.141 +0.996,0.712,0.139 +0.996,0.706,0.137 +0.997,0.701,0.134 +0.997,0.695,0.132 +0.998,0.690,0.130 +0.998,0.684,0.128 +0.998,0.679,0.126 +0.999,0.674,0.123 +0.999,0.668,0.121 +1.000,0.663,0.119 +1.000,0.657,0.117 +1.000,0.652,0.115 +1.000,0.646,0.112 +1.000,0.641,0.110 +1.000,0.635,0.108 +1.000,0.629,0.106 +1.000,0.624,0.104 +1.000,0.618,0.101 +1.000,0.613,0.099 +1.000,0.607,0.097 +1.000,0.601,0.095 +1.000,0.596,0.092 +1.000,0.590,0.090 +1.000,0.584,0.088 +1.000,0.578,0.086 +1.000,0.573,0.084 +1.000,0.567,0.081 +1.000,0.561,0.079 +1.000,0.555,0.077 +1.000,0.549,0.075 +1.000,0.543,0.072 +1.000,0.537,0.070 +1.000,0.531,0.068 +1.000,0.525,0.065 +1.000,0.519,0.063 +1.000,0.513,0.061 +1.000,0.507,0.059 +1.000,0.501,0.056 +1.000,0.495,0.054 +1.000,0.489,0.051 +1.000,0.482,0.049 +1.000,0.476,0.047 +1.000,0.470,0.044 +1.000,0.463,0.042 +1.000,0.457,0.040 +1.000,0.450,0.037 +1.000,0.444,0.035 +1.000,0.437,0.032 +1.000,0.430,0.030 +1.000,0.424,0.028 +1.000,0.417,0.026 +1.000,0.410,0.024 +1.000,0.403,0.022 +1.000,0.396,0.020 +1.000,0.389,0.019 +1.000,0.382,0.017 +1.000,0.374,0.015 +0.999,0.367,0.013 +0.999,0.359,0.012 +0.999,0.352,0.010 +0.998,0.344,0.009 +0.998,0.336,0.007 +0.997,0.328,0.006 +0.997,0.320,0.005 +0.997,0.311,0.004 +0.996,0.303,0.002 +0.996,0.294,0.001 +0.995,0.285,0.000 +0.995,0.276,0.000 +0.994,0.266,0.000 +0.994,0.257,0.000 +0.993,0.247,0.000 +0.993,0.236,0.000 +0.992,0.225,0.000 +0.992,0.214,0.000 +0.991,0.202,0.000 +0.990,0.189,0.000 diff --git a/pyqtgraph/colors/maps/CET-R3.csv b/pyqtgraph/colors/maps/CET-R3.csv new file mode 100644 index 00000000..e45d5731 --- /dev/null +++ b/pyqtgraph/colors/maps/CET-R3.csv @@ -0,0 +1,256 @@ +0.032,0.362,0.973 +0.058,0.371,0.958 +0.076,0.380,0.943 +0.089,0.389,0.928 +0.098,0.397,0.914 +0.105,0.406,0.899 +0.110,0.414,0.884 +0.114,0.422,0.869 +0.116,0.430,0.854 +0.116,0.438,0.839 +0.115,0.445,0.824 +0.113,0.453,0.809 +0.109,0.461,0.794 +0.105,0.468,0.780 +0.099,0.475,0.765 +0.093,0.482,0.750 +0.086,0.489,0.735 +0.080,0.496,0.720 +0.075,0.503,0.705 +0.071,0.509,0.689 +0.071,0.515,0.674 +0.074,0.521,0.658 +0.080,0.527,0.643 +0.089,0.532,0.627 +0.100,0.538,0.611 +0.113,0.543,0.594 +0.126,0.548,0.578 +0.139,0.553,0.561 +0.152,0.557,0.544 +0.164,0.562,0.527 +0.175,0.566,0.510 +0.185,0.571,0.493 +0.194,0.575,0.475 +0.202,0.580,0.458 +0.209,0.584,0.440 +0.215,0.589,0.422 +0.220,0.593,0.404 +0.224,0.598,0.386 +0.227,0.602,0.368 +0.230,0.607,0.349 +0.232,0.611,0.331 +0.233,0.616,0.312 +0.234,0.620,0.294 +0.236,0.624,0.276 +0.237,0.629,0.258 +0.239,0.633,0.240 +0.241,0.637,0.223 +0.244,0.641,0.207 +0.249,0.644,0.193 +0.254,0.648,0.179 +0.261,0.651,0.167 +0.268,0.655,0.156 +0.277,0.658,0.147 +0.286,0.661,0.140 +0.297,0.663,0.134 +0.307,0.666,0.130 +0.318,0.669,0.126 +0.329,0.671,0.124 +0.340,0.674,0.122 +0.351,0.676,0.120 +0.362,0.678,0.119 +0.373,0.681,0.118 +0.384,0.683,0.117 +0.394,0.686,0.116 +0.405,0.688,0.116 +0.415,0.690,0.115 +0.425,0.693,0.114 +0.435,0.695,0.113 +0.445,0.697,0.113 +0.455,0.699,0.112 +0.465,0.702,0.111 +0.474,0.704,0.110 +0.484,0.706,0.110 +0.493,0.709,0.109 +0.503,0.711,0.108 +0.512,0.713,0.107 +0.521,0.715,0.106 +0.531,0.718,0.105 +0.540,0.720,0.104 +0.549,0.722,0.103 +0.558,0.724,0.103 +0.567,0.726,0.102 +0.576,0.729,0.101 +0.585,0.731,0.100 +0.594,0.733,0.099 +0.603,0.735,0.098 +0.611,0.737,0.097 +0.620,0.739,0.096 +0.629,0.742,0.095 +0.638,0.744,0.094 +0.646,0.746,0.092 +0.655,0.748,0.091 +0.663,0.750,0.090 +0.672,0.752,0.089 +0.681,0.754,0.088 +0.689,0.756,0.087 +0.698,0.758,0.085 +0.706,0.760,0.084 +0.715,0.762,0.083 +0.723,0.765,0.082 +0.732,0.767,0.080 +0.740,0.769,0.079 +0.748,0.771,0.078 +0.757,0.773,0.076 +0.765,0.775,0.075 +0.774,0.777,0.073 +0.782,0.779,0.072 +0.790,0.781,0.070 +0.799,0.783,0.069 +0.807,0.785,0.067 +0.815,0.786,0.065 +0.824,0.788,0.064 +0.832,0.790,0.062 +0.840,0.792,0.060 +0.849,0.794,0.058 +0.857,0.796,0.057 +0.865,0.798,0.055 +0.874,0.800,0.054 +0.882,0.801,0.054 +0.890,0.803,0.054 +0.898,0.804,0.056 +0.907,0.805,0.058 +0.915,0.806,0.063 +0.923,0.806,0.069 +0.930,0.806,0.077 +0.938,0.806,0.087 +0.945,0.805,0.098 +0.951,0.803,0.110 +0.957,0.801,0.123 +0.963,0.798,0.136 +0.968,0.794,0.149 +0.972,0.790,0.162 +0.975,0.786,0.175 +0.978,0.781,0.188 +0.980,0.776,0.200 +0.982,0.771,0.212 +0.984,0.765,0.224 +0.985,0.760,0.235 +0.986,0.754,0.245 +0.987,0.749,0.255 +0.988,0.743,0.265 +0.989,0.738,0.275 +0.990,0.732,0.284 +0.991,0.726,0.293 +0.991,0.720,0.302 +0.992,0.715,0.310 +0.993,0.709,0.319 +0.993,0.703,0.327 +0.994,0.697,0.335 +0.994,0.692,0.343 +0.995,0.686,0.351 +0.995,0.680,0.358 +0.996,0.674,0.366 +0.996,0.668,0.373 +0.996,0.663,0.380 +0.997,0.657,0.387 +0.997,0.651,0.394 +0.997,0.645,0.401 +0.998,0.639,0.408 +0.998,0.633,0.415 +0.998,0.627,0.422 +0.998,0.621,0.428 +0.998,0.615,0.435 +0.998,0.609,0.441 +0.999,0.603,0.448 +0.999,0.596,0.454 +0.999,0.590,0.461 +0.999,0.584,0.467 +0.999,0.578,0.473 +0.998,0.572,0.479 +0.998,0.565,0.486 +0.998,0.559,0.492 +0.998,0.553,0.498 +0.998,0.546,0.504 +0.998,0.540,0.510 +0.997,0.533,0.516 +0.997,0.527,0.522 +0.997,0.520,0.528 +0.997,0.514,0.533 +0.996,0.507,0.539 +0.996,0.500,0.545 +0.995,0.494,0.551 +0.995,0.487,0.557 +0.995,0.480,0.562 +0.994,0.473,0.568 +0.993,0.466,0.574 +0.993,0.459,0.579 +0.992,0.452,0.585 +0.992,0.445,0.591 +0.991,0.437,0.596 +0.990,0.430,0.602 +0.990,0.423,0.608 +0.989,0.415,0.613 +0.988,0.407,0.619 +0.987,0.400,0.624 +0.986,0.392,0.629 +0.986,0.384,0.635 +0.985,0.376,0.640 +0.984,0.368,0.644 +0.983,0.360,0.649 +0.982,0.352,0.653 +0.981,0.344,0.656 +0.980,0.336,0.658 +0.979,0.328,0.660 +0.978,0.320,0.660 +0.976,0.312,0.659 +0.975,0.305,0.656 +0.974,0.298,0.652 +0.973,0.291,0.646 +0.972,0.285,0.639 +0.970,0.279,0.631 +0.969,0.273,0.621 +0.968,0.268,0.610 +0.966,0.262,0.599 +0.965,0.257,0.587 +0.963,0.252,0.574 +0.961,0.248,0.562 +0.959,0.243,0.548 +0.958,0.238,0.535 +0.956,0.233,0.522 +0.954,0.229,0.509 +0.951,0.224,0.495 +0.949,0.219,0.482 +0.947,0.215,0.469 +0.945,0.210,0.456 +0.942,0.205,0.442 +0.940,0.200,0.429 +0.937,0.196,0.416 +0.935,0.191,0.403 +0.932,0.186,0.390 +0.929,0.181,0.377 +0.926,0.176,0.364 +0.923,0.171,0.351 +0.921,0.166,0.338 +0.918,0.161,0.325 +0.915,0.156,0.311 +0.911,0.151,0.298 +0.908,0.146,0.285 +0.905,0.140,0.272 +0.902,0.135,0.259 +0.898,0.129,0.246 +0.895,0.124,0.233 +0.892,0.118,0.220 +0.888,0.112,0.206 +0.885,0.106,0.193 +0.881,0.100,0.179 +0.877,0.094,0.165 +0.874,0.087,0.151 +0.870,0.080,0.136 +0.866,0.073,0.121 +0.862,0.065,0.105 +0.859,0.057,0.088 +0.855,0.048,0.070 +0.851,0.038,0.049 +0.847,0.028,0.024 +0.843,0.018,0.002 diff --git a/pyqtgraph/colors/maps/CET-R4.csv b/pyqtgraph/colors/maps/CET-R4.csv new file mode 100644 index 00000000..f6ecfd4e --- /dev/null +++ b/pyqtgraph/colors/maps/CET-R4.csv @@ -0,0 +1,256 @@ +0.015,0.002,0.425 +0.015,0.002,0.437 +0.016,0.002,0.448 +0.016,0.002,0.460 +0.016,0.002,0.472 +0.017,0.002,0.483 +0.017,0.001,0.495 +0.017,0.001,0.507 +0.017,0.001,0.519 +0.018,0.001,0.531 +0.018,0.001,0.543 +0.018,0.001,0.555 +0.018,0.001,0.567 +0.019,0.001,0.579 +0.019,0.002,0.590 +0.020,0.002,0.602 +0.020,0.003,0.614 +0.021,0.005,0.625 +0.021,0.007,0.636 +0.022,0.010,0.647 +0.023,0.013,0.657 +0.024,0.017,0.667 +0.025,0.023,0.676 +0.027,0.029,0.685 +0.028,0.036,0.694 +0.030,0.044,0.703 +0.032,0.051,0.711 +0.034,0.059,0.719 +0.036,0.067,0.727 +0.038,0.074,0.735 +0.040,0.081,0.742 +0.042,0.088,0.750 +0.044,0.095,0.757 +0.045,0.102,0.765 +0.047,0.108,0.773 +0.049,0.115,0.780 +0.050,0.121,0.788 +0.052,0.127,0.795 +0.053,0.133,0.803 +0.055,0.139,0.810 +0.056,0.146,0.818 +0.057,0.151,0.825 +0.059,0.157,0.833 +0.060,0.163,0.841 +0.061,0.169,0.848 +0.062,0.174,0.856 +0.063,0.180,0.863 +0.064,0.186,0.871 +0.065,0.191,0.879 +0.066,0.197,0.886 +0.067,0.203,0.894 +0.068,0.208,0.901 +0.069,0.214,0.909 +0.071,0.220,0.916 +0.072,0.226,0.922 +0.074,0.232,0.928 +0.077,0.239,0.933 +0.080,0.246,0.937 +0.084,0.254,0.940 +0.089,0.262,0.941 +0.094,0.271,0.941 +0.099,0.280,0.939 +0.104,0.290,0.934 +0.110,0.301,0.928 +0.114,0.312,0.920 +0.119,0.324,0.910 +0.122,0.335,0.898 +0.123,0.347,0.885 +0.124,0.359,0.871 +0.123,0.371,0.856 +0.120,0.383,0.841 +0.115,0.395,0.824 +0.109,0.406,0.808 +0.101,0.418,0.791 +0.091,0.429,0.774 +0.079,0.439,0.756 +0.066,0.450,0.739 +0.051,0.460,0.721 +0.037,0.470,0.703 +0.026,0.479,0.684 +0.021,0.488,0.665 +0.022,0.497,0.646 +0.030,0.506,0.627 +0.045,0.514,0.607 +0.063,0.522,0.586 +0.081,0.529,0.565 +0.099,0.537,0.544 +0.115,0.544,0.522 +0.129,0.551,0.500 +0.142,0.558,0.478 +0.153,0.565,0.455 +0.163,0.572,0.432 +0.171,0.579,0.408 +0.177,0.586,0.385 +0.181,0.593,0.361 +0.184,0.600,0.337 +0.187,0.607,0.313 +0.188,0.613,0.289 +0.189,0.620,0.265 +0.191,0.626,0.242 +0.193,0.633,0.219 +0.195,0.639,0.196 +0.200,0.645,0.174 +0.206,0.651,0.153 +0.214,0.656,0.133 +0.224,0.662,0.115 +0.235,0.667,0.098 +0.248,0.672,0.082 +0.262,0.677,0.069 +0.276,0.681,0.057 +0.291,0.686,0.047 +0.306,0.690,0.039 +0.321,0.694,0.033 +0.337,0.699,0.029 +0.351,0.703,0.027 +0.366,0.707,0.025 +0.381,0.711,0.024 +0.395,0.715,0.023 +0.409,0.719,0.023 +0.423,0.724,0.022 +0.437,0.728,0.021 +0.450,0.732,0.021 +0.464,0.736,0.020 +0.477,0.740,0.020 +0.490,0.744,0.020 +0.503,0.748,0.019 +0.515,0.752,0.019 +0.528,0.756,0.018 +0.541,0.760,0.018 +0.553,0.764,0.017 +0.566,0.768,0.017 +0.578,0.772,0.016 +0.590,0.776,0.016 +0.602,0.780,0.015 +0.615,0.784,0.015 +0.627,0.788,0.014 +0.639,0.792,0.014 +0.651,0.795,0.013 +0.663,0.799,0.013 +0.674,0.803,0.012 +0.686,0.807,0.012 +0.698,0.811,0.012 +0.710,0.815,0.011 +0.722,0.819,0.011 +0.733,0.823,0.010 +0.745,0.826,0.010 +0.757,0.830,0.009 +0.769,0.834,0.009 +0.780,0.838,0.008 +0.792,0.842,0.008 +0.803,0.845,0.008 +0.815,0.849,0.007 +0.827,0.853,0.007 +0.838,0.856,0.007 +0.850,0.860,0.006 +0.861,0.863,0.006 +0.873,0.866,0.006 +0.884,0.869,0.006 +0.895,0.871,0.006 +0.906,0.873,0.007 +0.916,0.874,0.007 +0.926,0.874,0.008 +0.935,0.873,0.010 +0.943,0.872,0.011 +0.950,0.869,0.013 +0.957,0.866,0.015 +0.962,0.862,0.018 +0.967,0.857,0.020 +0.971,0.851,0.023 +0.974,0.845,0.026 +0.977,0.838,0.029 +0.979,0.831,0.032 +0.980,0.824,0.035 +0.981,0.816,0.038 +0.982,0.809,0.041 +0.983,0.801,0.044 +0.984,0.793,0.047 +0.984,0.785,0.049 +0.985,0.777,0.052 +0.985,0.769,0.054 +0.985,0.761,0.056 +0.986,0.753,0.058 +0.986,0.745,0.060 +0.986,0.737,0.062 +0.986,0.729,0.064 +0.987,0.721,0.066 +0.987,0.713,0.068 +0.987,0.705,0.069 +0.987,0.697,0.071 +0.987,0.689,0.073 +0.987,0.681,0.074 +0.987,0.673,0.075 +0.987,0.664,0.077 +0.987,0.656,0.078 +0.987,0.648,0.079 +0.987,0.640,0.081 +0.987,0.631,0.082 +0.987,0.623,0.083 +0.987,0.614,0.083 +0.987,0.606,0.084 +0.987,0.597,0.084 +0.987,0.588,0.085 +0.987,0.580,0.085 +0.987,0.571,0.084 +0.987,0.561,0.084 +0.988,0.552,0.083 +0.988,0.543,0.082 +0.989,0.533,0.081 +0.990,0.524,0.080 +0.990,0.514,0.079 +0.991,0.504,0.077 +0.992,0.494,0.076 +0.992,0.483,0.074 +0.993,0.473,0.073 +0.994,0.462,0.071 +0.994,0.452,0.070 +0.995,0.441,0.068 +0.995,0.430,0.067 +0.996,0.418,0.065 +0.996,0.407,0.064 +0.997,0.395,0.063 +0.997,0.383,0.061 +0.997,0.371,0.060 +0.998,0.358,0.059 +0.998,0.345,0.058 +0.998,0.332,0.057 +0.998,0.319,0.056 +0.998,0.305,0.055 +0.997,0.291,0.054 +0.996,0.277,0.053 +0.995,0.262,0.053 +0.993,0.248,0.052 +0.991,0.234,0.052 +0.989,0.221,0.051 +0.985,0.207,0.051 +0.981,0.195,0.051 +0.977,0.183,0.051 +0.972,0.172,0.051 +0.966,0.161,0.051 +0.960,0.152,0.051 +0.953,0.143,0.051 +0.947,0.135,0.051 +0.939,0.127,0.051 +0.932,0.120,0.051 +0.925,0.113,0.051 +0.917,0.106,0.052 +0.910,0.099,0.052 +0.902,0.092,0.052 +0.895,0.085,0.052 +0.887,0.077,0.052 +0.880,0.069,0.052 +0.872,0.061,0.052 +0.864,0.052,0.052 +0.857,0.042,0.052 +0.849,0.031,0.052 +0.842,0.020,0.052