Changeset 114 for trunk/mesoscale/PLOT/SPEC/SERIES
- Timestamp:
- Apr 22, 2011, 8:14:18 PM (14 years ago)
- Location:
- trunk/mesoscale/PLOT/SPEC/SERIES
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/mesoscale/PLOT/SPEC/SERIES/mawd.pro
r112 r114 2 2 3 3 ;;;;;;; 4 ;f_user='/donnees/aslmd/SVN/trunk/mesoscale/TMPDIR/GCMINI/mawd.nc' 5 ;f_user='/tmp7/aslmd/mawd.nc' 6 f_user='/d5/aslmd/mawd.nc' 4 experiment='a035' 5 ;experiment='a040' 6 ;experiment='a045' 7 ;;f_user='/donnees/aslmd/SVN/trunk/mesoscale/TMPDIR/GCMINI/mawd.nc' 8 ;;f_user='/tmp7/aslmd/mawd.nc' 9 f_user='/d5/aslmd/WATERCYCLE/mawd_'+experiment+'.nc' 7 10 v_user = 'mtot' 8 11 x_user = 'Time' … … 26 29 SPAWN, '\rm param_plot.idl ; cp mawd_inc.pro param_plot.idl' 27 30 28 PS_START, file='mawd .ps'29 !P.Charsize = 1.230 !p.charthick = 2.031 !p.thick = 2.032 !x.thick = 2.033 !y.thick = 2.031 PS_START, file='mawd_'+experiment+'.ps' 32 ; !P.Charsize = 1.2 33 ; !p.charthick = 2.0 34 ; !p.thick = 2.0 35 ; !x.thick = 2.0 36 ; !y.thick = 2.0 34 37 35 38 cdfid = ncdf_open(f_user) … … 41 44 ncdf_varget, cdfid, varid, yy 42 45 46 varid=ncdf_varid(cdfid,x_user) 47 ncdf_varget, cdfid, varid, xx 48 43 49 if (tes eq 'no') then begin 44 50 ;;; en precip-microns 45 51 champ = champ * 1.e6 / 917. 46 ;;; prendre Time depuis un autre fichier47 cdfid = ncdf_open('/d5/aslmd/gcm_LT14_a035.nc')48 varid=ncdf_varid(cdfid,x_user)49 ncdf_varget, cdfid, varid, xx50 52 ;;;; entre 0 et 360 51 53 ;xx = xx MOD 360 54 xx = xx - 360.*3. 52 55 endif else begin 53 varid=ncdf_varid(cdfid,x_user)54 ncdf_varget, cdfid, varid, xx55 56 xx = xx - 360.*2. 56 57 endelse … … 76 77 endif 77 78 79 what_I_plot = smooth(what_I_plot,[10,1]) 80 78 81 map_latlon, $ 79 82 what_I_plot, $ ; 2D field -
trunk/mesoscale/PLOT/SPEC/SERIES/mawd_inc.pro
r112 r114 8 8 format = '(I0)' 9 9 colors = 32 10 pal = 22;4;33 ;; GOOD: 4, 18, 22, 16, 37, 33, 39, 6, 1110 pal = 33;22;4;33 ;; GOOD: 4, 18, 22, 16, 37, 33, 39, 6, 11 11 11 12 12 ;;;;;*************************************** FILL LIMITS 13 13 minfield_init = 0. 14 maxfield_init = 65.15 ndiv = 1 314 maxfield_init = 100. ;120. ;65. 15 ndiv = 10 ;12 ;13 16 16 17 17 ;;;;;*************************************** LIMIT TRICKS … … 20 20 lim_max = maxfield_init & w=where((what_I_plot ge lim_max) and (what_I_plot le 1e9)) & if (w[0] ne -1) then what_I_plot[w]=lim_max 21 21 lim_min = minfield_init & w=where(what_I_plot le lim_min) & if (w[0] ne -1) then what_I_plot[w]=lim_min 22 ;lim_blank = 0.1& w=where(abs(what_I_plot) le lim_blank) & if (w[0] ne -1) then what_I_plot[w]=missing_value22 lim_blank = 1.0 & w=where(abs(what_I_plot) le lim_blank) & if (w[0] ne -1) then what_I_plot[w]=missing_value 23 23 24 24 ;;;;;*************************************** CONTOUR … … 38 38 ;;;;; MULTIYEAR 39 39 isotropic = 'false' 40 windowx = [ 1500.,4000.]41 intervalx = 500.040 windowx = [0.,2880.] ;[0.,3600.] ;[1500.,4000.] 41 intervalx = 360.0 42 42 windowy = [-90.,90.] 43 43 intervaly = 30.0 44 lev = [ 100.]44 lev = [600.] ;[100.]
Note: See TracChangeset
for help on using the changeset viewer.