SF.net SVN: matplotlib:[6500] trunk/toolkits/basemap/lib/mpl_toolkits/ basemap/__init__.py
Revision: 6500 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6500&view=rev Author: jswhit Date: 2008-12-06 14:35:51 + (Sat, 06 Dec 2008) Log Message: --- updated blue marble URL Modified Paths: -- trunk/toolkits/basemap/lib/mpl_toolkits/basemap/__init__.py Modified: trunk/toolkits/basemap/lib/mpl_toolkits/basemap/__init__.py === --- trunk/toolkits/basemap/lib/mpl_toolkits/basemap/__init__.py 2008-12-05 21:09:42 UTC (rev 6499) +++ trunk/toolkits/basemap/lib/mpl_toolkits/basemap/__init__.py 2008-12-06 14:35:51 UTC (rev 6500) @@ -3167,7 +3167,7 @@ Specified image must have pixels covering the whole globe in a regular lat/lon grid, starting and -180W and the South Pole. Works with the global images from - http://earthobservatory.nasa.gov/Newsroom/BlueMarble/BlueMarble_monthlies.html. + http://earthobservatory.nasa.gov/Features/BlueMarble/BlueMarble_monthlies.php. Extra keyword ``ax`` can be used to override the default axis instance. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. -- SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada. The future of the web can't happen without you. Join us at MIX09 to help pave the way to the Next Web now. Learn more and register at http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/ ___ Matplotlib-checkins mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins
SF.net SVN: matplotlib:[6501] trunk/toolkits/basemap/examples/warpimage.py
Revision: 6501
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6501&view=rev
Author: jswhit
Date: 2008-12-06 14:36:35 + (Sat, 06 Dec 2008)
Log Message:
---
update blue marble URL
Modified Paths:
--
trunk/toolkits/basemap/examples/warpimage.py
Modified: trunk/toolkits/basemap/examples/warpimage.py
===
--- trunk/toolkits/basemap/examples/warpimage.py2008-12-06 14:35:51 UTC
(rev 6500)
+++ trunk/toolkits/basemap/examples/warpimage.py2008-12-06 14:36:35 UTC
(rev 6501)
@@ -66,7 +66,7 @@
# define orthographic projection centered on Europe.
m = Basemap(projection='ortho',lat_0=40,lon_0=40,resolution='l')
# plot a gray-scale image specified from a URL.
-im =
m.warpimage("http://earthobservatory.nasa.gov/Newsroom/BlueMarble/Images/gebco_bathy.5400x2700.jpg";)
+im =
m.warpimage("http://earthobservatory.nasa.gov/Features/BlueMarble/Images/gebco_bathy.5400x2700.jpg";)
# draw coastlines.
m.drawcoastlines(linewidth=0.5,color='0.5')
# draw lat/lon grid lines every 30 degrees.
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you. Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
___
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins
SF.net SVN: matplotlib:[6502] trunk/matplotlib
Revision: 6502
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6502&view=rev
Author: leejjoon
Date: 2008-12-06 23:17:10 + (Sat, 06 Dec 2008)
Log Message:
---
Fixed a small bug in svg backend
Modified Paths:
--
trunk/matplotlib/CHANGELOG
trunk/matplotlib/lib/matplotlib/backends/backend_svg.py
Modified: trunk/matplotlib/CHANGELOG
===
--- trunk/matplotlib/CHANGELOG 2008-12-06 14:36:35 UTC (rev 6501)
+++ trunk/matplotlib/CHANGELOG 2008-12-06 23:17:10 UTC (rev 6502)
@@ -1,3 +1,6 @@
+2008-12-06 Fixed a bug in svg backend that new_figure_manager()
+ ignores keywords arguments such as figsize, etc. -JJL
+
2008-12-05 Fixed a bug that the handlelength of the new legend class
set too short when numpoints=1 -JJL
Modified: trunk/matplotlib/lib/matplotlib/backends/backend_svg.py
===
--- trunk/matplotlib/lib/matplotlib/backends/backend_svg.py 2008-12-06
14:36:35 UTC (rev 6501)
+++ trunk/matplotlib/lib/matplotlib/backends/backend_svg.py 2008-12-06
23:17:10 UTC (rev 6502)
@@ -27,7 +27,7 @@
def new_figure_manager(num, *args, **kwargs):
FigureClass = kwargs.pop('FigureClass', Figure)
-thisFig = FigureClass(*args)
+thisFig = FigureClass(*args, **kwargs)
canvas = FigureCanvasSVG(thisFig)
manager = FigureManagerSVG(canvas, num)
return manager
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you. Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
___
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins
