Revision: 5373
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5373&view=rev
Author:   jswhit
Date:     2008-06-03 09:40:52 -0700 (Tue, 03 Jun 2008)

Log Message:
-----------
forgot to plot circles in last plot (bluemarble background)

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

Modified: trunk/toolkits/basemap/examples/wiki_example.py
===================================================================
--- trunk/toolkits/basemap/examples/wiki_example.py     2008-06-03 13:36:33 UTC 
(rev 5372)
+++ trunk/toolkits/basemap/examples/wiki_example.py     2008-06-03 16:40:52 UTC 
(rev 5373)
@@ -42,6 +42,8 @@
 map.drawmapboundary()
 map.drawmeridians(np.arange(0,360,30))
 map.drawparallels(np.arange(-90,90,30))
+# plot filled circles at the locations of the cities.
+map.plot(xc,yc,'wo')
 # plot the names of five cities.
 for name,xpt,ypt in zip(cities,xc,yc):
     plt.text(xpt+50000,ypt+50000,name,fontsize=9,color='w')


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 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Matplotlib-checkins mailing list
Matplotlib-checkins@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to