[85] | 1 | pro plotplot |
---|
| 2 | |
---|
| 3 | |
---|
| 4 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
| 5 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
| 6 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
| 7 | file='hi_res_run_swordfish/3830.002/m4/diagfi.nc' |
---|
| 8 | set_name='psurf' |
---|
| 9 | it=0 |
---|
| 10 | iz=1 |
---|
| 11 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
| 12 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
| 13 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
| 14 | |
---|
| 15 | SPAWN, '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 | ;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
| 31 | getcdf, file=file, charvar='ps', invar=ps |
---|
| 32 | getcdf, file=file, charvar='u' , invar=u |
---|
| 33 | getcdf, file=file, charvar='v' , invar=v |
---|
| 34 | getcdf, file=file, charvar='lon' , invar=lon |
---|
| 35 | getcdf, file=file, charvar='lat' , invar=lat |
---|
| 36 | ;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
| 37 | |
---|
| 38 | |
---|
| 39 | ;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
| 40 | what_I_plot = reform(ps(*,*,it)) |
---|
| 41 | ox = reform(u(*,*,iz,it)) |
---|
| 42 | oy = 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 |
---|
| 49 | map_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 | ;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
| 55 | cmd='cp plotplot.pro '+set_name+'_plotplot.pro ; cp param_plot.idl '+set_name+'_param_plot.idl' |
---|
| 56 | SPAWN, cmd |
---|
| 57 | ;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
| 58 | |
---|
| 59 | |
---|
| 60 | end |
---|