|
From: <js...@us...> - 2008-07-13 13:18:17
|
Revision: 5759
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5759&view=rev
Author: jswhit
Date: 2008-07-13 06:18:16 -0700 (Sun, 13 Jul 2008)
Log Message:
-----------
update
Modified Paths:
--------------
trunk/toolkits/basemap/doc/users/figures/poly.py
Modified: trunk/toolkits/basemap/doc/users/figures/poly.py
===================================================================
--- trunk/toolkits/basemap/doc/users/figures/poly.py 2008-07-13 13:03:48 UTC (rev 5758)
+++ trunk/toolkits/basemap/doc/users/figures/poly.py 2008-07-13 13:18:16 UTC (rev 5759)
@@ -1,12 +1,12 @@
from mpl_toolkits.basemap import Basemap
import numpy as np
import matplotlib.pyplot as plt
-# setup lccconic basemap
+# setup polyconic basemap
# by specifying lat/lon corners and central point.
# area_thresh=1000 means don't plot coastline features less
# than 1000 km^2 in area.
m = Basemap(llcrnrlon=-35.,llcrnrlat=-30,urcrnrlon=80.,urcrnrlat=50.,\
- resolution='l',area_thresh=1000.,projection='lcc',\
+ resolution='l',area_thresh=1000.,projection='poly',\
lat_0=0.,lon_0=20.)
m.drawcoastlines()
m.fillcontinents(color='coral',lake_color='aqua')
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|