basemap and omerc

I think you might be looking for M.plot() rather than plot()??
plot() will just overwrite the basemap in the figure (although
that might be possible to fix with some axis-magic, but that is
far beyond my knowledge of matplotlib).

Cheers
   Tommy

···

On Feb 12, 2008, at 8:39 PM, Evan Mason wrote:

dl = 20000.
nx = int((M.xmax - M.xmin) / dl) + 1
ny = int((M.ymax - M.ymin) / dl) + 1

lonr, latr = M.makegrid(nx, ny)

plot(lonr, latr, 'c.')
show()