source: trunk/MESOSCALE_DEV/PLOT/SPEC/GCM/psurf_plotplot.pro @ 251

Last change on this file since 251 was 85, checked in by aslmd, 14 years ago

LMD_MM_MARS et LMD_LES_MARS: ajout des routines IDL pour tracer les sorties --> voir mesoscale/PLOT

File size: 1.7 KB
Line 
1pro plotplot
2
3
4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7file='hi_res_run_swordfish/3830.002/m4/diagfi.nc'
8set_name='psurf'
9it=0
10iz=1
11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
14
15SPAWN, 'cp psurf_param_plot.idl param_plot.idl'
16
17        ;
18        ; graphics definition
19        ;
20        if (n_elements(saveps) eq 0) then saveps='true'
21        if (saveps eq 'false') then begin
22           ;!p.multi=[0,3,2]
23           !P.CHARSIZE=2.
24           WINDOW, /PIXMAP & WDELETE & DEVICE,BYPASS_TRANSLATION=0,DECOMPOSED=0,RETAIN=2
25        endif else begin
26           PREF_SET, 'IDL_PATH', '/padata/beta/users/aspiga/Save/SOURCES/IDL/fsc_psconfig:<IDL_DEFAULT>', /COMMIT
27        endelse
28
29
30;;;;;;;;;;;;;;;;;;;;;;;;;;;
31getcdf, file=file, charvar='ps', invar=ps
32getcdf, file=file, charvar='u'    , invar=u
33getcdf, file=file, charvar='v'    , invar=v
34getcdf, file=file, charvar='lon'  , invar=lon
35getcdf, file=file, charvar='lat'  , invar=lat
36;;;;;;;;;;;;;;;;;;;;;;;;;;;
37
38
39;;;;;;;;;;;;;;;;;;;;;;;;;;;
40what_I_plot = reform(ps(*,*,it))
41ox          = reform(u(*,*,iz,it))
42oy          = reform(v(*,*,iz,it))
43;;;;;;;;;;;;;;;;;;;;;;;;;;;
44
45
46;;;;;;;;;;;;;;;;;;;;;;;;;;;
47        if (saveps eq 'true') then PS_Start, FILENAME=set_name+'.ps'
48        !P.Charsize = 1.2
49map_latlon, what_I_plot, lon, lat, overvector_x=ox, overvector_y=oy
50        if (saveps eq 'true') then PS_End, /PNG
51;;;;;;;;;;;;;;;;;;;;;;;;;;;
52
53
54;;;;;;;;;;;;;;;;;;;;;;;;;;;
55cmd='cp plotplot.pro '+set_name+'_plotplot.pro ; cp param_plot.idl '+set_name+'_param_plot.idl'
56SPAWN, cmd
57;;;;;;;;;;;;;;;;;;;;;;;;;;;
58
59
60end
Note: See TracBrowser for help on using the repository browser.