_cm.py 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434
  1. """
  2. Nothing here but dictionaries for generating LinearSegmentedColormaps,
  3. and a dictionary of these dictionaries.
  4. Documentation for each is in pyplot.colormaps(). Please update this
  5. with the purpose and type of your colormap if you add data for one here.
  6. """
  7. from functools import partial
  8. import numpy as np
  9. _binary_data = {
  10. 'red': ((0., 1., 1.), (1., 0., 0.)),
  11. 'green': ((0., 1., 1.), (1., 0., 0.)),
  12. 'blue': ((0., 1., 1.), (1., 0., 0.))
  13. }
  14. _autumn_data = {'red': ((0., 1.0, 1.0), (1.0, 1.0, 1.0)),
  15. 'green': ((0., 0., 0.), (1.0, 1.0, 1.0)),
  16. 'blue': ((0., 0., 0.), (1.0, 0., 0.))}
  17. _bone_data = {'red': ((0., 0., 0.),
  18. (0.746032, 0.652778, 0.652778),
  19. (1.0, 1.0, 1.0)),
  20. 'green': ((0., 0., 0.),
  21. (0.365079, 0.319444, 0.319444),
  22. (0.746032, 0.777778, 0.777778),
  23. (1.0, 1.0, 1.0)),
  24. 'blue': ((0., 0., 0.),
  25. (0.365079, 0.444444, 0.444444),
  26. (1.0, 1.0, 1.0))}
  27. _cool_data = {'red': ((0., 0., 0.), (1.0, 1.0, 1.0)),
  28. 'green': ((0., 1., 1.), (1.0, 0., 0.)),
  29. 'blue': ((0., 1., 1.), (1.0, 1., 1.))}
  30. _copper_data = {'red': ((0., 0., 0.),
  31. (0.809524, 1.000000, 1.000000),
  32. (1.0, 1.0, 1.0)),
  33. 'green': ((0., 0., 0.),
  34. (1.0, 0.7812, 0.7812)),
  35. 'blue': ((0., 0., 0.),
  36. (1.0, 0.4975, 0.4975))}
  37. def _flag_red(x): return 0.75 * np.sin((x * 31.5 + 0.25) * np.pi) + 0.5
  38. def _flag_green(x): return np.sin(x * 31.5 * np.pi)
  39. def _flag_blue(x): return 0.75 * np.sin((x * 31.5 - 0.25) * np.pi) + 0.5
  40. _flag_data = {'red': _flag_red, 'green': _flag_green, 'blue': _flag_blue}
  41. def _prism_red(x): return 0.75 * np.sin((x * 20.9 + 0.25) * np.pi) + 0.67
  42. def _prism_green(x): return 0.75 * np.sin((x * 20.9 - 0.25) * np.pi) + 0.33
  43. def _prism_blue(x): return -1.1 * np.sin((x * 20.9) * np.pi)
  44. _prism_data = {'red': _prism_red, 'green': _prism_green, 'blue': _prism_blue}
  45. def _ch_helper(gamma, s, r, h, p0, p1, x):
  46. """Helper function for generating picklable cubehelix color maps."""
  47. # Apply gamma factor to emphasise low or high intensity values
  48. xg = x ** gamma
  49. # Calculate amplitude and angle of deviation from the black to white
  50. # diagonal in the plane of constant perceived intensity.
  51. a = h * xg * (1 - xg) / 2
  52. phi = 2 * np.pi * (s / 3 + r * x)
  53. return xg + a * (p0 * np.cos(phi) + p1 * np.sin(phi))
  54. def cubehelix(gamma=1.0, s=0.5, r=-1.5, h=1.0):
  55. """
  56. Return custom data dictionary of (r, g, b) conversion functions, which can
  57. be used with :func:`register_cmap`, for the cubehelix color scheme.
  58. Unlike most other color schemes cubehelix was designed by D.A. Green to
  59. be monotonically increasing in terms of perceived brightness.
  60. Also, when printed on a black and white postscript printer, the scheme
  61. results in a greyscale with monotonically increasing brightness.
  62. This color scheme is named cubehelix because the (r, g, b) values produced
  63. can be visualised as a squashed helix around the diagonal in the
  64. (r, g, b) color cube.
  65. For a unit color cube (i.e. 3-D coordinates for (r, g, b) each in the
  66. range 0 to 1) the color scheme starts at (r, g, b) = (0, 0, 0), i.e. black,
  67. and finishes at (r, g, b) = (1, 1, 1), i.e. white. For some fraction *x*,
  68. between 0 and 1, the color is the corresponding grey value at that
  69. fraction along the black to white diagonal (x, x, x) plus a color
  70. element. This color element is calculated in a plane of constant
  71. perceived intensity and controlled by the following parameters.
  72. Parameters
  73. ----------
  74. gamma : float, default: 1
  75. Gamma factor emphasizing either low intensity values (gamma < 1), or
  76. high intensity values (gamma > 1).
  77. s : float, default: 0.5 (purple)
  78. The starting color.
  79. r : float, default: -1.5
  80. The number of r, g, b rotations in color that are made from the start
  81. to the end of the color scheme. The default of -1.5 corresponds to ->
  82. B -> G -> R -> B.
  83. h : float, default: 1
  84. The hue, i.e. how saturated the colors are. If this parameter is zero
  85. then the color scheme is purely a greyscale.
  86. """
  87. return {'red': partial(_ch_helper, gamma, s, r, h, -0.14861, 1.78277),
  88. 'green': partial(_ch_helper, gamma, s, r, h, -0.29227, -0.90649),
  89. 'blue': partial(_ch_helper, gamma, s, r, h, 1.97294, 0.0)}
  90. _cubehelix_data = cubehelix()
  91. _bwr_data = ((0.0, 0.0, 1.0), (1.0, 1.0, 1.0), (1.0, 0.0, 0.0))
  92. _brg_data = ((0.0, 0.0, 1.0), (1.0, 0.0, 0.0), (0.0, 1.0, 0.0))
  93. # Gnuplot palette functions
  94. def _g0(x): return 0
  95. def _g1(x): return 0.5
  96. def _g2(x): return 1
  97. def _g3(x): return x
  98. def _g4(x): return x ** 2
  99. def _g5(x): return x ** 3
  100. def _g6(x): return x ** 4
  101. def _g7(x): return np.sqrt(x)
  102. def _g8(x): return np.sqrt(np.sqrt(x))
  103. def _g9(x): return np.sin(x * np.pi / 2)
  104. def _g10(x): return np.cos(x * np.pi / 2)
  105. def _g11(x): return np.abs(x - 0.5)
  106. def _g12(x): return (2 * x - 1) ** 2
  107. def _g13(x): return np.sin(x * np.pi)
  108. def _g14(x): return np.abs(np.cos(x * np.pi))
  109. def _g15(x): return np.sin(x * 2 * np.pi)
  110. def _g16(x): return np.cos(x * 2 * np.pi)
  111. def _g17(x): return np.abs(np.sin(x * 2 * np.pi))
  112. def _g18(x): return np.abs(np.cos(x * 2 * np.pi))
  113. def _g19(x): return np.abs(np.sin(x * 4 * np.pi))
  114. def _g20(x): return np.abs(np.cos(x * 4 * np.pi))
  115. def _g21(x): return 3 * x
  116. def _g22(x): return 3 * x - 1
  117. def _g23(x): return 3 * x - 2
  118. def _g24(x): return np.abs(3 * x - 1)
  119. def _g25(x): return np.abs(3 * x - 2)
  120. def _g26(x): return (3 * x - 1) / 2
  121. def _g27(x): return (3 * x - 2) / 2
  122. def _g28(x): return np.abs((3 * x - 1) / 2)
  123. def _g29(x): return np.abs((3 * x - 2) / 2)
  124. def _g30(x): return x / 0.32 - 0.78125
  125. def _g31(x): return 2 * x - 0.84
  126. def _g32(x):
  127. ret = np.zeros(len(x))
  128. m = (x < 0.25)
  129. ret[m] = 4 * x[m]
  130. m = (x >= 0.25) & (x < 0.92)
  131. ret[m] = -2 * x[m] + 1.84
  132. m = (x >= 0.92)
  133. ret[m] = x[m] / 0.08 - 11.5
  134. return ret
  135. def _g33(x): return np.abs(2 * x - 0.5)
  136. def _g34(x): return 2 * x
  137. def _g35(x): return 2 * x - 0.5
  138. def _g36(x): return 2 * x - 1
  139. gfunc = {i: globals()["_g{}".format(i)] for i in range(37)}
  140. _gnuplot_data = {
  141. 'red': gfunc[7],
  142. 'green': gfunc[5],
  143. 'blue': gfunc[15],
  144. }
  145. _gnuplot2_data = {
  146. 'red': gfunc[30],
  147. 'green': gfunc[31],
  148. 'blue': gfunc[32],
  149. }
  150. _ocean_data = {
  151. 'red': gfunc[23],
  152. 'green': gfunc[28],
  153. 'blue': gfunc[3],
  154. }
  155. _afmhot_data = {
  156. 'red': gfunc[34],
  157. 'green': gfunc[35],
  158. 'blue': gfunc[36],
  159. }
  160. _rainbow_data = {
  161. 'red': gfunc[33],
  162. 'green': gfunc[13],
  163. 'blue': gfunc[10],
  164. }
  165. _seismic_data = (
  166. (0.0, 0.0, 0.3), (0.0, 0.0, 1.0),
  167. (1.0, 1.0, 1.0), (1.0, 0.0, 0.0),
  168. (0.5, 0.0, 0.0))
  169. _terrain_data = (
  170. (0.00, (0.2, 0.2, 0.6)),
  171. (0.15, (0.0, 0.6, 1.0)),
  172. (0.25, (0.0, 0.8, 0.4)),
  173. (0.50, (1.0, 1.0, 0.6)),
  174. (0.75, (0.5, 0.36, 0.33)),
  175. (1.00, (1.0, 1.0, 1.0)))
  176. _gray_data = {'red': ((0., 0, 0), (1., 1, 1)),
  177. 'green': ((0., 0, 0), (1., 1, 1)),
  178. 'blue': ((0., 0, 0), (1., 1, 1))}
  179. _hot_data = {'red': ((0., 0.0416, 0.0416),
  180. (0.365079, 1.000000, 1.000000),
  181. (1.0, 1.0, 1.0)),
  182. 'green': ((0., 0., 0.),
  183. (0.365079, 0.000000, 0.000000),
  184. (0.746032, 1.000000, 1.000000),
  185. (1.0, 1.0, 1.0)),
  186. 'blue': ((0., 0., 0.),
  187. (0.746032, 0.000000, 0.000000),
  188. (1.0, 1.0, 1.0))}
  189. _hsv_data = {'red': ((0., 1., 1.),
  190. (0.158730, 1.000000, 1.000000),
  191. (0.174603, 0.968750, 0.968750),
  192. (0.333333, 0.031250, 0.031250),
  193. (0.349206, 0.000000, 0.000000),
  194. (0.666667, 0.000000, 0.000000),
  195. (0.682540, 0.031250, 0.031250),
  196. (0.841270, 0.968750, 0.968750),
  197. (0.857143, 1.000000, 1.000000),
  198. (1.0, 1.0, 1.0)),
  199. 'green': ((0., 0., 0.),
  200. (0.158730, 0.937500, 0.937500),
  201. (0.174603, 1.000000, 1.000000),
  202. (0.507937, 1.000000, 1.000000),
  203. (0.666667, 0.062500, 0.062500),
  204. (0.682540, 0.000000, 0.000000),
  205. (1.0, 0., 0.)),
  206. 'blue': ((0., 0., 0.),
  207. (0.333333, 0.000000, 0.000000),
  208. (0.349206, 0.062500, 0.062500),
  209. (0.507937, 1.000000, 1.000000),
  210. (0.841270, 1.000000, 1.000000),
  211. (0.857143, 0.937500, 0.937500),
  212. (1.0, 0.09375, 0.09375))}
  213. _jet_data = {'red': ((0.00, 0, 0),
  214. (0.35, 0, 0),
  215. (0.66, 1, 1),
  216. (0.89, 1, 1),
  217. (1.00, 0.5, 0.5)),
  218. 'green': ((0.000, 0, 0),
  219. (0.125, 0, 0),
  220. (0.375, 1, 1),
  221. (0.640, 1, 1),
  222. (0.910, 0, 0),
  223. (1.000, 0, 0)),
  224. 'blue': ((0.00, 0.5, 0.5),
  225. (0.11, 1, 1),
  226. (0.34, 1, 1),
  227. (0.65, 0, 0),
  228. (1.00, 0, 0))}
  229. _pink_data = {'red': ((0., 0.1178, 0.1178), (0.015873, 0.195857, 0.195857),
  230. (0.031746, 0.250661, 0.250661),
  231. (0.047619, 0.295468, 0.295468),
  232. (0.063492, 0.334324, 0.334324),
  233. (0.079365, 0.369112, 0.369112),
  234. (0.095238, 0.400892, 0.400892),
  235. (0.111111, 0.430331, 0.430331),
  236. (0.126984, 0.457882, 0.457882),
  237. (0.142857, 0.483867, 0.483867),
  238. (0.158730, 0.508525, 0.508525),
  239. (0.174603, 0.532042, 0.532042),
  240. (0.190476, 0.554563, 0.554563),
  241. (0.206349, 0.576204, 0.576204),
  242. (0.222222, 0.597061, 0.597061),
  243. (0.238095, 0.617213, 0.617213),
  244. (0.253968, 0.636729, 0.636729),
  245. (0.269841, 0.655663, 0.655663),
  246. (0.285714, 0.674066, 0.674066),
  247. (0.301587, 0.691980, 0.691980),
  248. (0.317460, 0.709441, 0.709441),
  249. (0.333333, 0.726483, 0.726483),
  250. (0.349206, 0.743134, 0.743134),
  251. (0.365079, 0.759421, 0.759421),
  252. (0.380952, 0.766356, 0.766356),
  253. (0.396825, 0.773229, 0.773229),
  254. (0.412698, 0.780042, 0.780042),
  255. (0.428571, 0.786796, 0.786796),
  256. (0.444444, 0.793492, 0.793492),
  257. (0.460317, 0.800132, 0.800132),
  258. (0.476190, 0.806718, 0.806718),
  259. (0.492063, 0.813250, 0.813250),
  260. (0.507937, 0.819730, 0.819730),
  261. (0.523810, 0.826160, 0.826160),
  262. (0.539683, 0.832539, 0.832539),
  263. (0.555556, 0.838870, 0.838870),
  264. (0.571429, 0.845154, 0.845154),
  265. (0.587302, 0.851392, 0.851392),
  266. (0.603175, 0.857584, 0.857584),
  267. (0.619048, 0.863731, 0.863731),
  268. (0.634921, 0.869835, 0.869835),
  269. (0.650794, 0.875897, 0.875897),
  270. (0.666667, 0.881917, 0.881917),
  271. (0.682540, 0.887896, 0.887896),
  272. (0.698413, 0.893835, 0.893835),
  273. (0.714286, 0.899735, 0.899735),
  274. (0.730159, 0.905597, 0.905597),
  275. (0.746032, 0.911421, 0.911421),
  276. (0.761905, 0.917208, 0.917208),
  277. (0.777778, 0.922958, 0.922958),
  278. (0.793651, 0.928673, 0.928673),
  279. (0.809524, 0.934353, 0.934353),
  280. (0.825397, 0.939999, 0.939999),
  281. (0.841270, 0.945611, 0.945611),
  282. (0.857143, 0.951190, 0.951190),
  283. (0.873016, 0.956736, 0.956736),
  284. (0.888889, 0.962250, 0.962250),
  285. (0.904762, 0.967733, 0.967733),
  286. (0.920635, 0.973185, 0.973185),
  287. (0.936508, 0.978607, 0.978607),
  288. (0.952381, 0.983999, 0.983999),
  289. (0.968254, 0.989361, 0.989361),
  290. (0.984127, 0.994695, 0.994695), (1.0, 1.0, 1.0)),
  291. 'green': ((0., 0., 0.), (0.015873, 0.102869, 0.102869),
  292. (0.031746, 0.145479, 0.145479),
  293. (0.047619, 0.178174, 0.178174),
  294. (0.063492, 0.205738, 0.205738),
  295. (0.079365, 0.230022, 0.230022),
  296. (0.095238, 0.251976, 0.251976),
  297. (0.111111, 0.272166, 0.272166),
  298. (0.126984, 0.290957, 0.290957),
  299. (0.142857, 0.308607, 0.308607),
  300. (0.158730, 0.325300, 0.325300),
  301. (0.174603, 0.341178, 0.341178),
  302. (0.190476, 0.356348, 0.356348),
  303. (0.206349, 0.370899, 0.370899),
  304. (0.222222, 0.384900, 0.384900),
  305. (0.238095, 0.398410, 0.398410),
  306. (0.253968, 0.411476, 0.411476),
  307. (0.269841, 0.424139, 0.424139),
  308. (0.285714, 0.436436, 0.436436),
  309. (0.301587, 0.448395, 0.448395),
  310. (0.317460, 0.460044, 0.460044),
  311. (0.333333, 0.471405, 0.471405),
  312. (0.349206, 0.482498, 0.482498),
  313. (0.365079, 0.493342, 0.493342),
  314. (0.380952, 0.517549, 0.517549),
  315. (0.396825, 0.540674, 0.540674),
  316. (0.412698, 0.562849, 0.562849),
  317. (0.428571, 0.584183, 0.584183),
  318. (0.444444, 0.604765, 0.604765),
  319. (0.460317, 0.624669, 0.624669),
  320. (0.476190, 0.643958, 0.643958),
  321. (0.492063, 0.662687, 0.662687),
  322. (0.507937, 0.680900, 0.680900),
  323. (0.523810, 0.698638, 0.698638),
  324. (0.539683, 0.715937, 0.715937),
  325. (0.555556, 0.732828, 0.732828),
  326. (0.571429, 0.749338, 0.749338),
  327. (0.587302, 0.765493, 0.765493),
  328. (0.603175, 0.781313, 0.781313),
  329. (0.619048, 0.796819, 0.796819),
  330. (0.634921, 0.812029, 0.812029),
  331. (0.650794, 0.826960, 0.826960),
  332. (0.666667, 0.841625, 0.841625),
  333. (0.682540, 0.856040, 0.856040),
  334. (0.698413, 0.870216, 0.870216),
  335. (0.714286, 0.884164, 0.884164),
  336. (0.730159, 0.897896, 0.897896),
  337. (0.746032, 0.911421, 0.911421),
  338. (0.761905, 0.917208, 0.917208),
  339. (0.777778, 0.922958, 0.922958),
  340. (0.793651, 0.928673, 0.928673),
  341. (0.809524, 0.934353, 0.934353),
  342. (0.825397, 0.939999, 0.939999),
  343. (0.841270, 0.945611, 0.945611),
  344. (0.857143, 0.951190, 0.951190),
  345. (0.873016, 0.956736, 0.956736),
  346. (0.888889, 0.962250, 0.962250),
  347. (0.904762, 0.967733, 0.967733),
  348. (0.920635, 0.973185, 0.973185),
  349. (0.936508, 0.978607, 0.978607),
  350. (0.952381, 0.983999, 0.983999),
  351. (0.968254, 0.989361, 0.989361),
  352. (0.984127, 0.994695, 0.994695), (1.0, 1.0, 1.0)),
  353. 'blue': ((0., 0., 0.), (0.015873, 0.102869, 0.102869),
  354. (0.031746, 0.145479, 0.145479),
  355. (0.047619, 0.178174, 0.178174),
  356. (0.063492, 0.205738, 0.205738),
  357. (0.079365, 0.230022, 0.230022),
  358. (0.095238, 0.251976, 0.251976),
  359. (0.111111, 0.272166, 0.272166),
  360. (0.126984, 0.290957, 0.290957),
  361. (0.142857, 0.308607, 0.308607),
  362. (0.158730, 0.325300, 0.325300),
  363. (0.174603, 0.341178, 0.341178),
  364. (0.190476, 0.356348, 0.356348),
  365. (0.206349, 0.370899, 0.370899),
  366. (0.222222, 0.384900, 0.384900),
  367. (0.238095, 0.398410, 0.398410),
  368. (0.253968, 0.411476, 0.411476),
  369. (0.269841, 0.424139, 0.424139),
  370. (0.285714, 0.436436, 0.436436),
  371. (0.301587, 0.448395, 0.448395),
  372. (0.317460, 0.460044, 0.460044),
  373. (0.333333, 0.471405, 0.471405),
  374. (0.349206, 0.482498, 0.482498),
  375. (0.365079, 0.493342, 0.493342),
  376. (0.380952, 0.503953, 0.503953),
  377. (0.396825, 0.514344, 0.514344),
  378. (0.412698, 0.524531, 0.524531),
  379. (0.428571, 0.534522, 0.534522),
  380. (0.444444, 0.544331, 0.544331),
  381. (0.460317, 0.553966, 0.553966),
  382. (0.476190, 0.563436, 0.563436),
  383. (0.492063, 0.572750, 0.572750),
  384. (0.507937, 0.581914, 0.581914),
  385. (0.523810, 0.590937, 0.590937),
  386. (0.539683, 0.599824, 0.599824),
  387. (0.555556, 0.608581, 0.608581),
  388. (0.571429, 0.617213, 0.617213),
  389. (0.587302, 0.625727, 0.625727),
  390. (0.603175, 0.634126, 0.634126),
  391. (0.619048, 0.642416, 0.642416),
  392. (0.634921, 0.650600, 0.650600),
  393. (0.650794, 0.658682, 0.658682),
  394. (0.666667, 0.666667, 0.666667),
  395. (0.682540, 0.674556, 0.674556),
  396. (0.698413, 0.682355, 0.682355),
  397. (0.714286, 0.690066, 0.690066),
  398. (0.730159, 0.697691, 0.697691),
  399. (0.746032, 0.705234, 0.705234),
  400. (0.761905, 0.727166, 0.727166),
  401. (0.777778, 0.748455, 0.748455),
  402. (0.793651, 0.769156, 0.769156),
  403. (0.809524, 0.789314, 0.789314),
  404. (0.825397, 0.808969, 0.808969),
  405. (0.841270, 0.828159, 0.828159),
  406. (0.857143, 0.846913, 0.846913),
  407. (0.873016, 0.865261, 0.865261),
  408. (0.888889, 0.883229, 0.883229),
  409. (0.904762, 0.900837, 0.900837),
  410. (0.920635, 0.918109, 0.918109),
  411. (0.936508, 0.935061, 0.935061),
  412. (0.952381, 0.951711, 0.951711),
  413. (0.968254, 0.968075, 0.968075),
  414. (0.984127, 0.984167, 0.984167), (1.0, 1.0, 1.0))}
  415. _spring_data = {'red': ((0., 1., 1.), (1.0, 1.0, 1.0)),
  416. 'green': ((0., 0., 0.), (1.0, 1.0, 1.0)),
  417. 'blue': ((0., 1., 1.), (1.0, 0.0, 0.0))}
  418. _summer_data = {'red': ((0., 0., 0.), (1.0, 1.0, 1.0)),
  419. 'green': ((0., 0.5, 0.5), (1.0, 1.0, 1.0)),
  420. 'blue': ((0., 0.4, 0.4), (1.0, 0.4, 0.4))}
  421. _winter_data = {'red': ((0., 0., 0.), (1.0, 0.0, 0.0)),
  422. 'green': ((0., 0., 0.), (1.0, 1.0, 1.0)),
  423. 'blue': ((0., 1., 1.), (1.0, 0.5, 0.5))}
  424. _nipy_spectral_data = {
  425. 'red': [(0.0, 0.0, 0.0), (0.05, 0.4667, 0.4667),
  426. (0.10, 0.5333, 0.5333), (0.15, 0.0, 0.0),
  427. (0.20, 0.0, 0.0), (0.25, 0.0, 0.0),
  428. (0.30, 0.0, 0.0), (0.35, 0.0, 0.0),
  429. (0.40, 0.0, 0.0), (0.45, 0.0, 0.0),
  430. (0.50, 0.0, 0.0), (0.55, 0.0, 0.0),
  431. (0.60, 0.0, 0.0), (0.65, 0.7333, 0.7333),
  432. (0.70, 0.9333, 0.9333), (0.75, 1.0, 1.0),
  433. (0.80, 1.0, 1.0), (0.85, 1.0, 1.0),
  434. (0.90, 0.8667, 0.8667), (0.95, 0.80, 0.80),
  435. (1.0, 0.80, 0.80)],
  436. 'green': [(0.0, 0.0, 0.0), (0.05, 0.0, 0.0),
  437. (0.10, 0.0, 0.0), (0.15, 0.0, 0.0),
  438. (0.20, 0.0, 0.0), (0.25, 0.4667, 0.4667),
  439. (0.30, 0.6000, 0.6000), (0.35, 0.6667, 0.6667),
  440. (0.40, 0.6667, 0.6667), (0.45, 0.6000, 0.6000),
  441. (0.50, 0.7333, 0.7333), (0.55, 0.8667, 0.8667),
  442. (0.60, 1.0, 1.0), (0.65, 1.0, 1.0),
  443. (0.70, 0.9333, 0.9333), (0.75, 0.8000, 0.8000),
  444. (0.80, 0.6000, 0.6000), (0.85, 0.0, 0.0),
  445. (0.90, 0.0, 0.0), (0.95, 0.0, 0.0),
  446. (1.0, 0.80, 0.80)],
  447. 'blue': [(0.0, 0.0, 0.0), (0.05, 0.5333, 0.5333),
  448. (0.10, 0.6000, 0.6000), (0.15, 0.6667, 0.6667),
  449. (0.20, 0.8667, 0.8667), (0.25, 0.8667, 0.8667),
  450. (0.30, 0.8667, 0.8667), (0.35, 0.6667, 0.6667),
  451. (0.40, 0.5333, 0.5333), (0.45, 0.0, 0.0),
  452. (0.5, 0.0, 0.0), (0.55, 0.0, 0.0),
  453. (0.60, 0.0, 0.0), (0.65, 0.0, 0.0),
  454. (0.70, 0.0, 0.0), (0.75, 0.0, 0.0),
  455. (0.80, 0.0, 0.0), (0.85, 0.0, 0.0),
  456. (0.90, 0.0, 0.0), (0.95, 0.0, 0.0),
  457. (1.0, 0.80, 0.80)],
  458. }
  459. # 34 colormaps based on color specifications and designs
  460. # developed by Cynthia Brewer (http://colorbrewer.org).
  461. # The ColorBrewer palettes have been included under the terms
  462. # of an Apache-stype license (for details, see the file
  463. # LICENSE_COLORBREWER in the license directory of the matplotlib
  464. # source distribution).
  465. # RGB values taken from Brewer's Excel sheet, divided by 255
  466. _Blues_data = (
  467. (0.96862745098039216, 0.98431372549019602, 1.0 ),
  468. (0.87058823529411766, 0.92156862745098034, 0.96862745098039216),
  469. (0.77647058823529413, 0.85882352941176465, 0.93725490196078431),
  470. (0.61960784313725492, 0.792156862745098 , 0.88235294117647056),
  471. (0.41960784313725491, 0.68235294117647061, 0.83921568627450982),
  472. (0.25882352941176473, 0.5725490196078431 , 0.77647058823529413),
  473. (0.12941176470588237, 0.44313725490196076, 0.70980392156862748),
  474. (0.03137254901960784, 0.31764705882352939, 0.61176470588235299),
  475. (0.03137254901960784, 0.18823529411764706, 0.41960784313725491)
  476. )
  477. _BrBG_data = (
  478. (0.32941176470588235, 0.18823529411764706, 0.0196078431372549 ),
  479. (0.5490196078431373 , 0.31764705882352939, 0.0392156862745098 ),
  480. (0.74901960784313726, 0.50588235294117645, 0.17647058823529413),
  481. (0.87450980392156863, 0.76078431372549016, 0.49019607843137253),
  482. (0.96470588235294119, 0.90980392156862744, 0.76470588235294112),
  483. (0.96078431372549022, 0.96078431372549022, 0.96078431372549022),
  484. (0.7803921568627451 , 0.91764705882352937, 0.89803921568627454),
  485. (0.50196078431372548, 0.80392156862745101, 0.75686274509803919),
  486. (0.20784313725490197, 0.59215686274509804, 0.5607843137254902 ),
  487. (0.00392156862745098, 0.4 , 0.36862745098039218),
  488. (0.0 , 0.23529411764705882, 0.18823529411764706)
  489. )
  490. _BuGn_data = (
  491. (0.96862745098039216, 0.9882352941176471 , 0.99215686274509807),
  492. (0.89803921568627454, 0.96078431372549022, 0.97647058823529409),
  493. (0.8 , 0.92549019607843142, 0.90196078431372551),
  494. (0.6 , 0.84705882352941175, 0.78823529411764703),
  495. (0.4 , 0.76078431372549016, 0.64313725490196083),
  496. (0.25490196078431371, 0.68235294117647061, 0.46274509803921571),
  497. (0.13725490196078433, 0.54509803921568623, 0.27058823529411763),
  498. (0.0 , 0.42745098039215684, 0.17254901960784313),
  499. (0.0 , 0.26666666666666666, 0.10588235294117647)
  500. )
  501. _BuPu_data = (
  502. (0.96862745098039216, 0.9882352941176471 , 0.99215686274509807),
  503. (0.8784313725490196 , 0.92549019607843142, 0.95686274509803926),
  504. (0.74901960784313726, 0.82745098039215681, 0.90196078431372551),
  505. (0.61960784313725492, 0.73725490196078436, 0.85490196078431369),
  506. (0.5490196078431373 , 0.58823529411764708, 0.77647058823529413),
  507. (0.5490196078431373 , 0.41960784313725491, 0.69411764705882351),
  508. (0.53333333333333333, 0.25490196078431371, 0.61568627450980395),
  509. (0.50588235294117645, 0.05882352941176471, 0.48627450980392156),
  510. (0.30196078431372547, 0.0 , 0.29411764705882354)
  511. )
  512. _GnBu_data = (
  513. (0.96862745098039216, 0.9882352941176471 , 0.94117647058823528),
  514. (0.8784313725490196 , 0.95294117647058818, 0.85882352941176465),
  515. (0.8 , 0.92156862745098034, 0.77254901960784317),
  516. (0.6588235294117647 , 0.8666666666666667 , 0.70980392156862748),
  517. (0.4823529411764706 , 0.8 , 0.7686274509803922 ),
  518. (0.30588235294117649, 0.70196078431372544, 0.82745098039215681),
  519. (0.16862745098039217, 0.5490196078431373 , 0.74509803921568629),
  520. (0.03137254901960784, 0.40784313725490196, 0.67450980392156867),
  521. (0.03137254901960784, 0.25098039215686274, 0.50588235294117645)
  522. )
  523. _Greens_data = (
  524. (0.96862745098039216, 0.9882352941176471 , 0.96078431372549022),
  525. (0.89803921568627454, 0.96078431372549022, 0.8784313725490196 ),
  526. (0.7803921568627451 , 0.9137254901960784 , 0.75294117647058822),
  527. (0.63137254901960782, 0.85098039215686272, 0.60784313725490191),
  528. (0.45490196078431372, 0.7686274509803922 , 0.46274509803921571),
  529. (0.25490196078431371, 0.6705882352941176 , 0.36470588235294116),
  530. (0.13725490196078433, 0.54509803921568623, 0.27058823529411763),
  531. (0.0 , 0.42745098039215684, 0.17254901960784313),
  532. (0.0 , 0.26666666666666666, 0.10588235294117647)
  533. )
  534. _Greys_data = (
  535. (1.0 , 1.0 , 1.0 ),
  536. (0.94117647058823528, 0.94117647058823528, 0.94117647058823528),
  537. (0.85098039215686272, 0.85098039215686272, 0.85098039215686272),
  538. (0.74117647058823533, 0.74117647058823533, 0.74117647058823533),
  539. (0.58823529411764708, 0.58823529411764708, 0.58823529411764708),
  540. (0.45098039215686275, 0.45098039215686275, 0.45098039215686275),
  541. (0.32156862745098042, 0.32156862745098042, 0.32156862745098042),
  542. (0.14509803921568629, 0.14509803921568629, 0.14509803921568629),
  543. (0.0 , 0.0 , 0.0 )
  544. )
  545. _Oranges_data = (
  546. (1.0 , 0.96078431372549022, 0.92156862745098034),
  547. (0.99607843137254903, 0.90196078431372551, 0.80784313725490198),
  548. (0.99215686274509807, 0.81568627450980391, 0.63529411764705879),
  549. (0.99215686274509807, 0.68235294117647061, 0.41960784313725491),
  550. (0.99215686274509807, 0.55294117647058827, 0.23529411764705882),
  551. (0.94509803921568625, 0.41176470588235292, 0.07450980392156863),
  552. (0.85098039215686272, 0.28235294117647058, 0.00392156862745098),
  553. (0.65098039215686276, 0.21176470588235294, 0.01176470588235294),
  554. (0.49803921568627452, 0.15294117647058825, 0.01568627450980392)
  555. )
  556. _OrRd_data = (
  557. (1.0 , 0.96862745098039216, 0.92549019607843142),
  558. (0.99607843137254903, 0.90980392156862744, 0.78431372549019607),
  559. (0.99215686274509807, 0.83137254901960789, 0.61960784313725492),
  560. (0.99215686274509807, 0.73333333333333328, 0.51764705882352946),
  561. (0.9882352941176471 , 0.55294117647058827, 0.34901960784313724),
  562. (0.93725490196078431, 0.396078431372549 , 0.28235294117647058),
  563. (0.84313725490196079, 0.18823529411764706, 0.12156862745098039),
  564. (0.70196078431372544, 0.0 , 0.0 ),
  565. (0.49803921568627452, 0.0 , 0.0 )
  566. )
  567. _PiYG_data = (
  568. (0.55686274509803924, 0.00392156862745098, 0.32156862745098042),
  569. (0.77254901960784317, 0.10588235294117647, 0.49019607843137253),
  570. (0.87058823529411766, 0.46666666666666667, 0.68235294117647061),
  571. (0.94509803921568625, 0.71372549019607845, 0.85490196078431369),
  572. (0.99215686274509807, 0.8784313725490196 , 0.93725490196078431),
  573. (0.96862745098039216, 0.96862745098039216, 0.96862745098039216),
  574. (0.90196078431372551, 0.96078431372549022, 0.81568627450980391),
  575. (0.72156862745098038, 0.88235294117647056, 0.52549019607843139),
  576. (0.49803921568627452, 0.73725490196078436, 0.25490196078431371),
  577. (0.30196078431372547, 0.5725490196078431 , 0.12941176470588237),
  578. (0.15294117647058825, 0.39215686274509803, 0.09803921568627451)
  579. )
  580. _PRGn_data = (
  581. (0.25098039215686274, 0.0 , 0.29411764705882354),
  582. (0.46274509803921571, 0.16470588235294117, 0.51372549019607838),
  583. (0.6 , 0.4392156862745098 , 0.6705882352941176 ),
  584. (0.76078431372549016, 0.6470588235294118 , 0.81176470588235294),
  585. (0.90588235294117647, 0.83137254901960789, 0.90980392156862744),
  586. (0.96862745098039216, 0.96862745098039216, 0.96862745098039216),
  587. (0.85098039215686272, 0.94117647058823528, 0.82745098039215681),
  588. (0.65098039215686276, 0.85882352941176465, 0.62745098039215685),
  589. (0.35294117647058826, 0.68235294117647061, 0.38039215686274508),
  590. (0.10588235294117647, 0.47058823529411764, 0.21568627450980393),
  591. (0.0 , 0.26666666666666666, 0.10588235294117647)
  592. )
  593. _PuBu_data = (
  594. (1.0 , 0.96862745098039216, 0.98431372549019602),
  595. (0.92549019607843142, 0.90588235294117647, 0.94901960784313721),
  596. (0.81568627450980391, 0.81960784313725488, 0.90196078431372551),
  597. (0.65098039215686276, 0.74117647058823533, 0.85882352941176465),
  598. (0.45490196078431372, 0.66274509803921566, 0.81176470588235294),
  599. (0.21176470588235294, 0.56470588235294117, 0.75294117647058822),
  600. (0.0196078431372549 , 0.4392156862745098 , 0.69019607843137254),
  601. (0.01568627450980392, 0.35294117647058826, 0.55294117647058827),
  602. (0.00784313725490196, 0.2196078431372549 , 0.34509803921568627)
  603. )
  604. _PuBuGn_data = (
  605. (1.0 , 0.96862745098039216, 0.98431372549019602),
  606. (0.92549019607843142, 0.88627450980392153, 0.94117647058823528),
  607. (0.81568627450980391, 0.81960784313725488, 0.90196078431372551),
  608. (0.65098039215686276, 0.74117647058823533, 0.85882352941176465),
  609. (0.40392156862745099, 0.66274509803921566, 0.81176470588235294),
  610. (0.21176470588235294, 0.56470588235294117, 0.75294117647058822),
  611. (0.00784313725490196, 0.50588235294117645, 0.54117647058823526),
  612. (0.00392156862745098, 0.42352941176470588, 0.34901960784313724),
  613. (0.00392156862745098, 0.27450980392156865, 0.21176470588235294)
  614. )
  615. _PuOr_data = (
  616. (0.49803921568627452, 0.23137254901960785, 0.03137254901960784),
  617. (0.70196078431372544, 0.34509803921568627, 0.02352941176470588),
  618. (0.8784313725490196 , 0.50980392156862742, 0.07843137254901961),
  619. (0.99215686274509807, 0.72156862745098038, 0.38823529411764707),
  620. (0.99607843137254903, 0.8784313725490196 , 0.71372549019607845),
  621. (0.96862745098039216, 0.96862745098039216, 0.96862745098039216),
  622. (0.84705882352941175, 0.85490196078431369, 0.92156862745098034),
  623. (0.69803921568627447, 0.6705882352941176 , 0.82352941176470584),
  624. (0.50196078431372548, 0.45098039215686275, 0.67450980392156867),
  625. (0.32941176470588235, 0.15294117647058825, 0.53333333333333333),
  626. (0.17647058823529413, 0.0 , 0.29411764705882354)
  627. )
  628. _PuRd_data = (
  629. (0.96862745098039216, 0.95686274509803926, 0.97647058823529409),
  630. (0.90588235294117647, 0.88235294117647056, 0.93725490196078431),
  631. (0.83137254901960789, 0.72549019607843135, 0.85490196078431369),
  632. (0.78823529411764703, 0.58039215686274515, 0.7803921568627451 ),
  633. (0.87450980392156863, 0.396078431372549 , 0.69019607843137254),
  634. (0.90588235294117647, 0.16078431372549021, 0.54117647058823526),
  635. (0.80784313725490198, 0.07058823529411765, 0.33725490196078434),
  636. (0.59607843137254901, 0.0 , 0.2627450980392157 ),
  637. (0.40392156862745099, 0.0 , 0.12156862745098039)
  638. )
  639. _Purples_data = (
  640. (0.9882352941176471 , 0.98431372549019602, 0.99215686274509807),
  641. (0.93725490196078431, 0.92941176470588238, 0.96078431372549022),
  642. (0.85490196078431369, 0.85490196078431369, 0.92156862745098034),
  643. (0.73725490196078436, 0.74117647058823533, 0.86274509803921573),
  644. (0.61960784313725492, 0.60392156862745094, 0.78431372549019607),
  645. (0.50196078431372548, 0.49019607843137253, 0.72941176470588232),
  646. (0.41568627450980394, 0.31764705882352939, 0.63921568627450975),
  647. (0.32941176470588235, 0.15294117647058825, 0.5607843137254902 ),
  648. (0.24705882352941178, 0.0 , 0.49019607843137253)
  649. )
  650. _RdBu_data = (
  651. (0.40392156862745099, 0.0 , 0.12156862745098039),
  652. (0.69803921568627447, 0.09411764705882353, 0.16862745098039217),
  653. (0.83921568627450982, 0.37647058823529411, 0.30196078431372547),
  654. (0.95686274509803926, 0.6470588235294118 , 0.50980392156862742),
  655. (0.99215686274509807, 0.85882352941176465, 0.7803921568627451 ),
  656. (0.96862745098039216, 0.96862745098039216, 0.96862745098039216),
  657. (0.81960784313725488, 0.89803921568627454, 0.94117647058823528),
  658. (0.5725490196078431 , 0.77254901960784317, 0.87058823529411766),
  659. (0.2627450980392157 , 0.57647058823529407, 0.76470588235294112),
  660. (0.12941176470588237, 0.4 , 0.67450980392156867),
  661. (0.0196078431372549 , 0.18823529411764706, 0.38039215686274508)
  662. )
  663. _RdGy_data = (
  664. (0.40392156862745099, 0.0 , 0.12156862745098039),
  665. (0.69803921568627447, 0.09411764705882353, 0.16862745098039217),
  666. (0.83921568627450982, 0.37647058823529411, 0.30196078431372547),
  667. (0.95686274509803926, 0.6470588235294118 , 0.50980392156862742),
  668. (0.99215686274509807, 0.85882352941176465, 0.7803921568627451 ),
  669. (1.0 , 1.0 , 1.0 ),
  670. (0.8784313725490196 , 0.8784313725490196 , 0.8784313725490196 ),
  671. (0.72941176470588232, 0.72941176470588232, 0.72941176470588232),
  672. (0.52941176470588236, 0.52941176470588236, 0.52941176470588236),
  673. (0.30196078431372547, 0.30196078431372547, 0.30196078431372547),
  674. (0.10196078431372549, 0.10196078431372549, 0.10196078431372549)
  675. )
  676. _RdPu_data = (
  677. (1.0 , 0.96862745098039216, 0.95294117647058818),
  678. (0.99215686274509807, 0.8784313725490196 , 0.86666666666666667),
  679. (0.9882352941176471 , 0.77254901960784317, 0.75294117647058822),
  680. (0.98039215686274506, 0.62352941176470589, 0.70980392156862748),
  681. (0.96862745098039216, 0.40784313725490196, 0.63137254901960782),
  682. (0.86666666666666667, 0.20392156862745098, 0.59215686274509804),
  683. (0.68235294117647061, 0.00392156862745098, 0.49411764705882355),
  684. (0.47843137254901963, 0.00392156862745098, 0.46666666666666667),
  685. (0.28627450980392155, 0.0 , 0.41568627450980394)
  686. )
  687. _RdYlBu_data = (
  688. (0.6470588235294118 , 0.0 , 0.14901960784313725),
  689. (0.84313725490196079, 0.18823529411764706 , 0.15294117647058825),
  690. (0.95686274509803926, 0.42745098039215684 , 0.2627450980392157 ),
  691. (0.99215686274509807, 0.68235294117647061 , 0.38039215686274508),
  692. (0.99607843137254903, 0.8784313725490196 , 0.56470588235294117),
  693. (1.0 , 1.0 , 0.74901960784313726),
  694. (0.8784313725490196 , 0.95294117647058818 , 0.97254901960784312),
  695. (0.6705882352941176 , 0.85098039215686272 , 0.9137254901960784 ),
  696. (0.45490196078431372, 0.67843137254901964 , 0.81960784313725488),
  697. (0.27058823529411763, 0.45882352941176469 , 0.70588235294117652),
  698. (0.19215686274509805, 0.21176470588235294 , 0.58431372549019611)
  699. )
  700. _RdYlGn_data = (
  701. (0.6470588235294118 , 0.0 , 0.14901960784313725),
  702. (0.84313725490196079, 0.18823529411764706 , 0.15294117647058825),
  703. (0.95686274509803926, 0.42745098039215684 , 0.2627450980392157 ),
  704. (0.99215686274509807, 0.68235294117647061 , 0.38039215686274508),
  705. (0.99607843137254903, 0.8784313725490196 , 0.54509803921568623),
  706. (1.0 , 1.0 , 0.74901960784313726),
  707. (0.85098039215686272, 0.93725490196078431 , 0.54509803921568623),
  708. (0.65098039215686276, 0.85098039215686272 , 0.41568627450980394),
  709. (0.4 , 0.74117647058823533 , 0.38823529411764707),
  710. (0.10196078431372549, 0.59607843137254901 , 0.31372549019607843),
  711. (0.0 , 0.40784313725490196 , 0.21568627450980393)
  712. )
  713. _Reds_data = (
  714. (1.0 , 0.96078431372549022 , 0.94117647058823528),
  715. (0.99607843137254903, 0.8784313725490196 , 0.82352941176470584),
  716. (0.9882352941176471 , 0.73333333333333328 , 0.63137254901960782),
  717. (0.9882352941176471 , 0.5725490196078431 , 0.44705882352941179),
  718. (0.98431372549019602, 0.41568627450980394 , 0.29019607843137257),
  719. (0.93725490196078431, 0.23137254901960785 , 0.17254901960784313),
  720. (0.79607843137254897, 0.094117647058823528, 0.11372549019607843),
  721. (0.6470588235294118 , 0.058823529411764705, 0.08235294117647058),
  722. (0.40392156862745099, 0.0 , 0.05098039215686274)
  723. )
  724. _Spectral_data = (
  725. (0.61960784313725492, 0.003921568627450980, 0.25882352941176473),
  726. (0.83529411764705885, 0.24313725490196078 , 0.30980392156862746),
  727. (0.95686274509803926, 0.42745098039215684 , 0.2627450980392157 ),
  728. (0.99215686274509807, 0.68235294117647061 , 0.38039215686274508),
  729. (0.99607843137254903, 0.8784313725490196 , 0.54509803921568623),
  730. (1.0 , 1.0 , 0.74901960784313726),
  731. (0.90196078431372551, 0.96078431372549022 , 0.59607843137254901),
  732. (0.6705882352941176 , 0.8666666666666667 , 0.64313725490196083),
  733. (0.4 , 0.76078431372549016 , 0.6470588235294118 ),
  734. (0.19607843137254902, 0.53333333333333333 , 0.74117647058823533),
  735. (0.36862745098039218, 0.30980392156862746 , 0.63529411764705879)
  736. )
  737. _YlGn_data = (
  738. (1.0 , 1.0 , 0.89803921568627454),
  739. (0.96862745098039216, 0.9882352941176471 , 0.72549019607843135),
  740. (0.85098039215686272, 0.94117647058823528 , 0.63921568627450975),
  741. (0.67843137254901964, 0.8666666666666667 , 0.55686274509803924),
  742. (0.47058823529411764, 0.77647058823529413 , 0.47450980392156861),
  743. (0.25490196078431371, 0.6705882352941176 , 0.36470588235294116),
  744. (0.13725490196078433, 0.51764705882352946 , 0.2627450980392157 ),
  745. (0.0 , 0.40784313725490196 , 0.21568627450980393),
  746. (0.0 , 0.27058823529411763 , 0.16078431372549021)
  747. )
  748. _YlGnBu_data = (
  749. (1.0 , 1.0 , 0.85098039215686272),
  750. (0.92941176470588238, 0.97254901960784312 , 0.69411764705882351),
  751. (0.7803921568627451 , 0.9137254901960784 , 0.70588235294117652),
  752. (0.49803921568627452, 0.80392156862745101 , 0.73333333333333328),
  753. (0.25490196078431371, 0.71372549019607845 , 0.7686274509803922 ),
  754. (0.11372549019607843, 0.56862745098039214 , 0.75294117647058822),
  755. (0.13333333333333333, 0.36862745098039218 , 0.6588235294117647 ),
  756. (0.14509803921568629, 0.20392156862745098 , 0.58039215686274515),
  757. (0.03137254901960784, 0.11372549019607843 , 0.34509803921568627)
  758. )
  759. _YlOrBr_data = (
  760. (1.0 , 1.0 , 0.89803921568627454),
  761. (1.0 , 0.96862745098039216 , 0.73725490196078436),
  762. (0.99607843137254903, 0.8901960784313725 , 0.56862745098039214),
  763. (0.99607843137254903, 0.7686274509803922 , 0.30980392156862746),
  764. (0.99607843137254903, 0.6 , 0.16078431372549021),
  765. (0.92549019607843142, 0.4392156862745098 , 0.07843137254901961),
  766. (0.8 , 0.29803921568627451 , 0.00784313725490196),
  767. (0.6 , 0.20392156862745098 , 0.01568627450980392),
  768. (0.4 , 0.14509803921568629 , 0.02352941176470588)
  769. )
  770. _YlOrRd_data = (
  771. (1.0 , 1.0 , 0.8 ),
  772. (1.0 , 0.92941176470588238 , 0.62745098039215685),
  773. (0.99607843137254903, 0.85098039215686272 , 0.46274509803921571),
  774. (0.99607843137254903, 0.69803921568627447 , 0.29803921568627451),
  775. (0.99215686274509807, 0.55294117647058827 , 0.23529411764705882),
  776. (0.9882352941176471 , 0.30588235294117649 , 0.16470588235294117),
  777. (0.8901960784313725 , 0.10196078431372549 , 0.10980392156862745),
  778. (0.74117647058823533, 0.0 , 0.14901960784313725),
  779. (0.50196078431372548, 0.0 , 0.14901960784313725)
  780. )
  781. # ColorBrewer's qualitative maps, implemented using ListedColormap
  782. # for use with mpl.colors.NoNorm
  783. _Accent_data = (
  784. (0.49803921568627452, 0.78823529411764703, 0.49803921568627452),
  785. (0.74509803921568629, 0.68235294117647061, 0.83137254901960789),
  786. (0.99215686274509807, 0.75294117647058822, 0.52549019607843139),
  787. (1.0, 1.0, 0.6 ),
  788. (0.2196078431372549, 0.42352941176470588, 0.69019607843137254),
  789. (0.94117647058823528, 0.00784313725490196, 0.49803921568627452),
  790. (0.74901960784313726, 0.35686274509803922, 0.09019607843137254),
  791. (0.4, 0.4, 0.4 ),
  792. )
  793. _Dark2_data = (
  794. (0.10588235294117647, 0.61960784313725492, 0.46666666666666667),
  795. (0.85098039215686272, 0.37254901960784315, 0.00784313725490196),
  796. (0.45882352941176469, 0.4392156862745098, 0.70196078431372544),
  797. (0.90588235294117647, 0.16078431372549021, 0.54117647058823526),
  798. (0.4, 0.65098039215686276, 0.11764705882352941),
  799. (0.90196078431372551, 0.6705882352941176, 0.00784313725490196),
  800. (0.65098039215686276, 0.46274509803921571, 0.11372549019607843),
  801. (0.4, 0.4, 0.4 ),
  802. )
  803. _Paired_data = (
  804. (0.65098039215686276, 0.80784313725490198, 0.8901960784313725 ),
  805. (0.12156862745098039, 0.47058823529411764, 0.70588235294117652),
  806. (0.69803921568627447, 0.87450980392156863, 0.54117647058823526),
  807. (0.2, 0.62745098039215685, 0.17254901960784313),
  808. (0.98431372549019602, 0.60392156862745094, 0.6 ),
  809. (0.8901960784313725, 0.10196078431372549, 0.10980392156862745),
  810. (0.99215686274509807, 0.74901960784313726, 0.43529411764705883),
  811. (1.0, 0.49803921568627452, 0.0 ),
  812. (0.792156862745098, 0.69803921568627447, 0.83921568627450982),
  813. (0.41568627450980394, 0.23921568627450981, 0.60392156862745094),
  814. (1.0, 1.0, 0.6 ),
  815. (0.69411764705882351, 0.34901960784313724, 0.15686274509803921),
  816. )
  817. _Pastel1_data = (
  818. (0.98431372549019602, 0.70588235294117652, 0.68235294117647061),
  819. (0.70196078431372544, 0.80392156862745101, 0.8901960784313725 ),
  820. (0.8, 0.92156862745098034, 0.77254901960784317),
  821. (0.87058823529411766, 0.79607843137254897, 0.89411764705882357),
  822. (0.99607843137254903, 0.85098039215686272, 0.65098039215686276),
  823. (1.0, 1.0, 0.8 ),
  824. (0.89803921568627454, 0.84705882352941175, 0.74117647058823533),
  825. (0.99215686274509807, 0.85490196078431369, 0.92549019607843142),
  826. (0.94901960784313721, 0.94901960784313721, 0.94901960784313721),
  827. )
  828. _Pastel2_data = (
  829. (0.70196078431372544, 0.88627450980392153, 0.80392156862745101),
  830. (0.99215686274509807, 0.80392156862745101, 0.67450980392156867),
  831. (0.79607843137254897, 0.83529411764705885, 0.90980392156862744),
  832. (0.95686274509803926, 0.792156862745098, 0.89411764705882357),
  833. (0.90196078431372551, 0.96078431372549022, 0.78823529411764703),
  834. (1.0, 0.94901960784313721, 0.68235294117647061),
  835. (0.94509803921568625, 0.88627450980392153, 0.8 ),
  836. (0.8, 0.8, 0.8 ),
  837. )
  838. _Set1_data = (
  839. (0.89411764705882357, 0.10196078431372549, 0.10980392156862745),
  840. (0.21568627450980393, 0.49411764705882355, 0.72156862745098038),
  841. (0.30196078431372547, 0.68627450980392157, 0.29019607843137257),
  842. (0.59607843137254901, 0.30588235294117649, 0.63921568627450975),
  843. (1.0, 0.49803921568627452, 0.0 ),
  844. (1.0, 1.0, 0.2 ),
  845. (0.65098039215686276, 0.33725490196078434, 0.15686274509803921),
  846. (0.96862745098039216, 0.50588235294117645, 0.74901960784313726),
  847. (0.6, 0.6, 0.6),
  848. )
  849. _Set2_data = (
  850. (0.4, 0.76078431372549016, 0.6470588235294118 ),
  851. (0.9882352941176471, 0.55294117647058827, 0.3843137254901961 ),
  852. (0.55294117647058827, 0.62745098039215685, 0.79607843137254897),
  853. (0.90588235294117647, 0.54117647058823526, 0.76470588235294112),
  854. (0.65098039215686276, 0.84705882352941175, 0.32941176470588235),
  855. (1.0, 0.85098039215686272, 0.18431372549019609),
  856. (0.89803921568627454, 0.7686274509803922, 0.58039215686274515),
  857. (0.70196078431372544, 0.70196078431372544, 0.70196078431372544),
  858. )
  859. _Set3_data = (
  860. (0.55294117647058827, 0.82745098039215681, 0.7803921568627451 ),
  861. (1.0, 1.0, 0.70196078431372544),
  862. (0.74509803921568629, 0.72941176470588232, 0.85490196078431369),
  863. (0.98431372549019602, 0.50196078431372548, 0.44705882352941179),
  864. (0.50196078431372548, 0.69411764705882351, 0.82745098039215681),
  865. (0.99215686274509807, 0.70588235294117652, 0.3843137254901961 ),
  866. (0.70196078431372544, 0.87058823529411766, 0.41176470588235292),
  867. (0.9882352941176471, 0.80392156862745101, 0.89803921568627454),
  868. (0.85098039215686272, 0.85098039215686272, 0.85098039215686272),
  869. (0.73725490196078436, 0.50196078431372548, 0.74117647058823533),
  870. (0.8, 0.92156862745098034, 0.77254901960784317),
  871. (1.0, 0.92941176470588238, 0.43529411764705883),
  872. )
  873. # The next 7 palettes are from the Yorick scientific visualization package,
  874. # an evolution of the GIST package, both by David H. Munro.
  875. # They are released under a BSD-like license (see LICENSE_YORICK in
  876. # the license directory of the matplotlib source distribution).
  877. #
  878. # Most palette functions have been reduced to simple function descriptions
  879. # by Reinier Heeres, since the rgb components were mostly straight lines.
  880. # gist_earth_data and gist_ncar_data were simplified by a script and some
  881. # manual effort.
  882. _gist_earth_data = \
  883. {'red': (
  884. (0.0, 0.0, 0.0000),
  885. (0.2824, 0.1882, 0.1882),
  886. (0.4588, 0.2714, 0.2714),
  887. (0.5490, 0.4719, 0.4719),
  888. (0.6980, 0.7176, 0.7176),
  889. (0.7882, 0.7553, 0.7553),
  890. (1.0000, 0.9922, 0.9922),
  891. ), 'green': (
  892. (0.0, 0.0, 0.0000),
  893. (0.0275, 0.0000, 0.0000),
  894. (0.1098, 0.1893, 0.1893),
  895. (0.1647, 0.3035, 0.3035),
  896. (0.2078, 0.3841, 0.3841),
  897. (0.2824, 0.5020, 0.5020),
  898. (0.5216, 0.6397, 0.6397),
  899. (0.6980, 0.7171, 0.7171),
  900. (0.7882, 0.6392, 0.6392),
  901. (0.7922, 0.6413, 0.6413),
  902. (0.8000, 0.6447, 0.6447),
  903. (0.8078, 0.6481, 0.6481),
  904. (0.8157, 0.6549, 0.6549),
  905. (0.8667, 0.6991, 0.6991),
  906. (0.8745, 0.7103, 0.7103),
  907. (0.8824, 0.7216, 0.7216),
  908. (0.8902, 0.7323, 0.7323),
  909. (0.8980, 0.7430, 0.7430),
  910. (0.9412, 0.8275, 0.8275),
  911. (0.9569, 0.8635, 0.8635),
  912. (0.9647, 0.8816, 0.8816),
  913. (0.9961, 0.9733, 0.9733),
  914. (1.0000, 0.9843, 0.9843),
  915. ), 'blue': (
  916. (0.0, 0.0, 0.0000),
  917. (0.0039, 0.1684, 0.1684),
  918. (0.0078, 0.2212, 0.2212),
  919. (0.0275, 0.4329, 0.4329),
  920. (0.0314, 0.4549, 0.4549),
  921. (0.2824, 0.5004, 0.5004),
  922. (0.4667, 0.2748, 0.2748),
  923. (0.5451, 0.3205, 0.3205),
  924. (0.7843, 0.3961, 0.3961),
  925. (0.8941, 0.6651, 0.6651),
  926. (1.0000, 0.9843, 0.9843),
  927. )}
  928. _gist_gray_data = {
  929. 'red': gfunc[3],
  930. 'green': gfunc[3],
  931. 'blue': gfunc[3],
  932. }
  933. def _gist_heat_red(x): return 1.5 * x
  934. def _gist_heat_green(x): return 2 * x - 1
  935. def _gist_heat_blue(x): return 4 * x - 3
  936. _gist_heat_data = {
  937. 'red': _gist_heat_red, 'green': _gist_heat_green, 'blue': _gist_heat_blue}
  938. _gist_ncar_data = \
  939. {'red': (
  940. (0.0, 0.0, 0.0000),
  941. (0.3098, 0.0000, 0.0000),
  942. (0.3725, 0.3993, 0.3993),
  943. (0.4235, 0.5003, 0.5003),
  944. (0.5333, 1.0000, 1.0000),
  945. (0.7922, 1.0000, 1.0000),
  946. (0.8471, 0.6218, 0.6218),
  947. (0.8980, 0.9235, 0.9235),
  948. (1.0000, 0.9961, 0.9961),
  949. ), 'green': (
  950. (0.0, 0.0, 0.0000),
  951. (0.0510, 0.3722, 0.3722),
  952. (0.1059, 0.0000, 0.0000),
  953. (0.1569, 0.7202, 0.7202),
  954. (0.1608, 0.7537, 0.7537),
  955. (0.1647, 0.7752, 0.7752),
  956. (0.2157, 1.0000, 1.0000),
  957. (0.2588, 0.9804, 0.9804),
  958. (0.2706, 0.9804, 0.9804),
  959. (0.3176, 1.0000, 1.0000),
  960. (0.3686, 0.8081, 0.8081),
  961. (0.4275, 1.0000, 1.0000),
  962. (0.5216, 1.0000, 1.0000),
  963. (0.6314, 0.7292, 0.7292),
  964. (0.6863, 0.2796, 0.2796),
  965. (0.7451, 0.0000, 0.0000),
  966. (0.7922, 0.0000, 0.0000),
  967. (0.8431, 0.1753, 0.1753),
  968. (0.8980, 0.5000, 0.5000),
  969. (1.0000, 0.9725, 0.9725),
  970. ), 'blue': (
  971. (0.0, 0.5020, 0.5020),
  972. (0.0510, 0.0222, 0.0222),
  973. (0.1098, 1.0000, 1.0000),
  974. (0.2039, 1.0000, 1.0000),
  975. (0.2627, 0.6145, 0.6145),
  976. (0.3216, 0.0000, 0.0000),
  977. (0.4157, 0.0000, 0.0000),
  978. (0.4745, 0.2342, 0.2342),
  979. (0.5333, 0.0000, 0.0000),
  980. (0.5804, 0.0000, 0.0000),
  981. (0.6314, 0.0549, 0.0549),
  982. (0.6902, 0.0000, 0.0000),
  983. (0.7373, 0.0000, 0.0000),
  984. (0.7922, 0.9738, 0.9738),
  985. (0.8000, 1.0000, 1.0000),
  986. (0.8431, 1.0000, 1.0000),
  987. (0.8980, 0.9341, 0.9341),
  988. (1.0000, 0.9961, 0.9961),
  989. )}
  990. _gist_rainbow_data = (
  991. (0.000, (1.00, 0.00, 0.16)),
  992. (0.030, (1.00, 0.00, 0.00)),
  993. (0.215, (1.00, 1.00, 0.00)),
  994. (0.400, (0.00, 1.00, 0.00)),
  995. (0.586, (0.00, 1.00, 1.00)),
  996. (0.770, (0.00, 0.00, 1.00)),
  997. (0.954, (1.00, 0.00, 1.00)),
  998. (1.000, (1.00, 0.00, 0.75))
  999. )
  1000. _gist_stern_data = {
  1001. 'red': (
  1002. (0.000, 0.000, 0.000), (0.0547, 1.000, 1.000),
  1003. (0.250, 0.027, 0.250), # (0.2500, 0.250, 0.250),
  1004. (1.000, 1.000, 1.000)),
  1005. 'green': ((0, 0, 0), (1, 1, 1)),
  1006. 'blue': (
  1007. (0.000, 0.000, 0.000), (0.500, 1.000, 1.000),
  1008. (0.735, 0.000, 0.000), (1.000, 1.000, 1.000))
  1009. }
  1010. def _gist_yarg(x): return 1 - x
  1011. _gist_yarg_data = {'red': _gist_yarg, 'green': _gist_yarg, 'blue': _gist_yarg}
  1012. # This bipolar color map was generated from CoolWarmFloat33.csv of
  1013. # "Diverging Color Maps for Scientific Visualization" by Kenneth Moreland.
  1014. # <http://www.kennethmoreland.com/color-maps/>
  1015. _coolwarm_data = {
  1016. 'red': [
  1017. (0.0, 0.2298057, 0.2298057),
  1018. (0.03125, 0.26623388, 0.26623388),
  1019. (0.0625, 0.30386891, 0.30386891),
  1020. (0.09375, 0.342804478, 0.342804478),
  1021. (0.125, 0.38301334, 0.38301334),
  1022. (0.15625, 0.424369608, 0.424369608),
  1023. (0.1875, 0.46666708, 0.46666708),
  1024. (0.21875, 0.509635204, 0.509635204),
  1025. (0.25, 0.552953156, 0.552953156),
  1026. (0.28125, 0.596262162, 0.596262162),
  1027. (0.3125, 0.639176211, 0.639176211),
  1028. (0.34375, 0.681291281, 0.681291281),
  1029. (0.375, 0.722193294, 0.722193294),
  1030. (0.40625, 0.761464949, 0.761464949),
  1031. (0.4375, 0.798691636, 0.798691636),
  1032. (0.46875, 0.833466556, 0.833466556),
  1033. (0.5, 0.865395197, 0.865395197),
  1034. (0.53125, 0.897787179, 0.897787179),
  1035. (0.5625, 0.924127593, 0.924127593),
  1036. (0.59375, 0.944468518, 0.944468518),
  1037. (0.625, 0.958852946, 0.958852946),
  1038. (0.65625, 0.96732803, 0.96732803),
  1039. (0.6875, 0.969954137, 0.969954137),
  1040. (0.71875, 0.966811177, 0.966811177),
  1041. (0.75, 0.958003065, 0.958003065),
  1042. (0.78125, 0.943660866, 0.943660866),
  1043. (0.8125, 0.923944917, 0.923944917),
  1044. (0.84375, 0.89904617, 0.89904617),
  1045. (0.875, 0.869186849, 0.869186849),
  1046. (0.90625, 0.834620542, 0.834620542),
  1047. (0.9375, 0.795631745, 0.795631745),
  1048. (0.96875, 0.752534934, 0.752534934),
  1049. (1.0, 0.705673158, 0.705673158)],
  1050. 'green': [
  1051. (0.0, 0.298717966, 0.298717966),
  1052. (0.03125, 0.353094838, 0.353094838),
  1053. (0.0625, 0.406535296, 0.406535296),
  1054. (0.09375, 0.458757618, 0.458757618),
  1055. (0.125, 0.50941904, 0.50941904),
  1056. (0.15625, 0.558148092, 0.558148092),
  1057. (0.1875, 0.604562568, 0.604562568),
  1058. (0.21875, 0.648280772, 0.648280772),
  1059. (0.25, 0.688929332, 0.688929332),
  1060. (0.28125, 0.726149107, 0.726149107),
  1061. (0.3125, 0.759599947, 0.759599947),
  1062. (0.34375, 0.788964712, 0.788964712),
  1063. (0.375, 0.813952739, 0.813952739),
  1064. (0.40625, 0.834302879, 0.834302879),
  1065. (0.4375, 0.849786142, 0.849786142),
  1066. (0.46875, 0.860207984, 0.860207984),
  1067. (0.5, 0.86541021, 0.86541021),
  1068. (0.53125, 0.848937047, 0.848937047),
  1069. (0.5625, 0.827384882, 0.827384882),
  1070. (0.59375, 0.800927443, 0.800927443),
  1071. (0.625, 0.769767752, 0.769767752),
  1072. (0.65625, 0.734132809, 0.734132809),
  1073. (0.6875, 0.694266682, 0.694266682),
  1074. (0.71875, 0.650421156, 0.650421156),
  1075. (0.75, 0.602842431, 0.602842431),
  1076. (0.78125, 0.551750968, 0.551750968),
  1077. (0.8125, 0.49730856, 0.49730856),
  1078. (0.84375, 0.439559467, 0.439559467),
  1079. (0.875, 0.378313092, 0.378313092),
  1080. (0.90625, 0.312874446, 0.312874446),
  1081. (0.9375, 0.24128379, 0.24128379),
  1082. (0.96875, 0.157246067, 0.157246067),
  1083. (1.0, 0.01555616, 0.01555616)],
  1084. 'blue': [
  1085. (0.0, 0.753683153, 0.753683153),
  1086. (0.03125, 0.801466763, 0.801466763),
  1087. (0.0625, 0.84495867, 0.84495867),
  1088. (0.09375, 0.883725899, 0.883725899),
  1089. (0.125, 0.917387822, 0.917387822),
  1090. (0.15625, 0.945619588, 0.945619588),
  1091. (0.1875, 0.968154911, 0.968154911),
  1092. (0.21875, 0.98478814, 0.98478814),
  1093. (0.25, 0.995375608, 0.995375608),
  1094. (0.28125, 0.999836203, 0.999836203),
  1095. (0.3125, 0.998151185, 0.998151185),
  1096. (0.34375, 0.990363227, 0.990363227),
  1097. (0.375, 0.976574709, 0.976574709),
  1098. (0.40625, 0.956945269, 0.956945269),
  1099. (0.4375, 0.931688648, 0.931688648),
  1100. (0.46875, 0.901068838, 0.901068838),
  1101. (0.5, 0.865395561, 0.865395561),
  1102. (0.53125, 0.820880546, 0.820880546),
  1103. (0.5625, 0.774508472, 0.774508472),
  1104. (0.59375, 0.726736146, 0.726736146),
  1105. (0.625, 0.678007945, 0.678007945),
  1106. (0.65625, 0.628751763, 0.628751763),
  1107. (0.6875, 0.579375448, 0.579375448),
  1108. (0.71875, 0.530263762, 0.530263762),
  1109. (0.75, 0.481775914, 0.481775914),
  1110. (0.78125, 0.434243684, 0.434243684),
  1111. (0.8125, 0.387970225, 0.387970225),
  1112. (0.84375, 0.343229596, 0.343229596),
  1113. (0.875, 0.300267182, 0.300267182),
  1114. (0.90625, 0.259301199, 0.259301199),
  1115. (0.9375, 0.220525627, 0.220525627),
  1116. (0.96875, 0.184115123, 0.184115123),
  1117. (1.0, 0.150232812, 0.150232812)]
  1118. }
  1119. # Implementation of Carey Rappaport's CMRmap.
  1120. # See `A Color Map for Effective Black-and-White Rendering of Color-Scale
  1121. # Images' by Carey Rappaport
  1122. # http://www.mathworks.com/matlabcentral/fileexchange/2662-cmrmap-m
  1123. _CMRmap_data = {'red': ((0.000, 0.00, 0.00),
  1124. (0.125, 0.15, 0.15),
  1125. (0.250, 0.30, 0.30),
  1126. (0.375, 0.60, 0.60),
  1127. (0.500, 1.00, 1.00),
  1128. (0.625, 0.90, 0.90),
  1129. (0.750, 0.90, 0.90),
  1130. (0.875, 0.90, 0.90),
  1131. (1.000, 1.00, 1.00)),
  1132. 'green': ((0.000, 0.00, 0.00),
  1133. (0.125, 0.15, 0.15),
  1134. (0.250, 0.15, 0.15),
  1135. (0.375, 0.20, 0.20),
  1136. (0.500, 0.25, 0.25),
  1137. (0.625, 0.50, 0.50),
  1138. (0.750, 0.75, 0.75),
  1139. (0.875, 0.90, 0.90),
  1140. (1.000, 1.00, 1.00)),
  1141. 'blue': ((0.000, 0.00, 0.00),
  1142. (0.125, 0.50, 0.50),
  1143. (0.250, 0.75, 0.75),
  1144. (0.375, 0.50, 0.50),
  1145. (0.500, 0.15, 0.15),
  1146. (0.625, 0.00, 0.00),
  1147. (0.750, 0.10, 0.10),
  1148. (0.875, 0.50, 0.50),
  1149. (1.000, 1.00, 1.00))}
  1150. # An MIT licensed, colorblind-friendly heatmap from Wistia:
  1151. # https://github.com/wistia/heatmap-palette
  1152. # http://wistia.com/blog/heatmaps-for-colorblindness
  1153. #
  1154. # >>> import matplotlib.colors as c
  1155. # >>> colors = ["#e4ff7a", "#ffe81a", "#ffbd00", "#ffa000", "#fc7f00"]
  1156. # >>> cm = c.LinearSegmentedColormap.from_list('wistia', colors)
  1157. # >>> _wistia_data = cm._segmentdata
  1158. # >>> del _wistia_data['alpha']
  1159. #
  1160. _wistia_data = {
  1161. 'red': [(0.0, 0.8941176470588236, 0.8941176470588236),
  1162. (0.25, 1.0, 1.0),
  1163. (0.5, 1.0, 1.0),
  1164. (0.75, 1.0, 1.0),
  1165. (1.0, 0.9882352941176471, 0.9882352941176471)],
  1166. 'green': [(0.0, 1.0, 1.0),
  1167. (0.25, 0.9098039215686274, 0.9098039215686274),
  1168. (0.5, 0.7411764705882353, 0.7411764705882353),
  1169. (0.75, 0.6274509803921569, 0.6274509803921569),
  1170. (1.0, 0.4980392156862745, 0.4980392156862745)],
  1171. 'blue': [(0.0, 0.47843137254901963, 0.47843137254901963),
  1172. (0.25, 0.10196078431372549, 0.10196078431372549),
  1173. (0.5, 0.0, 0.0),
  1174. (0.75, 0.0, 0.0),
  1175. (1.0, 0.0, 0.0)],
  1176. }
  1177. # Categorical palettes from Vega:
  1178. # https://github.com/vega/vega/wiki/Scales
  1179. # (divided by 255)
  1180. #
  1181. _tab10_data = (
  1182. (0.12156862745098039, 0.4666666666666667, 0.7058823529411765 ), # 1f77b4
  1183. (1.0, 0.4980392156862745, 0.054901960784313725), # ff7f0e
  1184. (0.17254901960784313, 0.6274509803921569, 0.17254901960784313 ), # 2ca02c
  1185. (0.8392156862745098, 0.15294117647058825, 0.1568627450980392 ), # d62728
  1186. (0.5803921568627451, 0.403921568627451, 0.7411764705882353 ), # 9467bd
  1187. (0.5490196078431373, 0.33725490196078434, 0.29411764705882354 ), # 8c564b
  1188. (0.8901960784313725, 0.4666666666666667, 0.7607843137254902 ), # e377c2
  1189. (0.4980392156862745, 0.4980392156862745, 0.4980392156862745 ), # 7f7f7f
  1190. (0.7372549019607844, 0.7411764705882353, 0.13333333333333333 ), # bcbd22
  1191. (0.09019607843137255, 0.7450980392156863, 0.8117647058823529), # 17becf
  1192. )
  1193. _tab20_data = (
  1194. (0.12156862745098039, 0.4666666666666667, 0.7058823529411765 ), # 1f77b4
  1195. (0.6823529411764706, 0.7803921568627451, 0.9098039215686274 ), # aec7e8
  1196. (1.0, 0.4980392156862745, 0.054901960784313725), # ff7f0e
  1197. (1.0, 0.7333333333333333, 0.47058823529411764 ), # ffbb78
  1198. (0.17254901960784313, 0.6274509803921569, 0.17254901960784313 ), # 2ca02c
  1199. (0.596078431372549, 0.8745098039215686, 0.5411764705882353 ), # 98df8a
  1200. (0.8392156862745098, 0.15294117647058825, 0.1568627450980392 ), # d62728
  1201. (1.0, 0.596078431372549, 0.5882352941176471 ), # ff9896
  1202. (0.5803921568627451, 0.403921568627451, 0.7411764705882353 ), # 9467bd
  1203. (0.7725490196078432, 0.6901960784313725, 0.8352941176470589 ), # c5b0d5
  1204. (0.5490196078431373, 0.33725490196078434, 0.29411764705882354 ), # 8c564b
  1205. (0.7686274509803922, 0.611764705882353, 0.5803921568627451 ), # c49c94
  1206. (0.8901960784313725, 0.4666666666666667, 0.7607843137254902 ), # e377c2
  1207. (0.9686274509803922, 0.7137254901960784, 0.8235294117647058 ), # f7b6d2
  1208. (0.4980392156862745, 0.4980392156862745, 0.4980392156862745 ), # 7f7f7f
  1209. (0.7803921568627451, 0.7803921568627451, 0.7803921568627451 ), # c7c7c7
  1210. (0.7372549019607844, 0.7411764705882353, 0.13333333333333333 ), # bcbd22
  1211. (0.8588235294117647, 0.8588235294117647, 0.5529411764705883 ), # dbdb8d
  1212. (0.09019607843137255, 0.7450980392156863, 0.8117647058823529 ), # 17becf
  1213. (0.6196078431372549, 0.8549019607843137, 0.8980392156862745), # 9edae5
  1214. )
  1215. _tab20b_data = (
  1216. (0.2235294117647059, 0.23137254901960785, 0.4745098039215686 ), # 393b79
  1217. (0.3215686274509804, 0.32941176470588235, 0.6392156862745098 ), # 5254a3
  1218. (0.4196078431372549, 0.43137254901960786, 0.8117647058823529 ), # 6b6ecf
  1219. (0.611764705882353, 0.6196078431372549, 0.8705882352941177 ), # 9c9ede
  1220. (0.38823529411764707, 0.4745098039215686, 0.2235294117647059 ), # 637939
  1221. (0.5490196078431373, 0.6352941176470588, 0.3215686274509804 ), # 8ca252
  1222. (0.7098039215686275, 0.8117647058823529, 0.4196078431372549 ), # b5cf6b
  1223. (0.807843137254902, 0.8588235294117647, 0.611764705882353 ), # cedb9c
  1224. (0.5490196078431373, 0.42745098039215684, 0.19215686274509805), # 8c6d31
  1225. (0.7411764705882353, 0.6196078431372549, 0.2235294117647059 ), # bd9e39
  1226. (0.9058823529411765, 0.7294117647058823, 0.3215686274509804 ), # e7ba52
  1227. (0.9058823529411765, 0.796078431372549, 0.5803921568627451 ), # e7cb94
  1228. (0.5176470588235295, 0.23529411764705882, 0.2235294117647059 ), # 843c39
  1229. (0.6784313725490196, 0.28627450980392155, 0.2901960784313726 ), # ad494a
  1230. (0.8392156862745098, 0.3803921568627451, 0.4196078431372549 ), # d6616b
  1231. (0.9058823529411765, 0.5882352941176471, 0.611764705882353 ), # e7969c
  1232. (0.4823529411764706, 0.2549019607843137, 0.45098039215686275), # 7b4173
  1233. (0.6470588235294118, 0.3176470588235294, 0.5803921568627451 ), # a55194
  1234. (0.807843137254902, 0.42745098039215684, 0.7411764705882353 ), # ce6dbd
  1235. (0.8705882352941177, 0.6196078431372549, 0.8392156862745098 ), # de9ed6
  1236. )
  1237. _tab20c_data = (
  1238. (0.19215686274509805, 0.5098039215686274, 0.7411764705882353 ), # 3182bd
  1239. (0.4196078431372549, 0.6823529411764706, 0.8392156862745098 ), # 6baed6
  1240. (0.6196078431372549, 0.792156862745098, 0.8823529411764706 ), # 9ecae1
  1241. (0.7764705882352941, 0.8588235294117647, 0.9372549019607843 ), # c6dbef
  1242. (0.9019607843137255, 0.3333333333333333, 0.050980392156862744), # e6550d
  1243. (0.9921568627450981, 0.5529411764705883, 0.23529411764705882 ), # fd8d3c
  1244. (0.9921568627450981, 0.6823529411764706, 0.4196078431372549 ), # fdae6b
  1245. (0.9921568627450981, 0.8156862745098039, 0.6352941176470588 ), # fdd0a2
  1246. (0.19215686274509805, 0.6392156862745098, 0.32941176470588235 ), # 31a354
  1247. (0.4549019607843137, 0.7686274509803922, 0.4627450980392157 ), # 74c476
  1248. (0.6313725490196078, 0.8509803921568627, 0.6078431372549019 ), # a1d99b
  1249. (0.7803921568627451, 0.9137254901960784, 0.7529411764705882 ), # c7e9c0
  1250. (0.4588235294117647, 0.4196078431372549, 0.6941176470588235 ), # 756bb1
  1251. (0.6196078431372549, 0.6039215686274509, 0.7843137254901961 ), # 9e9ac8
  1252. (0.7372549019607844, 0.7411764705882353, 0.8627450980392157 ), # bcbddc
  1253. (0.8549019607843137, 0.8549019607843137, 0.9215686274509803 ), # dadaeb
  1254. (0.38823529411764707, 0.38823529411764707, 0.38823529411764707 ), # 636363
  1255. (0.5882352941176471, 0.5882352941176471, 0.5882352941176471 ), # 969696
  1256. (0.7411764705882353, 0.7411764705882353, 0.7411764705882353 ), # bdbdbd
  1257. (0.8509803921568627, 0.8509803921568627, 0.8509803921568627 ), # d9d9d9
  1258. )
  1259. datad = {
  1260. 'Blues': _Blues_data,
  1261. 'BrBG': _BrBG_data,
  1262. 'BuGn': _BuGn_data,
  1263. 'BuPu': _BuPu_data,
  1264. 'CMRmap': _CMRmap_data,
  1265. 'GnBu': _GnBu_data,
  1266. 'Greens': _Greens_data,
  1267. 'Greys': _Greys_data,
  1268. 'OrRd': _OrRd_data,
  1269. 'Oranges': _Oranges_data,
  1270. 'PRGn': _PRGn_data,
  1271. 'PiYG': _PiYG_data,
  1272. 'PuBu': _PuBu_data,
  1273. 'PuBuGn': _PuBuGn_data,
  1274. 'PuOr': _PuOr_data,
  1275. 'PuRd': _PuRd_data,
  1276. 'Purples': _Purples_data,
  1277. 'RdBu': _RdBu_data,
  1278. 'RdGy': _RdGy_data,
  1279. 'RdPu': _RdPu_data,
  1280. 'RdYlBu': _RdYlBu_data,
  1281. 'RdYlGn': _RdYlGn_data,
  1282. 'Reds': _Reds_data,
  1283. 'Spectral': _Spectral_data,
  1284. 'Wistia': _wistia_data,
  1285. 'YlGn': _YlGn_data,
  1286. 'YlGnBu': _YlGnBu_data,
  1287. 'YlOrBr': _YlOrBr_data,
  1288. 'YlOrRd': _YlOrRd_data,
  1289. 'afmhot': _afmhot_data,
  1290. 'autumn': _autumn_data,
  1291. 'binary': _binary_data,
  1292. 'bone': _bone_data,
  1293. 'brg': _brg_data,
  1294. 'bwr': _bwr_data,
  1295. 'cool': _cool_data,
  1296. 'coolwarm': _coolwarm_data,
  1297. 'copper': _copper_data,
  1298. 'cubehelix': _cubehelix_data,
  1299. 'flag': _flag_data,
  1300. 'gist_earth': _gist_earth_data,
  1301. 'gist_gray': _gist_gray_data,
  1302. 'gist_heat': _gist_heat_data,
  1303. 'gist_ncar': _gist_ncar_data,
  1304. 'gist_rainbow': _gist_rainbow_data,
  1305. 'gist_stern': _gist_stern_data,
  1306. 'gist_yarg': _gist_yarg_data,
  1307. 'gnuplot': _gnuplot_data,
  1308. 'gnuplot2': _gnuplot2_data,
  1309. 'gray': _gray_data,
  1310. 'hot': _hot_data,
  1311. 'hsv': _hsv_data,
  1312. 'jet': _jet_data,
  1313. 'nipy_spectral': _nipy_spectral_data,
  1314. 'ocean': _ocean_data,
  1315. 'pink': _pink_data,
  1316. 'prism': _prism_data,
  1317. 'rainbow': _rainbow_data,
  1318. 'seismic': _seismic_data,
  1319. 'spring': _spring_data,
  1320. 'summer': _summer_data,
  1321. 'terrain': _terrain_data,
  1322. 'winter': _winter_data,
  1323. # Qualitative
  1324. 'Accent': {'listed': _Accent_data},
  1325. 'Dark2': {'listed': _Dark2_data},
  1326. 'Paired': {'listed': _Paired_data},
  1327. 'Pastel1': {'listed': _Pastel1_data},
  1328. 'Pastel2': {'listed': _Pastel2_data},
  1329. 'Set1': {'listed': _Set1_data},
  1330. 'Set2': {'listed': _Set2_data},
  1331. 'Set3': {'listed': _Set3_data},
  1332. 'tab10': {'listed': _tab10_data},
  1333. 'tab20': {'listed': _tab20_data},
  1334. 'tab20b': {'listed': _tab20b_data},
  1335. 'tab20c': {'listed': _tab20c_data},
  1336. }