Ignore:
Timestamp:
06/29/06 16:59:33 (18 years ago)
Author:
pinsard
Message:

correction of some *.pro using aspell list; introduction of default idldoc syntax

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Grid/computegrid.pro

    r118 r121  
    6666;       will be add to the default computations 
    6767; 
    68 ; @keyword GLAMBOUNDARY a 2 elements vector, [lon1,lon2], the longitute 
     68; @keyword GLAMBOUNDARY a 2 elements vector, [lon1,lon2], the longitude 
    6969;       boundaries that should be used to visualize the data. 
    7070;       we must have lon2 > lon1 and lon2 - lon1 le 360 
     
    9191; 
    9292; @keyword SHIFT = scalar to force the manual definition of key_shift. By 
    93 ;       debault, key_shift is automaticaly computed according to 
     93;       default, key_shift is automaticaly computed according to 
    9494;       glamboundary (when defined) by using the FIRST LINE of glamt. if 
    9595;       key_periodic=0 then in any case key_shift = 0.  
     
    9898;       call computegrid (this is used by xxx.pro) 
    9999; 
    100 ; @keyword STRIDE a 3 elements vector to specify the stride in x, y, z 
    101 ;       direction. Default definition is [1, 1, 1]. The resulting value 
     100; @keyword STRIDE {default=[1, 1, 1]} a 3 elements vector to specify the stride in x, y, z 
     101;       direction. The resulting value 
    102102;       will be stored in the common (cm_4mesh) variable key_stride 
    103103; 
     
    119119;       using this keyword forces key_onearth=0 
    120120; 
    121 ; @keyword XMINMESH  
    122 ; @keyword YMINMESH  
    123 ; @keyword ZMINMESH  
     121; @keyword XMINMESH {default=0L} 
     122; @keyword YMINMESH {default=0L}  
     123; @keyword ZMINMESH {default=0L}  
    124124;       to define the common variables i[xyz]minmesh 
    125125;       used to define the grid only in a zoomed part of the original 
    126 ;       grid. Defaut values are 0L, max value is [XYZ]MAXMESH 
    127 ; 
    128 ; @keyword XMAXMESH  
    129 ; @keyword YMAXMESH  
    130 ; @keyword ZMAXMESH  
     126;       grid. max value is [XYZ]MAXMESH 
     127; 
     128; @keyword XMAXMESH {default=jpiglo-1} 
     129; @keyword YMAXMESH {default=jpjglo-1} 
     130; @keyword ZMAXMESH {default=jpkglo-1} 
    131131;       to define the common variables i[xyz]maxmesh 
    132132;       used to define the grid only in a zoomed part of the original 
    133 ;       grid. Defaut values are jp[ijk]glo-1, max value is 
    134 ;       jp[ijk]glo-1. if [XYZ]MAXMESH is negative, then we define 
    135 ;       i[xyz]maxmesh as jp[ijk]glo - 1 + [XYZ]MAXMESH instead of 
    136 ;       [XYZ]MAXMESH     
     133;       grid. max value is jp[ijk]glo-1.  
     134;       if [XYZ]MAXMESH is negative, then we define i[xyz]maxmesh as  
     135;       jp[ijk]glo - 1 + [XYZ]MAXMESH instead of [XYZ]MAXMESH    
    137136; 
    138137; @keyword FBASE2TBASE 
     
    377376    2:glamt = glamt[ixminmesh:ixmaxmesh, iyminmesh:iymaxmesh] 
    378377  ENDCASE 
    379 ; keep 2d array even with degenereted dimension 
     378; keep 2d array even with degenerated dimension 
    380379  IF jpj EQ 1 THEN glamt = reform(glamt, jpi, jpj, /over) 
    381380; 
     
    407406    2:gphit = gphit[ixminmesh:ixmaxmesh, iyminmesh:iymaxmesh] 
    408407  ENDCASE 
    409 ; keep 2d array even with degenereted dimension 
     408; keep 2d array even with degenerated dimension 
    410409  IF jpj EQ 1 THEN gphit = reform(gphit, jpi, jpj, /over)  
    411410; 
     
    490489;==================================================== 
    491490; 
    492 ; definition of key_shift by shiftting the array to have the min 
     491; definition of key_shift by shifting the array to have the min 
    493492; values of glamt[*, 0] in glamt[0, 0] 
    494493; 
     
    924923;==================================================== 
    925924; 
    926 ; defaut mask eq 1 
     925; default mask eq 1 
    927926  if NOT keyword_set(mask) then mask = -1 
    928927; 
Note: See TracChangeset for help on using the changeset viewer.