Ignore:
Timestamp:
06/27/06 17:47:06 (18 years ago)
Author:
pinsard
Message:

add $ in Calendar, Grid, Interpolation, Obsolete and Postscript *.pro files, add svn:keywords Id to all these files, some improvements in header

File:
1 edited

Legend:

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

    • Property svn:keywords set to Id
    r114 r118  
    1111; dataout = fromreg(method, datain [, lonin, latin, lonout, latout]) 
    1212; 
    13 ;    @param method {in}{required}  a string defining the interpolation method.  
     13; @param method {in}{required}  a string defining the interpolation method.  
    1414;            must be 'bilinear' or 'imoms3' 
    15 ;    @param datain {in}{required}  a 2D array the input data to interpolate 
    16 ;    @param lonin {in}{required}  1D or 2D array defining the longitude of the input data 
    17 ;    @param latin {in}{required}  1D or 2D array defining the latitude of the input data 
    18 ;    @param lonout {in}{required}  1D or 2D array defining the longitude of the output data 
    19 ;    @param lonout {in}{required}  1D or 2D array defining the latitude of the output data 
     15; @param datain {in}{required}  a 2D array the input data to interpolate 
     16; @param lonin {in}{required}  1D or 2D array defining the longitude of the input data 
     17; @param latin {in}{required}  1D or 2D array defining the latitude of the input data 
     18; @param lonout {in}{required}  1D or 2D array defining the longitude of the output data 
     19; @param latout {in}{required}  1D or 2D array defining the latitude of the output data 
    2020; 
    21 ; @keyword     WEIG (see ADDR) 
    22 ; @keyword     ADDR 2D arrays, weig and addr are the weight and addresses used to 
     21; @keyword WEIG (see ADDR) 
     22; @keyword ADDR 2D arrays, weig and addr are the weight and addresses used to 
    2323;     perform the interpolation: 
    2424;          dataout = total(weig*datain[addr], 1) 
     
    2929;     case, lonin, latin, lonout and latout are not necessary. 
    3030; 
    31 ; @keyword     /NONORTHERNLINE and /NOSOUTHERNLINE activate if you don't whant to take into 
    32 ;          account the northen/southern line of the input data when perfoming the 
    33 ;          interpolation. 
     31; @keyword /NONORTHERNLINE  
     32; @keyword /NOSOUTHERNLINE  
     33; activate if you don't whant to take into account the northen/southern line  
     34; of the input data when perfoming the interpolation. 
    3435; 
    3536; @returns 2D array: the interpolated data 
     
    4041; @examples   
    4142 
    42 topa = fromreg('bilinear', tncep, xncep, yncep, glamt, gphit) 
     43IDL> topa = fromreg('bilinear', tncep, xncep, yncep, glamt, gphit) 
    4344; 
    4445;  or  
    4546; 
    46 t1opa = fromreg('bilinear', t1ncep, xncep, yncep, glamt, gphit, WEIG = a, ADDR = b) 
    47 help, a, b 
    48 t2opa = fromreg('bilinear', t2ncep, xncep, WEIG = a, ADDR = b) 
     47IDL> t1opa = fromreg('bilinear', t1ncep, xncep, yncep, glamt, gphit, WEIG = a, ADDR = b) 
     48IDL> help, a, b 
     49IDL> t2opa = fromreg('bilinear', t2ncep, xncep, WEIG = a, ADDR = b) 
    4950; 
    5051; @history 
    5152;  November 2005: Sebastien Masson (smasson\@lodyc.jussieu.fr)  
    52 ;  
     53; 
     54; @version $Id$ 
     55; 
    5356;- 
    5457;---------------------------------------------------------- 
Note: See TracChangeset for help on using the changeset viewer.