[Matplotlib-users] Contoured basemap

2011-01-20 Thread R. Mitra
Hi I have a set of records with known lat long. I want to show the concentration of the records with a contour diagram on a world map in any projection. It cannot spill over to the oceans. I know I have to use basemap. Is there a quick recipe somewhere I can follow to give me a desir

[Matplotlib-users] error: command 'gcc-4.0' failed with exit status 1

2009-11-02 Thread R. Mitra
gt; That command will check dependencies before building, indicating > what is needed. > > If some dependencies are not met, I suggest to use a package > manager to install them. I use Fink on OS 10.4.11 with no problem, > but I am still at Python 2.5 running matplotlib 1.0.svn . &g

[Matplotlib-users] Installing problems

2009-11-02 Thread R. Mitra
Hello Again Since I got no replies for my last question and figuring that it must be a problem with numpy (as Eric pointed out) I now have running python 2.6.4 and numpy 1.3.0 on OSX 10.4.11. Is there a need to uninstall previous matplotlib and reinstall it again? This page sounds pr

Re: [Matplotlib-users] Contourf( )

2009-11-02 Thread R. Mitra
ons import pmag import matplotlib matplotlib.use("TkAgg") import numpy as np import matplotlib.pyplot as plt Thanks a lot for all your help. Mitra On Nov 1, 2009, at 11:32 PM, Eric Firing wrote: > R. Mitra wrote: >> Hi Eric >> from math import * >> import matplotl

[Matplotlib-users] Contourf( )

2009-11-01 Thread R. Mitra
Hi I am having problems with contourf(). Suppose I have two 10X30 arrays X,Y and a corresponding Z value array. How do I make the upper left to be the origin? I cannot use contour (Z,origin='upper') because the axis values gets messed up. Thanks Mitra --