Changeset 104


Ignore:
Timestamp:
05/10/08 05:40:42 (16 years ago)
Author:
ericg
Message:

Added option nino_plot in plt_def to plot nino 1,2,3,4 boxes in xy maps

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/procs/com_eg.pro

    r92 r104  
    44; attributs horizontal+vertical means 
    55; 
    6 COMMON zm_att, box_h, depth_z, zoom_z, diaznl_idx, box_plot, legbox, pres_max, pres_min, max_spec, spec_win, vert_type, vert_mean,  vert_switch, glamboundary_box, msf_mean, name_level 
     6COMMON zm_att, box_h, depth_z, zoom_z, diaznl_idx, box_plot, legbox, pres_max, pres_min, max_spec, spec_win, vert_type, vert_mean,  vert_switch, glamboundary_box, msf_mean, name_level, nino_plot 
    77; 
    88; attributs hoevmoeller 
  • trunk/procs/init_post_it.pro

    r92 r104  
    2424   ychartxt = 1.0 
    2525   linfit_sep =  0.0 
     26   nino_plot = 0 
  • trunk/procs/plt_map.pro

    r92 r104  
    772772               printf, nulhis, strcompress(pltcmd) 
    773773               res = execute(pltcmd(0)) 
     774 
     775               ; draw nino boxes 
     776               IF nino_plot EQ 1 THEN BEGIN  
     777                  xn4 = [160, 210, 210, 160, 160] 
     778                  yn4 = [5,  5, -5, -5, 5] 
     779                  plot, xn4, yn4, /noerase                   
     780                  xn3 = [210, 270, 270, 210, 210] 
     781                  yn3 = [5,  5, -5, -5, 5] 
     782                  plot, xn3, yn3, /noerase                   
     783                  xn1 = [270, 280, 280, 270, 270] 
     784                  yn1 = [-5,  -5, -10, -10, -5] 
     785                  plot, xn1, yn1, /noerase                   
     786                  xn2 = [270, 280, 280, 270, 270] 
     787                  yn2 = [0,  0, -5, -5, 0] 
     788                  plot, xn2, yn2, /noerase                   
     789               ENDIF  
    774790 
    775791            END 
  • trunk/usr/plt_def.pro

    r99 r104  
    1515;   box_h = [10,180,-20,20] 
    1616   box_h = [120,290,-30,30] 
    17    box_h = [-180,180,-90,90] 
    18    box_h = [20,380,-90,90] 
     17;   box_h = [-180,180,-90,90] 
     18  box_h = [20,380,-90,90] 
    1919;   box_h = [20,150,-30,60] 
    2020   box_h = [120,290,-30,30] 
    21    box_h = [20,380,-30,30] 
    2221;   box_h = [20,380,-30,30] 
     22;   box_h = [100,300,-40,40] 
    2323;   box_h = [120,290,0,60] 
    2424;   box_h = [20,120,-30,30] 
     
    4545; vertical average for 3D fields  
    4646 
    47    vert_type = '0'          ;  'z' for depth/altitude or 'level' or '0' for nothing 
    48    vert_mean = [20, 20]   ; [depth1,depth2] or [level1,level2] in C notation i.e 0 to jpk-1  
     47   vert_type = 'z'          ;  'z' for depth/altitude or 'level' or '0' for nothing 
     48   vert_mean = [0, 300]   ; [depth1,depth2] or [level1,level2] in C notation i.e 0 to jpk-1  
    4949;   vert_mean = [90000, 100000] 
    5050 
     
    147147                         ; = 2 (mask + real continents drawn) 
    148148   vector_sample = 2     ; vector sampling (1) 
     149   nino_plot = 1         ; draw nino 1,2,3,4 boxes on xy plots 
    149150;; 
    150151   line_thick = [2,2,2,2,2,2,2,2]   ; 1D plot line thickness (for each overlay curves) 
     
    243244 
    244245; debug mode 
    245    debug_w = 1 
     246   debug_w = 0 
    246247 
    247248END 
Note: See TracChangeset for help on using the changeset viewer.