Revision: 4356
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4356&view=rev
Author:   jswhit
Date:     2007-11-17 07:17:30 -0800 (Sat, 17 Nov 2007)

Log Message:
-----------
fix orthographic bug

Modified Paths:
--------------
    trunk/toolkits/basemap-testing/lib/matplotlib/toolkits/basemap/basemap.py

Modified: 
trunk/toolkits/basemap-testing/lib/matplotlib/toolkits/basemap/basemap.py
===================================================================
--- trunk/toolkits/basemap-testing/lib/matplotlib/toolkits/basemap/basemap.py   
2007-11-17 14:40:01 UTC (rev 4355)
+++ trunk/toolkits/basemap-testing/lib/matplotlib/toolkits/basemap/basemap.py   
2007-11-17 15:17:30 UTC (rev 4356)
@@ -766,7 +766,8 @@
             containsPole = True
             lon_0=self.projparams['lon_0']
             lat_0=self.projparams['lat_0']
-            maptran = pyproj.Proj(proj='stere',lon_0=lon_0,lat_0=lat_0)
+            re = self.projparams['R']
+            maptran = pyproj.Proj(proj='stere',lon_0=lon_0,lat_0=lat_0,R=re)
             # boundary polygon for orthographic projection
             # in stereographic coorindates.
             b = self._boundarypolyll.boundary


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to