1 | pro tsurf_plotplot |
---|
2 | |
---|
3 | |
---|
4 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
5 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
6 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
7 | file='./diagfi.nc' |
---|
8 | set_name='tsurf' |
---|
9 | it=17 |
---|
10 | iz=1 |
---|
11 | ;iz=0 |
---|
12 | iz=3 |
---|
13 | ;it=4 |
---|
14 | it=18 ;; GCM |
---|
15 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
16 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
17 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
18 | |
---|
19 | SPAWN, 'cp -f tsurf_param_plot.idl param_plot.idl' |
---|
20 | |
---|
21 | ; |
---|
22 | ; graphics definition |
---|
23 | ; |
---|
24 | if (n_elements(saveps) eq 0) then saveps='true' |
---|
25 | if (saveps eq 'false') then begin |
---|
26 | ;!p.multi=[0,3,2] |
---|
27 | !P.CHARSIZE=2. |
---|
28 | WINDOW, /PIXMAP & WDELETE & DEVICE,BYPASS_TRANSLATION=0,DECOMPOSED=0,RETAIN=2 |
---|
29 | endif ;else begin |
---|
30 | ;PREF_SET, 'IDL_PATH', '/padata/beta/users/aspiga/Save/SOURCES/IDL/fsc_psconfig:<IDL_DEFAULT>', /COMMIT |
---|
31 | ;endelse |
---|
32 | |
---|
33 | |
---|
34 | ;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
35 | getcdf, file=file, charvar='tsurf', invar=tsurf |
---|
36 | getcdf, file=file, charvar='ps', invar=ps |
---|
37 | ox = getget_gcm(file, 'u', count=[0,0,1,1], offset=[0,0,iz,it]) |
---|
38 | oy = getget_gcm(file, 'v', count=[0,0,1,1], offset=[0,0,iz,it]) |
---|
39 | ;getcdf, file=file, charvar='u' , invar=u |
---|
40 | ;getcdf, file=file, charvar='v' , invar=v |
---|
41 | ;getcdf, file=file, charvar='lon' , invar=lon |
---|
42 | ;getcdf, file=file, charvar='lat' , invar=lat |
---|
43 | getcdf, file=file, charvar='longitude' , invar=lon |
---|
44 | getcdf, file=file, charvar='latitude' , invar=lat |
---|
45 | ;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
46 | |
---|
47 | |
---|
48 | |
---|
49 | ;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
50 | ;what_I_plot = reform(tsurf(*,*,it)) |
---|
51 | oc = reform(ps(*,*,it)) |
---|
52 | ;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
53 | what_I_plot = sqrt(ox^2 + oy^2) |
---|
54 | ;what_I_plot = sqrt(oy^2) |
---|
55 | print, min(what_I_plot) |
---|
56 | print, mean(what_I_plot) |
---|
57 | print, max(what_I_plot) |
---|
58 | |
---|
59 | ;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
60 | if (saveps eq 'true') then PS_Start, FILENAME=set_name+'.ps' |
---|
61 | !P.Charsize = 1.2 |
---|
62 | map_latlon, what_I_plot, lon, lat, overcontour=oc, overvector_x=ox, overvector_y=oy |
---|
63 | if (saveps eq 'true') then PS_End, /PNG |
---|
64 | ;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
65 | |
---|
66 | |
---|
67 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
68 | ;cmd='cp plotplot.pro '+set_name+'_plotplot.pro ; cp param_plot.idl '+set_name+'_param_plot.idl' |
---|
69 | ;SPAWN, cmd |
---|
70 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
71 | |
---|
72 | |
---|
73 | end |
---|