You can subscribe to this list here.
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(115) |
Aug
(120) |
Sep
(137) |
Oct
(170) |
Nov
(461) |
Dec
(263) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
(120) |
Feb
(74) |
Mar
(35) |
Apr
(74) |
May
(245) |
Jun
(356) |
Jul
(240) |
Aug
(115) |
Sep
(78) |
Oct
(225) |
Nov
(98) |
Dec
(271) |
2009 |
Jan
(132) |
Feb
(84) |
Mar
(74) |
Apr
(56) |
May
(90) |
Jun
(79) |
Jul
(83) |
Aug
(296) |
Sep
(214) |
Oct
(76) |
Nov
(82) |
Dec
(66) |
2010 |
Jan
(46) |
Feb
(58) |
Mar
(51) |
Apr
(77) |
May
(58) |
Jun
(126) |
Jul
(128) |
Aug
(64) |
Sep
(50) |
Oct
(44) |
Nov
(48) |
Dec
(54) |
2011 |
Jan
(68) |
Feb
(52) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
|
|
1
|
2
(3) |
3
(7) |
4
(7) |
5
(9) |
6
(6) |
7
|
8
(2) |
9
|
10
|
11
|
12
(8) |
13
(5) |
14
(3) |
15
(1) |
16
(2) |
17
(4) |
18
(4) |
19
|
20
|
21
(3) |
22
(2) |
23
|
24
(1) |
25
|
26
|
27
|
28
(1) |
29
|
30
|
31
|
|
|
|
|
|
Revision: 8871 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8871&view=rev Author: jdh2358 Date: 2011年01月02日 22:46:13 +0000 (2011年1月02日) Log Message: ----------- added freestanding dist support for sample_data Added Paths: ----------- trunk/sample_data/MANIFEST.in trunk/sample_data/README.txt trunk/sample_data/setup.py Added: trunk/sample_data/MANIFEST.in =================================================================== --- trunk/sample_data/MANIFEST.in (rev 0) +++ trunk/sample_data/MANIFEST.in 2011年01月02日 22:46:13 UTC (rev 8871) @@ -0,0 +1,5 @@ +include *.png *.jpg *.csv *.dat *.npy *.xrc *.ima +include setup.py MANIFEST.in MANIFEST +recursive-include axes_grid * +recursive-include testdir * + Added: trunk/sample_data/README.txt =================================================================== --- trunk/sample_data/README.txt (rev 0) +++ trunk/sample_data/README.txt 2011年01月02日 22:46:13 UTC (rev 8871) @@ -0,0 +1,2 @@ +This is the sample data needed for some of matplotlib's examples and +docs. See matplotlib.cbook.get_sample_data for more info. Added: trunk/sample_data/setup.py =================================================================== --- trunk/sample_data/setup.py (rev 0) +++ trunk/sample_data/setup.py 2011年01月02日 22:46:13 UTC (rev 8871) @@ -0,0 +1,9 @@ +from distutils.core import setup + +setup(name='mpl_sampledata', + version='1.0.1rc', + description='matplotlib sample data', + author='John Hunter', + author_email='jd...@gm...', + url='http://matplotlib.sf.net', + ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 8870 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8870&view=rev Author: jdh2358 Date: 2011年01月02日 17:53:33 +0000 (2011年1月02日) Log Message: ----------- bumped version number to 1.0.1rc Modified Paths: -------------- branches/v1_0_maint/lib/matplotlib/__init__.py Modified: branches/v1_0_maint/lib/matplotlib/__init__.py =================================================================== --- branches/v1_0_maint/lib/matplotlib/__init__.py 2011年01月02日 15:09:27 UTC (rev 8869) +++ branches/v1_0_maint/lib/matplotlib/__init__.py 2011年01月02日 17:53:33 UTC (rev 8870) @@ -99,7 +99,7 @@ """ from __future__ import generators -__version__ = '1.0.0' +__version__ = '1.0.1rc1' __revision__ = '$Revision$' __date__ = '$Date$' This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 8869 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8869&view=rev Author: jswhit Date: 2011年01月02日 15:09:27 +0000 (2011年1月02日) Log Message: ----------- move center of map show contintents filled correctly Modified Paths: -------------- trunk/toolkits/basemap/examples/wiki_example.py Modified: trunk/toolkits/basemap/examples/wiki_example.py =================================================================== --- trunk/toolkits/basemap/examples/wiki_example.py 2010年12月30日 16:14:19 UTC (rev 8868) +++ trunk/toolkits/basemap/examples/wiki_example.py 2011年01月02日 15:09:27 UTC (rev 8869) @@ -4,13 +4,13 @@ # set up orthographic map projection with # perspective of satellite looking down at 50N, 100W. # use low resolution coastlines. -map = Basemap(projection='ortho',lat_0=50,lon_0=-100,resolution='l') +map = Basemap(projection='ortho',lat_0=45,lon_0=-100,resolution='l') # draw coastlines, country boundaries, fill continents. map.drawcoastlines(linewidth=0.25) map.drawcountries(linewidth=0.25) -map.fillcontinents(color='coral') +map.fillcontinents(color='coral',lake_color='aqua') # draw the edge of the map projection region (the projection limb) -map.drawmapboundary() +map.drawmapboundary(fill_color='aqua') # draw lat/lon grid lines every 30 degrees. map.drawmeridians(np.arange(0,360,30)) map.drawparallels(np.arange(-90,90,30)) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.