Ignore:
Timestamp:
06/19/06 16:14:56 (18 years ago)
Author:
smasson
Message:

new compilation options (compile_opt idl2, strictarrsubs) in each routine

Location:
trunk/SRC/ToBeReviewed/PLOTS/LABEL
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/ToBeReviewed/PLOTS/LABEL/label.pro

    r39 r114  
    5050pro label, cas, min, max, ncontour, level_z2d, colnumb, NLEVEL = nlevel $ 
    5151          ,INTERVALLE=intervalle, STRICTFILL = strictfill 
     52; 
     53  compile_opt idl2, strictarrsubs 
     54; 
    5255@common 
    5356   if !d.name EQ 'PS' OR !d.name EQ 'Z' then BEGIN 
     
    8386         level_z2d = min + intervalle*findgen(Ncontour)  
    8487         colnumb   = ncoul*(findgen(Ncontour))/Ncontour+ncoul/(2*ncontour) 
    85          max=level_z2d(Ncontour-1)+intervalle 
     88         max=level_z2d[Ncontour-1]+intervalle 
    8689      end 
    8790; label pour faire les memes sss que dessier 
  • trunk/SRC/ToBeReviewed/PLOTS/LABEL/label_date.pro

    r97 r114  
    9999FUNCTION LABEL_DATE, axis, index, x, DATE_FORMAT = format, MONTHS = months, $ 
    100100              OFFSET= offs, _EXTRA = ex 
     101; 
     102  compile_opt idl2, strictarrsubs 
     103; 
    101104COMMON label_date_com, fmt, month_chr, offset 
    102105 
  • trunk/SRC/ToBeReviewed/PLOTS/LABEL/label_gmt.pro

    r39 r114  
    33; 
    44PRO label_gmt, min, max, intervalle, ncoul, ncontour, level_z2d, coul 
     5; 
     6  compile_opt idl2, strictarrsubs 
     7; 
    58@common 
    69@com_eg 
     
    2225      ncontour  = fix((max-min)/intervalle) 
    2326      level_z2d = min + intervalle*findgen(Ncontour)  
    24       max=level_z2d(Ncontour-1)+intervalle 
     27      max=level_z2d[Ncontour-1]+intervalle 
    2528 
    2629      print, '     Number of contour intervals, plotting min & max ', ncontour, min, max 
     
    4043           ; difference plot : lighter below first negative interval 
    4144            red[51:98] = long((100.-float(grey_shade_2))/100.*255.) 
    42             red(1:48) = long((100.-float(grey_shade))/100.*255.) 
     45            red[1:48] = long((100.-float(grey_shade))/100.*255.) 
    4346            red[50] = 255 
    4447 
  • trunk/SRC/ToBeReviewed/PLOTS/LABEL/lataxe.pro

    r39 r114  
    3838;------------------------------------------------------------ 
    3939; on ramenne value ds le segment [0,180] 
     40; 
     41  compile_opt idl2, strictarrsubs 
     42; 
    4043   lat=value mod 360 
    4144   if lat lt 0 then lat=lat+360 
  • trunk/SRC/ToBeReviewed/PLOTS/LABEL/lonaxe.pro

    r39 r114  
    3838;------------------------------------------------------------ 
    3939; on ramenne value ds le segment [0,360[ 
     40; 
     41  compile_opt idl2, strictarrsubs 
     42; 
    4043   lon=value mod 360 
    4144   if lon lt 0 then lon=lon+360 
Note: See TracChangeset for help on using the changeset viewer.