Hi,

On Fri, Jun 12, 2009 at 10:52 AM, JPKay<kay1...@vandals.uidaho.edu> wrote:
> from mpl_toolkits.basemap import Basemap

You have not so far imported mpl_toolkits into the namespace, only
Basemap.  You could do:

import mpl_toolkits.basemap

as another import line, or:

from mpl_toolkits.basemap import Basemap, NetCDFFile

followed by:

ncfile = NetCDFFile(output.nc, ...)

Best,

Matthew

------------------------------------------------------------------------------
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to