Hi,

On 4 March 2010 08:00, ping <[email protected]> wrote:

> I'm trying to read TRMM precipitation data from a binary file that I
> donwloaded from NASA's web site. The information I have about the file
> is:
>

The easiest way is using using numpy
trmm_data = (numpy.fromfile ( TRMM_file, dtype=numpy.float32,
count=480*1440).byteswap()).reshape((480,1440))

(you may not need byteswap() if you're on a SUN architecture).

Jose

Reply via email to