Size: 731
Comment:
|
Size: 731
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 9: | Line 9: |
{{{!#python | {{{#!python |
Temperaturprofile: AIRS
Hilfreiche Links:
1 from pyhdf import SD
2 from pylab import *
3 from mpl_toolkits.basemap import Basemap
4
5 fid=SD.SD('AIRS.2003.03.30.L3.RetStd001.v5.0.14.0.G07215021620.hdf')
6 T=fid.select('Temperature_A')
7 Temp=T.get()
8
9 #Bild
10 imshow(Temp[0,0:90,130:180],vmin=170,vmax=300)
11 colorbar()
12
13 #Basemap
14 m = Basemap(projection='ortho',lon_0=0.0,lat_0=75.0,resolution='l')
15 m.bluemarble()
16
17 #PLOTBEFEHL FEHLT NOCH - Drucklevels auslesen