From: <js...@us...> - 2007-11-26 19:14:42
|
Revision: 4455 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4455&view=rev Author: jswhit Date: 2007-11-26 11:14:29 -0800 (Mon, 26 Nov 2007) Log Message: ----------- adjust map projection region Modified Paths: -------------- trunk/toolkits/basemap/examples/fcstmaps.py Modified: trunk/toolkits/basemap/examples/fcstmaps.py =================================================================== --- trunk/toolkits/basemap/examples/fcstmaps.py 2007-11-26 19:08:46 UTC (rev 4454) +++ trunk/toolkits/basemap/examples/fcstmaps.py 2007-11-26 19:14:29 UTC (rev 4455) @@ -84,9 +84,7 @@ t2min = t2mvar[0:ntimes,:,:] t2m = numpy.zeros((ntimes,nlats,nlons+1),t2min.dtype) # create Basemap instance for Orthographic projection. -m = Basemap(lon_0=-105,lat_0=40, - rsphere=6371200., - resolution='c',area_thresh=5000.,projection='ortho') +m = Basemap(lon_0=-90,lat_0=60,projection='ortho') # add wrap-around point in longitude. for nt in range(ntimes): t2m[nt,:,:], lons = addcyclic(t2min[nt,:,:], lons1) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |