Changeset 34


Ignore:
Timestamp:
01/15/08 17:48:31 (16 years ago)
Author:
kolasinski
Message:

Add x/ychartxt read from plt_def

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/procs/com_eg.pro

    r20 r34  
    1212; attributs formats + div 
    1313; 
    14 COMMON formats, look, free_1d_minmax, lat_axis, cont_fill, multi_win, atmos_msk, line_thick, line_style, line_color, title_type, fill_space, vector_sample, symbol_style, symbol_color, symbol_families, contour_options, mean_sc_only, nc_grids_list, cont_real, symbol_size 
     14COMMON formats, look, free_1d_minmax, lat_axis, cont_fill, multi_win, atmos_msk, line_thick, line_style, line_color, title_type, fill_space, vector_sample, symbol_style, symbol_color, symbol_families, contour_options, mean_sc_only, nc_grids_list, cont_real, symbol_size, xchartxt, ychartxt 
    1515; 
    1616; attributs couleur 
  • trunk/procs/init_post_it.pro

    r20 r34  
    2121   default_txt_format = 'E' 
    2222   force_all_data_read = 0 
     23   xchartxt = 1.0 
     24   ychartxt = 1.0 
  • trunk/procs/plt_map.pro

    r30 r34  
    631631   IF fill_space EQ 1 THEN filltxt = ',/rempli' 
    632632 
     633; axis charsize option (x/ychartxt read from plt_def) 
     634 
    633635; common command string to plots 
    634636       
    635    com_strplt = ',petit = ['+string(win[0])+','+string(win[1])+','+string(win[2])+']'+filltxt+nocoltxt+',  LANDSCAPE =  '+string(landscape)+', NOCOLORBAR = '+string(nocolorbar)+', NOERASE = '+string(noerase)+look+labstr+c_anot+colbar+cal_typ+',cont_thick=2'+type_yz+window_number+tit_str+xlogax+', /MEMEINDICES' 
     637   com_strplt = ',petit = ['+string(win[0])+','+string(win[1])+','+string(win[2])+']'+filltxt+nocoltxt+',  LANDSCAPE =  '+string(landscape)+', NOCOLORBAR = '+string(nocolorbar)+', NOERASE = '+string(noerase)+look+labstr+c_anot+colbar+cal_typ+',cont_thick=2'+type_yz+window_number+tit_str+xlogax+', xcharsize='+string(xchartxt)+', ycharsize='+string(ychartxt) 
    636638 
    637639; add contour_options not overlay 
  • trunk/usr/plt_def.pro

    r29 r34  
    1616;   box_h = [180,270,-30,30] 
    1717;   box_h = [0,360,-90,90] 
     18;   box_h = [20,380,-30,30] 
    1819   box_h = [20,380,-30,30] 
    19 ;   box_h = [20,380,-45,45] 
    2020;   box_h = [20,380,-90,-50] 
    21 ;   box_h = [20,380,-90,90] 
     21;;   box_h = [20,380,-90,90] 
    2222;   box_h = [20,150,0,30] 
    2323;   box_h = [100,290,-40,40] 
     
    141141;; 
    142142   line_thick = [2,2,2,2,2,2,2,2]   ; 1D plot line thickness (for each overlay curves) 
    143    line_style = [1,1,1,1,2,2,3,3]   ; 1D plot line style (for each overlay curves) 
    144    line_color = [1,2,3,4,6,7,7,8]   ; 1D plot line color (for each overlay curves) 
     143   line_style = [1,1,1,6,6,6,6,6]   ; 1D plot line style (for each overlay curves) 
     144   line_color = [1,2,4,1,1,2,3,4]   ; 1D plot line color (for each overlay curves) 
    145145; 1=black; 2=red; 3=green; 4=blue; 6=purple 
    146146; 43 ---- 90 ---- 160 ---- 190 ---- 210 ---- 254 
     
    167167;;   contour_options = ',/nocontour'    ;;;;;; include this line to delete contour labels 
    168168   contour_options = ',cell_fill=2'     ;;;;;; include this line to include contour label    
    169 ;;   look = ',xthick=2,ythick=2,zthick=2,sepdate='' ''' 
    170    look = ',charsize=1.2,charthick=1.5,c_charsize=1.2,c_charthick=1.5,xthick=2,ythick=2,zthick=2,sepdate='' ''' 
     169   look = ',xthick=2,ythick=2,zthick=2,sepdate='' ''' 
     170;   look = ',charsize=1.1,charthick=1.3,c_charsize=1.1,c_charthick=1.3,xthick=2,ythick=2,zthick=2,sepdate='' ''' 
    171171 
    172172; Use of page space and titles 
     
    177177   fill_space = 1        ; fill space on plot (0/1) (/rempli option) ? 
    178178   marge_option = 'marge=[0,0,2,2]' ; (use [0, 0, -2, -2] to fill up even more space 
     179;;   marge_option = 'marge=[0,0,-2,-2]' 
    179180   title_type = 'TS'      ; default type of titles  
    180181                         ; 'T' for title only, 'S' for subtitle only 
    181182                         ; 'TS' for both  
    182183                         ; 'off' for no titles 
     184   xchartxt = 1.0        ; x axis font size (1.0) 
     185   ychartxt = 1.0        ; y axis font size (1.0) 
    183186    
    184187 
     
    191194; Save PostScript files 
    192195 
    193    save_ps = 2 ; set to 2 to convert to pdf 
     196   save_ps = 1 ; set to 2 to convert to pdf 
    194197 
    195198; Averages 
Note: See TracChangeset for help on using the changeset viewer.