Ignore:
Timestamp:
03/16/07 10:22:26 (17 years ago)
Author:
pinsard
Message:

corrections of some misspellings in some *.pro

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/ToBeReviewed/CALCULS/depth2level.pro

    r163 r226  
    44;+ 
    55; 
    6 ; @file_comments  
     6; @file_comments 
    77; Allows to pass from a 2d depth array to a corresponding 2d level array. 
    88; 
     
    1111; 
    1212; @param TAB {type=2d array} 
    13 ; 2d depth array (or a structure respecting litchamp critrions) 
     13; 2d depth array (or a structure respecting litchamp criterions) 
    1414; 
    1515; @keyword UPPER 
     
    1717; 
    1818; @keyword LOWER 
    19 ; We select the level just below the depth  
     19; We select the level just below the depth 
    2020; 
    21 ; @keyword CLOSER  
    22 ; We select the depth's closer level  
     21; @keyword CLOSER 
     22; We select the depth's closer level 
    2323; 
    24 ; @keyword NOMASK  
     24; @keyword NOMASK 
    2525; To do not mask land points 
    2626; 
    27 ; @returns  
     27; @returns 
    2828; It is a 2d array containing level's values. 
    2929; 
     
    3131; common.pro 
    3232; 
    33 ; @restrictions  
     33; @restrictions 
    3434; For depths out of gdep's values, the value !values.f_nan is sent back. 
    35 ; if the depth is superior to this one of the bottom, we send back jpk-1 in  
     35; if the depth is superior to this one of the bottom, we send back jpk-1 in 
    3636; the upper case, and !values.f_nan in the lower case. 
    3737; 
     
    8080   if notanumber[0] NE -1 then in[notanumber] = 0 
    8181;------------------------------------------------------------ 
    82 ; We transform the 2d deth value in a 2d array of levels corresponding to depthes 
     82; We transform the 2d depth value in a 2d array of levels corresponding to depths 
    8383;------------------------------------------------------------ 
    8484; We go on array who have the size of 3d arrays 
    85    prof=replicate(1,nx*ny)#gdep[firstz:lastz]  
     85   prof=replicate(1,nx*ny)#gdep[firstz:lastz] 
    8686   in = in[*]#replicate(1, nz) 
    8787; 
     
    116116;------------------------------------------------------------ 
    117117;------------------------------------------------------------ 
    118    if keyword_set(key_performance) THEN print, 'temps depth2level', systime(1)-tempsun  
     118   if keyword_set(key_performance) THEN print, 'temps depth2level', systime(1)-tempsun 
    119119   return, levels 
    120120end 
Note: See TracChangeset for help on using the changeset viewer.