Ignore:
Timestamp:
07/10/06 17:20:19 (18 years ago)
Author:
pinsard
Message:

some improvements and corrections in some .pro file according to
aspell and idldoc log file

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Interpolation/fromreg.pro

    r134 r136  
    11;+ 
    22; 
    3 ; @file_comments  
     3; @file_comments 
    44; interpolate data from a "regular/rectangular grid" to any grid. 
    55;   2 methods availables: bilinear and imoms3 
     
    99; @categories interpolation 
    1010; 
    11 ; @param method {in}{required}  a string defining the interpolation method. 
    12 ;            must be 'bilinear' or 'imoms3' 
    13 ; @param datain {in}{required}  a 2D array the input data to interpolate 
    14 ; @param lonin {in}{optional}  1D or 2D array defining the longitude of the input data 
    15 ; @param latin {in}{optional}  1D or 2D array defining the latitude of the input data 
    16 ; @param lonout {in}{optional}  1D or 2D array defining the longitude of the output data 
    17 ; @param latout {in}{required}  1D or 2D array defining the latitude of the output data 
     11; @param method {in}{required} 
     12; a string defining the interpolation method. 
     13; must be 'bilinear' or 'imoms3' 
     14; 
     15; @param datain {in}{required} 
     16; a 2D array the input data to interpolate 
     17; 
     18; @param lonin {in}{optional} 
     19; 1D or 2D array defining the longitude of the input data 
     20; 
     21; @param latin {in}{optional} 
     22; 1D or 2D array defining the latitude of the input data 
     23; 
     24; @param lonout {in}{optional} 
     25; 1D or 2D array defining the longitude of the output data 
     26; 
     27; @param latout {in}{required} 
     28; 1D or 2D array defining the latitude of the output data 
    1829; 
    1930; @keyword WEIG (see ADDR) 
    2031; @keyword ADDR 2D arrays, weig and addr are the weight and addresses used to 
    21 ;     perform the interpolation: 
     32; perform the interpolation: 
    2233;          dataout = total(weig*datain[addr], 1) 
    2334;          dataout = reform(dataout, jpio, jpjo, /over) 
    24 ;     Those keywords can be set to named variables (that are undefined or equal to 0) into which the 
    25 ;     values will be copied when the current routine exits. Next, they can be used to perform 
    26 ;     the interpolation whithout computing again those 2 parameters. In that 
    27 ;     case, lonin, latin, lonout and latout are not necessary. 
     35; Those keywords can be set to named variables (that are undefined or equal to 0) into which the 
     36; values will be copied when the current routine exits. Next, they can be used to perform 
     37; the interpolation whithout computing again those 2 parameters. In that 
     38; case, lonin, latin, lonout and latout are not necessary. 
    2839; 
    2940; @keyword NONORTHERNLINE 
     
    3243; of the input data when perfoming the interpolation. 
    3344; 
    34 ; @returns 2D array the interpolated data 
     45; @returns 
     46; 2D array the interpolated data 
    3547; 
    3648; @restrictions 
Note: See TracChangeset for help on using the changeset viewer.