Ignore:
Timestamp:
09/25/07 12:16:00 (17 years ago)
Author:
pinsard
Message:

typo

Location:
trunk/SRC/ToBeReviewed/LECTURE
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/ToBeReviewed/LECTURE/litchamp.pro

    r231 r295  
    2424;        -the order of elements (except the first) has not any importance. 
    2525;        -the other elements (except the first) are optional. 
    26 ;        -they are recognize by the first letter of their names: 
    27 ;             g  to update vargrid 
    28 ;             u  to update varunit 
    29 ;             e  to update varexp 
    30 ;             d  to update vardate 
    31 ;             n  to update varname 
     26;        -they are recognized by the first letter of their names: 
     27;             g  to update vargrid, 
     28;             u  to update varunit, 
     29;             e  to update varexp, 
     30;             d  to update vardate, 
     31;             n  to update varname, 
    3232;             m  to update valmask 
    3333; 
  • trunk/SRC/ToBeReviewed/LECTURE/ncdf_lec.pro

    r260 r295  
    22; 
    33; @file_comments 
    4 ; Give informations on a file net cdf and allows to recuperate 
    5 ; variables which are write in. 
     4; Give informations on a file netcdf and allows to recuperate 
     5; variables which are written in it. 
    66; 
    77; @categories 
     
    99; 
    1010; @param NOM {in}{required} 
    11 ; Name of a file net cdf situated in the directory stipulated by iodir. 
     11; Name of a file netcdf located in the directory stipulated by iodir. 
    1212; 
    1313; @keyword ATT 
    14 ; 'global' or at the name of a variable. Allows to see all attributes 
    15 ; joined at a variable 
     14; 'global' or the name of a variable. Allows to see all attributes 
     15; associated to variable 
    1616; 
    1717; @keyword DIM 
     
    1919; 
    2020; @keyword VAR 
    21 ;       1) /var: Gove the list of dimensions. 
    22 ;       2) var='nom de variable': in this case the function send back the variable. 
     21;       1) /var: Give the list of dimensions. 
     22;       2) var='name_of_a_variable': in this case the function send back the variable. 
    2323; 
    2424; @keyword IODIR 
  • trunk/SRC/ToBeReviewed/LECTURE/read_ncdf.pro

    r284 r295  
    4747; 
    4848; @keyword FILENAME {required}{type=string} 
    49 ; It contains he file's name. 
     49; It contains the file's name. 
    5050; 
    5151; @keyword INIT {default=0}{type=scalar: 0 or 1} 
    52 ; To call automatically initncdf with filename as input argument and thus 
    53 ; redefine all the grid parameters 
     52; To call automatically <pro>initncdf</pro> with filename as input argument  
     53; and thus ; redefine all the grid parameters 
    5454; 
    5555; @keyword GRID 
     
    8383; @returns 
    8484; Structure readable by <pro>litchamp</pro> or an array if NOSTRUCT is activated. 
    85 ; 
    8685; @uses 
    8786; common.pro 
     
    283282  ENDELSE 
    284283;--------------------------------------------------------------------- 
    285 ; We initializate ixmindta, iymindta if needed 
     284; We initialize ixmindta, iymindta if needed 
    286285;--------------------------------------------------------------------- 
    287286  if n_elements(jpidta) EQ 0 THEN jpidta = jpiglo 
  • trunk/SRC/ToBeReviewed/LECTURE/xncdf_lec.pro

    r231 r295  
    22; 
    33; @file_comments 
    4 ; Reading of a Net Cdf file with widgets ! 
     4; Reading of a NetCdf file with widgets 
    55; 
    66; @categories 
     
    3434; @keyword SHIFT {type=vector}{default=[0, 0,...]} 
    3535; A vector of integers, specifying for each dimension how much we have to shift it. 
    36 ; By default, it is [0,0,...]. See the function shift for more explanations. BEWARE, 
     36; By default, it is [0,0,...]. See the function <proidl>shift</proidl> for more explanations. BEWARE, 
    3737; the shift is done on the biggest array before a possible reduction determined 
    3838; by OFFSET and COUNT. On the other hand, it is done after the possible extraction 
     
    5656; 
    5757; @examples 
    58 ; help, xncdf_lec() 
     58; IDL> help, xncdf_lec() 
    5959; 
    6060; @history 
     
    127127;------------------------------------------------------------ 
    128128   base1 = widget_base(base, /column, /align_center) 
    129    rien = widget_label(base1, value = 'Net Cdf filename', /align_center) 
     129   rien = widget_label(base1, value = 'NetCdf filename', /align_center) 
    130130   rien = widget_text(base1, value = name, /align_center, uvalue=1, /editable) ;File's name we can change 
    131131   rien = widget_label(base1, value = ' ') ; We jump a line 
Note: See TracChangeset for help on using the changeset viewer.