|
From: <js...@us...> - 2009-08-24 23:14:11
|
Revision: 7560
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7560&view=rev
Author: jswhit
Date: 2009-08-24 22:20:10 +0000 (Mon, 24 Aug 2009)
Log Message:
-----------
make night area darker.
Modified Paths:
--------------
trunk/toolkits/basemap/examples/daynight.py
Modified: trunk/toolkits/basemap/examples/daynight.py
===================================================================
--- trunk/toolkits/basemap/examples/daynight.py 2009-08-24 22:18:05 UTC (rev 7559)
+++ trunk/toolkits/basemap/examples/daynight.py 2009-08-24 22:20:10 UTC (rev 7560)
@@ -81,6 +81,6 @@
x,y = map(lons, lats)
# contour this grid with 1 contour level, specifying color for night areas.
# Use alpha transparency so map shows through.
-CS=map.contourf(x,y,daynight,1,colors=['0.7'],alpha=0.5)
+CS=map.contourf(x,y,daynight,1,colors=['0.5'],alpha=0.5)
plt.title('Day/Night Map for %s (UTC)' %d )
plt.show()
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|