Ignore:
Timestamp:
08/08/08 14:31:53 (16 years ago)
Author:
pinsard
Message:

improvements of headers (alignments)

Location:
trunk/SRC/Interpolation
Files:
13 edited

Legend:

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

    r371 r372  
    1010; = 'T', 'W', 'U', 'V' or 'F' 
    1111; the type of point 
    12 ;     that is located in the center of the cell which the click is 
    13 ;     located. default is T type of cell (with corner defined by F 
    14 ;     points). 
     12; that is located in the center of the cell which the click is 
     13; located. default is T type of cell (with corner defined by F 
     14; points). 
    1515; 
    1616; @keyword DRAWCELL 
  • trunk/SRC/Interpolation/compute_fromirr_bilinear_weigaddr.pro

    r325 r372  
    5252; 
    5353; @history 
    54 ;  June 2006: Sebastien Masson (smasson\@lodyc.jussieu.fr) 
     54; June 2006: Sebastien Masson (smasson\@lodyc.jussieu.fr) 
    5555; 
    5656; @version 
  • trunk/SRC/Interpolation/compute_fromreg_bilinear_weigaddr.pro

    r327 r372  
    4747; 
    4848; @history 
    49 ;  November 2005: Sebastien Masson (smasson\@lodyc.jussieu.fr) 
     49; November 2005: Sebastien Masson (smasson\@lodyc.jussieu.fr) 
    5050; 
    5151; @version 
  • trunk/SRC/Interpolation/compute_fromreg_imoms3_weigaddr.pro

    r327 r372  
    5050; 
    5151; @history 
    52 ;  November 2005: Sebastien Masson (smasson\@lodyc.jussieu.fr) 
    53 ;  March 2006: works for rectangular grids 
     52; November 2005: Sebastien Masson (smasson\@lodyc.jussieu.fr) 
     53; March 2006: works for rectangular grids 
    5454; 
    5555; @version 
  • trunk/SRC/Interpolation/cutpar.pro

    r371 r372  
    5757; 
    5858; @history 
    59 ;           S. Masson (smasson\@lodyc.jussieu.fr) 
    60         July 5th, 2002 
     59; S. Masson (smasson\@lodyc.jussieu.fr) 
     60- July 5th, 2002 
    6161; 
    6262; @version 
  • trunk/SRC/Interpolation/fromirr.pro

    r371 r372  
    33; @file_comments 
    44; interpolate data from an irregular 2D grid to any 2D grid. 
    5 ;   Only 1 method available = bilinear 
     5; 
     6; Only 1 method available = bilinear 
    67; 
    78; @categories 
     
    4647;          dataout = total(weig*datain[addr], 1) 
    4748;          dataout = reform(dataout, jpio, jpjo, /over) 
     49; 
    4850; In that case, method, lonin, latin, are not used (but are necessary). 
    4951; lonout, latout are used only to know the output domain size 
     
    8284; 
    8385; @history 
    84 ;  June 2006: Sebastien Masson (smasson\@lodyc.jussieu.fr) 
     86; June 2006: Sebastien Masson (smasson\@lodyc.jussieu.fr) 
    8587; 
    8688; @version 
  • trunk/SRC/Interpolation/fromreg.pro

    r371 r372  
    33; @file_comments 
    44; interpolate data from a "regular/rectangular grid" to any grid. 
    5 ;   2 methods available: bilinear and imoms3 
    6 ;   A "regular/rectangular grid" is defined as a grid for which  
    7 ; each longitude lines have the same latitude and each latitude columns  
     5; 
     6; 2 methods available: bilinear and imoms3 
     7; 
     8; A "regular/rectangular grid" is defined as a grid for which  
     9; 
     10; Each longitude lines have the same latitude and each latitude columns  
    811; have the same longitude. 
    912; 
     
    4245;          dataout = total(weig*datain[addr], 1) 
    4346;          dataout = reform(dataout, jpio, jpjo, /over) 
     47; 
    4448; In that case, method, lonin, latin, are not used (but are necessary). 
    4549; lonout, latout are used only to know the output domain size 
  • trunk/SRC/Interpolation/get_gridparams.pro

    r371 r372  
    5959; @examples 
    6060; 
    61 ; 1) IDL> ncdf_get_gridparams, 'coordinates_ORCA_R05.nc', 'glamt', 'gphit' $ 
     61; 1)  
     62; 
     63;   IDL> ncdf_get_gridparams, 'coordinates_ORCA_R05.nc', 'glamt', 'gphit' $ 
    6264;            , olon, olat, jpio, jpjo, 2 
    6365; 
    64 ; 2) IDL> ncdf_get_gridparams, olon, olat, jpio, jpjo, 2 
     66; 2)  
     67; 
     68:   IDL> ncdf_get_gridparams, olon, olat, jpio, jpjo, 2 
    6569; 
    6670; @history 
    67 ;  November 2005: Sebastien Masson (smasson\@lodyc.jussieu.fr) 
     71; November 2005: Sebastien Masson (smasson\@lodyc.jussieu.fr) 
    6872; 
    6973; @version 
  • trunk/SRC/Interpolation/inrecgrid.pro

    r371 r372  
    22; 
    33; @file_comments 
    4 ; given - a list of points, (x,y) position 
    5 ;       - the x and y limits of a rectangular grid 
     4; given  
     5;  - a list of points, (x,y) position 
     6;  - the x and y limits of a rectangular grid 
     7; 
    68; find in which cell is located each given point. 
    79; 
     
    4850; @history 
    4951; S. Masson (smasson\@lodyc.jussieu.fr) 
    50 ; July 3rd, 2002 
    51 ; October 3rd, 2003: use value_locate 
     52;  - July 3rd, 2002 
     53;  - October 3rd, 2003: use value_locate 
    5254; 
    5355; @version 
  • trunk/SRC/Interpolation/quadrilateral2square.pro

    r371 r372  
    44; warm (or map) an arbitrary quadrilateral onto a unit square 
    55; according to the 4-point correspondences: 
    6 ;       (x0,y0) -> (0,0) 
    7 ;       (x1,y1) -> (1,0) 
    8 ;       (x2,y2) -> (1,1) 
    9 ;       (x3,y3) -> (0,1) 
     6;  - (x0,y0) -> (0,0) 
     7;  - (x1,y1) -> (1,0) 
     8;  - (x2,y2) -> (1,1) 
     9;  - (x3,y3) -> (0,1) 
     10; 
    1011; This is the inverse function of <pro>square2quadrilateral</pro>. 
    1112; 
  • trunk/SRC/Interpolation/spl_fstdrv.pro

    r371 r372  
    3131; 
    3232; @returns 
    33 ;    y2: f'(x2) = y2. 
     33; y2: f'(x2) = y2. 
    3434; 
    3535; @history 
    36 ;  Sebastien Masson (smasson\@lodyc.jussieu.fr): May 2005 
     36; Sebastien Masson (smasson\@lodyc.jussieu.fr): May 2005 
    3737; 
    3838; @version 
  • trunk/SRC/Interpolation/spl_keep_mean.pro

    r371 r372  
    4747; @examples 
    4848; 
    49 ;    12 monthly values of precipitations into daily values: 
     49; 12 monthly values of precipitations into daily values: 
    5050; 
    5151;   IDL> yr1 = 1990 
     
    6868; 
    6969; @history 
    70 ;  Sebastien Masson (smasson\@lodyc.jussieu.fr): May 2005 
     70; Sebastien Masson (smasson\@lodyc.jussieu.fr): May 2005 
    7171; 
    7272; @version 
  • trunk/SRC/Interpolation/square2quadrilateral.pro

    r371 r372  
    44; warm (or map) a unit square onto an arbitrary quadrilateral 
    55; according to the 4-point correspondences: 
    6 ;       (0,0) -> (x0,y0) 
    7 ;       (1,0) -> (x1,y1) 
    8 ;       (1,1) -> (x2,y2) 
    9 ;       (0,1) -> (x3,y3) 
     6;  - (0,0) -> (x0,y0) 
     7;  - (1,0) -> (x1,y1) 
     8;  - (1,1) -> (x2,y2) 
     9;  - (0,1) -> (x3,y3) 
     10; 
    1011; The mapping is done using perspective transformation which preserve 
    1112; lines in all orientations and permit quadrilateral to quadrilateral 
     
    5960; 
    6061; @history 
    61 ;      Sebastien Masson (smasson\@lodyc.jussieu.fr) 
    62 ;      August 2003 
    63 ;      Based on "Digital Image Warping" by G. Wolberg 
    64 ;      IEEE Computer Society Press, Los Alamitos, California 
    65 ;      Chapter 3, see p 52-56 
    66 ; 
     62; Sebastien Masson (smasson\@lodyc.jussieu.fr) 
     63;  - August 2003 
     64;    Based on "Digital Image Warping" by G. Wolberg 
     65;    IEEE Computer Society Press, Los Alamitos, California 
     66;    Chapter 3, see p 52-56 
    6767; 
    6868; @version 
Note: See TracChangeset for help on using the changeset viewer.