On 11 November 2010 12:33, Andres Luhamaa <andresluha...@gmail.com> wrote:
> I have a problem creating map in "aeqd" projection. The problem seems to be
> that the map center, given by arguments lon_0 and lat_0 is taking into
> account only full part of the coordinate. If I want to get map center at
> coordinates lon_0=25.5 and lat_0=58.5, I get center in lon_0=25 and
> lat_0=58, instead. I run numpy and matplotlib dev versions (a few weeks old)
> and basemap 1.0

Your script works fine for me, using the Qt4Agg backend (see
http://imgur.com/bCPfy.png)

You can determine which backend and Matplotlib/Basemap versions are
being used on your computer if you include the following in your
script:

import matplotlib as mpl
from mpl_toolkits import basemap

print mpl.get_backend()
print mpl.__version__
print basemap.__version__

Cheers,
Scott

------------------------------------------------------------------------------
Centralized Desktop Delivery: Dell and VMware Reference Architecture
Simplifying enterprise desktop deployment and management using
Dell EqualLogic storage and VMware View: A highly scalable, end-to-end
client virtualization framework. Read more!
http://p.sf.net/sfu/dell-eql-dev2dev
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to