Differences between revisions 6 and 7
Revision 6 as of 2010-01-11 13:34:21
Size: 296
Comment:
Revision 7 as of 2010-01-11 14:38:15
Size: 731
Comment:
Deletions are marked like this. Additions are marked like this.
Line 8: Line 8:

{{{!#python
from pyhdf import SD
from pylab import *
from mpl_toolkits.basemap import Basemap

fid=SD.SD('AIRS.2003.03.30.L3.RetStd001.v5.0.14.0.G07215021620.hdf')
T=fid.select('Temperature_A')
Temp=T.get()

#Bild
imshow(Temp[0,0:90,130:180],vmin=170,vmax=300)
colorbar()

#Basemap
m = Basemap(projection='ortho',lon_0=0.0,lat_0=75.0,resolution='l')
m.bluemarble()

#PLOTBEFEHL FEHLT NOCH - Drucklevels auslesen}}}

Temperaturprofile: AIRS

Hilfreiche Links:

Documentation

Ftp

{{{!#python from pyhdf import SD from pylab import * from mpl_toolkits.basemap import Basemap

fid=SD.SD('AIRS.2003.03.30.L3.RetStd001.v5.0.14.0.G07215021620.hdf') T=fid.select('Temperature_A') Temp=T.get()

#Bild imshow(Temp[0,0:90,130:180],vmin=170,vmax=300) colorbar()

#Basemap m = Basemap(projection='ortho',lon_0=0.0,lat_0=75.0,resolution='l') m.bluemarble()

#PLOTBEFEHL FEHLT NOCH - Drucklevels auslesen}}}

LehreWiki: OpenSource2010/Project/Project Idea2010/Grenzschichtdicke (last edited 2011-01-17 09:45:59 by anonymous)