Differences between revisions 1 and 8 (spanning 7 versions)
Revision 1 as of 2010-01-10 18:26:37
Size: 103
Comment:
Revision 8 as of 2010-01-11 14:38:57
Size: 731
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
Temperaturprofile: http://airs.jpl.nasa.gov/data_products/geophysical_products_data/temperature/ AIRS Temperaturprofile: [[http://disc.gsfc.nasa.gov/AIRS/ | AIRS]]

Hilfreiche Links:

[[http://disc.sci.gsfc.nasa.gov/AIRS/documentation/v5_docs/AIRS_V5_Release_User_Docs/V5_L3_QuickStart.pdf | Documentation]]

[[ftp://acdisc.gsfc.nasa.gov/ftp/data/s4pa/Aqua_AIRS_Level3/AIRX3STD.005 | 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}}}

Temperaturprofile: AIRS

Hilfreiche Links:

Documentation

Ftp

   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

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