Revision: 6720
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6720&view=rev
Author:   jswhit
Date:     2008-12-31 14:41:54 +0000 (Wed, 31 Dec 2008)

Log Message:
-----------
fix bug in fulldisk aeqd, change garp.py example to plot whole disk

Modified Paths:
--------------
    trunk/toolkits/basemap/examples/garp.py

Modified: trunk/toolkits/basemap/examples/garp.py
===================================================================
--- trunk/toolkits/basemap/examples/garp.py     2008-12-31 14:37:44 UTC (rev 
6719)
+++ trunk/toolkits/basemap/examples/garp.py     2008-12-31 14:41:54 UTC (rev 
6720)
@@ -11,20 +11,12 @@
 # it will be to reach that destination.
 # The specified point shows up as a red dot in the center of the map.
 
-# This example shows how to use the width and height keywords
-# to specify the map projection region (instead of specifying
-# the lat/lon of the upper right and lower left corners).
-
 # user enters the lon/lat of the point, and it's name
 lon_0 = float(raw_input('input reference lon (degrees):'))
 lat_0 = float(raw_input('input reference lat (degrees):'))
 location = raw_input('name of location:')
 
-# use these values to setup Basemap instance.
-width = 28000000
-m = Basemap(width=width,height=width,\
-            resolution='c',projection='aeqd',\
-            lat_0=lat_0,lon_0=lon_0)
+m = Basemap(resolution='c',projection='aeqd',lat_0=lat_0,lon_0=lon_0)
 # fill background.
 m.drawmapboundary(fill_color='aqua')
 # draw coasts and fill continents.


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

------------------------------------------------------------------------------
_______________________________________________
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to