|
From: John H. <jdh...@ac...> - 2005-05-28 03:50:49
|
>>>>> "Benyang" == Benyang Tang <ben...@jp...> writes:
Benyang> I have a quick hack of basemap to allow it to draw a
Benyang> great circle passing the map borders. It should work for
Benyang> the cylinder project (i.e., no projection) and a map with
Benyang> longitude -180 to 180.
Benyang> Instruction:
> - Add the following to the top of the file:
> import Numeric as Num
> import MA
I think basemap requires numarray, presumably because of it's
dependence on nd_image, so if I'm not mistaken you example should be
rewritten to use numarray versions of the modules above. Eg,
import numarray as Num
import numarray.ma as MA
and so on...
JDH
|