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