source: trunk/SRC/Interpolation/fromreg.pro @ 121

Last change on this file since 121 was 121, checked in by pinsard, 18 years ago

correction of some *.pro using aspell list; introduction of default idldoc syntax

  • Property svn:executable set to *
  • Property svn:keywords set to Id
File size: 3.5 KB
Line 
1;+
2;
3; @file_comments interpolate data from a "regular/rectangular grid" to any grid.
4;   2 metods availables: bilinear and imoms3
5;   A "regular/rectangular grid" is defined as a grid for which each lontitudes lines have
6;   the same latitude and each latitudes columns have the same longitude.
7;   
8; @categories interpolation
9;
10; @param method {in}{required}  a string defining the interpolation method.
11;            must be 'bilinear' or 'imoms3'
12; @param datain {in}{required}  a 2D array the input data to interpolate
13; @param lonin {in}{optional}  1D or 2D array defining the longitude of the input data
14; @param latin {in}{optional}  1D or 2D array defining the latitude of the input data
15; @param lonout {in}{optional}  1D or 2D array defining the longitude of the output data
16; @param latout {in}{required}  1D or 2D array defining the latitude of the output data
17;
18; @keyword WEIG (see ADDR)
19; @keyword ADDR 2D arrays, weig and addr are the weight and addresses used to
20;     perform the interpolation:
21;          dataout = total(weig*datain[addr], 1)
22;          dataout = reform(dataout, jpio, jpjo, /over)
23;     Those keywords can be set to named variables (that are undefined or equal to 0) into which the
24;     values will be copied when the current routine exits. Next, they can be used to perform
25;     the interpolation whithout computing again those 2 parameters. In that
26;     case, lonin, latin, lonout and latout are not necessary.
27;
28; @keyword /NONORTHERNLINE
29; @keyword /NOSOUTHERNLINE
30; activate if you don't whant to take into account the northen/southern line
31; of the input data when perfoming the interpolation.
32;
33; @returns 2D array the interpolated data
34;
35; @restrictions We supposed the data are located on a sphere, with a
36; periodicity along the longitude.
37;
38; @examples 
39
40;  IDL> topa = fromreg('bilinear', tncep, xncep, yncep, glamt, gphit)
41;
42;  or
43;
44;  IDL> t1opa = fromreg('bilinear', t1ncep, xncep, yncep, glamt, gphit, WEIG = a, ADDR = b)
45;  IDL> help, a, b
46;  IDL> t2opa = fromreg('bilinear', t2ncep, xncep, WEIG = a, ADDR = b)
47;
48; @history
49;  November 2005: Sebastien Masson (smasson\@lodyc.jussieu.fr)
50;
51; @version $Id$
52;
53;-
54;----------------------------------------------------------
55;----------------------------------------------------------
56;
57FUNCTION fromreg, method, datain, lonin, latin, lonout, latout $
58                  , WEIG = weig, ADDR = addr $
59                  , NONORTHERNLINE = nonorthernline $
60                  , NOSOUTHERNLINE = nosouthernline
61;
62  compile_opt idl2, strictarrsubs
63;
64;---------------
65; atmospheric grid parameters
66;---------------
67    alon = lonin
68    alat = latin
69    get_gridparams, alon, alat, jpia, jpja, 1, /double
70;---------------
71; Oceanic grid parameters
72;---------------
73    olon = lonout
74    olat = latout
75    get_gridparams, olon, olat, jpio, jpjo, 2, /double
76;---------------
77; Compute weight and address
78;---------------
79  IF NOT (keyword_set(weig) AND keyword_set(addr)) THEN BEGIN
80    CASE method OF
81      'bilinear':compute_fromreg_bilinear_weigaddr, alon, alat, olon, olat, weig, addr, NONORTHERNLINE = nonorthernline, NOSOUTHERNLINE = nosouthernline
82      'imoms3':  compute_fromreg_imoms3_weigaddr,   alon, alat, olon, olat, weig, addr, NONORTHERNLINE = nonorthernline, NOSOUTHERNLINE = nosouthernline
83      ELSE:BEGIN
84        print, ' unknown interpolation method... we stop'
85        stop
86      ENDELSE
87    ENDCASE
88  ENDIF
89;
90  dataout = total(weig*datain[addr], 1)
91  dataout = reform(dataout, jpio, jpjo, /over)
92;
93  RETURN, dataout
94END
Note: See TracBrowser for help on using the repository browser.