From: Jeff W. <js...@fa...> - 2010-01-25 13:58:33
|
Dr. Phillip M. Feldman wrote: > When I generate a map with the aeqd projection, the width parameter has no > effect. This looks like a bug. > Philip: I don't see this. Here's an example, does this fail for you? lon_0=-105; lat_0=40 width=4000.e3 height=4000.e3 m =\ Basemap(resolution='c',projection='aeqd',lat_0=lat_0,lon_0=lon_0,width=width,height=height) m.drawcoastlines(linewidth=0.5) m.fillcontinents() plt.show() -Jeff |