with projection=aeqd, width has no effect

When I generate a map with the aeqd projection, the width parameter has no
effect. This looks like a bug.

···

--
View this message in context: http://old.nabble.com/with-projection%3Daeqd%2C-width-has-no-effect-tp27302405p27302405.html
Sent from the matplotlib - devel mailing list archive at Nabble.com.

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

Jeff Whitaker wrote:

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

I specified width but not height. I'm not sure how the code should behave under those conditions, but in any case this was my fault.

Thanks!

Phillip