|
From: <lee...@us...> - 2009-12-22 19:49:58
|
Revision: 8051
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8051&view=rev
Author: leejjoon
Date: 2009-12-22 19:49:49 +0000 (Tue, 22 Dec 2009)
Log Message:
-----------
Fix cmap data for gist_earth_r, etc.
Modified Paths:
--------------
trunk/matplotlib/CHANGELOG
trunk/matplotlib/lib/matplotlib/_cm.py
Modified: trunk/matplotlib/CHANGELOG
===================================================================
--- trunk/matplotlib/CHANGELOG 2009-12-22 17:03:29 UTC (rev 8050)
+++ trunk/matplotlib/CHANGELOG 2009-12-22 19:49:49 UTC (rev 8051)
@@ -1,3 +1,5 @@
+2009-12-22 Fix cmap data for gist_earth_r, etc. -JJL
+
2009-12-20 spines: put spines in data coordinates, add set_bounds()
call. -ADS
Modified: trunk/matplotlib/lib/matplotlib/_cm.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/_cm.py 2009-12-22 17:03:29 UTC (rev 8050)
+++ trunk/matplotlib/lib/matplotlib/_cm.py 2009-12-22 19:49:49 UTC (rev 8051)
@@ -1434,7 +1434,7 @@
(0.5490, 0.4719, 0.4719),
(0.6980, 0.7176, 0.7176),
(0.7882, 0.7553, 0.7553),
-(1.0000, 0.9922, 0),
+(1.0000, 0.9922, 0.9922),
), 'green': (
(0.0, 0.0, 0.0000),
(0.0275, 0.0000, 0.0000),
@@ -1458,7 +1458,7 @@
(0.9569, 0.8635, 0.8635),
(0.9647, 0.8816, 0.8816),
(0.9961, 0.9733, 0.9733),
-(1.0000, 0.9843, 0),
+(1.0000, 0.9843, 0.9843),
), 'blue': (
(0.0, 0.0, 0.0000),
(0.0039, 0.1684, 0.1684),
@@ -1470,7 +1470,7 @@
(0.5451, 0.3205, 0.3205),
(0.7843, 0.3961, 0.3961),
(0.8941, 0.6651, 0.6651),
-(1.0000, 0.9843, 0),
+(1.0000, 0.9843, 0.9843),
)}
_gist_gray_data = {
@@ -1495,7 +1495,7 @@
(0.7922, 1.0000, 1.0000),
(0.8471, 0.6218, 0.6218),
(0.8980, 0.9235, 0.9235),
-(1.0000, 0.9961, 0),
+(1.0000, 0.9961, 0.9961),
), 'green': (
(0.0, 0.0, 0.0000),
(0.0510, 0.3722, 0.3722),
@@ -1516,9 +1516,9 @@
(0.7922, 0.0000, 0.0000),
(0.8431, 0.1753, 0.1753),
(0.8980, 0.5000, 0.5000),
-(1.0000, 0.9725, 0),
+(1.0000, 0.9725, 0.9725),
), 'blue': (
-(0.0, 0.0, 0.5020),
+(0.0, 0.5020, 0.5020),
(0.0510, 0.0222, 0.0222),
(0.1098, 1.0000, 1.0000),
(0.2039, 1.0000, 1.0000),
@@ -1535,7 +1535,7 @@
(0.8000, 1.0000, 1.0000),
(0.8431, 1.0000, 1.0000),
(0.8980, 0.9341, 0.9341),
-(1.0000, 0.9961, 0),
+(1.0000, 0.9961, 0.9961),
)}
_gist_rainbow_data = (
@@ -1552,7 +1552,7 @@
_gist_stern_data = {
'red': (
(0.000, 0.000, 0.000), (0.0547, 1.000, 1.000),
- (0.250, 0.027, 0.027), (0.2500, 0.250, 0.250),
+ (0.250, 0.027, 0.250), #(0.2500, 0.250, 0.250),
(1.000, 1.000, 1.000)),
'green': ((0, 0, 0), (1, 1, 0)),
'blue': (
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|