From: <js...@us...> - 2007-11-16 17:09:20
|
Revision: 4339 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4339&view=rev Author: jswhit Date: 2007-11-16 09:09:18 -0800 (Fri, 16 Nov 2007) Log Message: ----------- adjust projection bounds Modified Paths: -------------- trunk/toolkits/basemap-testing/examples/hires.py Modified: trunk/toolkits/basemap-testing/examples/hires.py =================================================================== --- trunk/toolkits/basemap-testing/examples/hires.py 2007-11-16 16:55:40 UTC (rev 4338) +++ trunk/toolkits/basemap-testing/examples/hires.py 2007-11-16 17:09:18 UTC (rev 4339) @@ -7,8 +7,8 @@ # create Basemap instance. Use 'high' resolution coastlines. t1 = time.clock() -m = Basemap(llcrnrlon=-11.,llcrnrlat=49.,urcrnrlon=5.,urcrnrlat=59., - resolution='h',projection='tmerc',lon_0=-8,lat_0=0) +m = Basemap(llcrnrlon=-10.5,llcrnrlat=49.5,urcrnrlon=3.5,urcrnrlat=59.5, + resolution='h',projection='tmerc',lon_0=-4,lat_0=0) # make sure countries and rivers are loaded m.drawcountries() m.drawrivers() This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |