From: <js...@us...> - 2007-11-01 16:25:00
|
Revision: 4091 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4091&view=rev Author: jswhit Date: 2007-11-01 09:24:53 -0700 (Thu, 01 Nov 2007) Log Message: ----------- cleanup Modified Paths: -------------- trunk/toolkits/basemap-testing/lib/matplotlib/toolkits/basemap/basemap.py Modified: trunk/toolkits/basemap-testing/lib/matplotlib/toolkits/basemap/basemap.py =================================================================== --- trunk/toolkits/basemap-testing/lib/matplotlib/toolkits/basemap/basemap.py 2007-11-01 15:17:24 UTC (rev 4090) +++ trunk/toolkits/basemap-testing/lib/matplotlib/toolkits/basemap/basemap.py 2007-11-01 16:24:53 UTC (rev 4091) @@ -747,14 +747,14 @@ if area < 0.: area = 1.e30 useit = self.latmax>=south and self.latmin<=north and area>self.area_thresh # skip Antartica for now. + #if south < -68: useit = False if useit: offsetbytes = int(linesplit[4]) bytecount = int(linesplit[5]) bdatfile.seek(offsetbytes,0) polystring = bdatfile.read(bytecount) poly = wkb.loads(polystring) - # close Antarctica for cylindrical projections - + # close Antartica for cylindrical projections. if name == 'gshhs' and self.projection in ['cyl','merc','mill']: b = npy.asarray(poly.boundary) lons = b[:,0] This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |