1CSSGRID(3NCARG) NCAR GRAPHICS CSSGRID(3NCARG)
2
3
4
6 CSSGRID - tension spline interpolation on a sphere.
7
9 CALL CSSGRID (N, RLAT, RLON, F, NI, NJ, PLAT, PLON, FF, IWK, RWK, IER)
10
12 N (integer,input) The number of input data points (N > 2).
13
14 RLAT (real, input) An array containing the latitudes of the
15 input data, expressed in degrees. The first three points
16 must not be collinear (lie on a common great circle).
17
18 RLON (real, input) An array containing the longitudes of the
19 input data, expressed in degrees.
20
21 F (real, input) An array containing data values. F(I) is a
22 functional value at (RLAT(I),RLON(I)) for I = 1 to N.
23
24 NI (integer, input) The number of rows in the uniform output
25 grid. NI can be 1.
26
27 NJ (integer, input) The number of columns in the uniform out‐
28 put grid. NJ can be 1.
29
30 PLAT (real, intput) An array of length NI containing the lati‐
31 tudes the output grid lines. The values in PLAT should be
32 in degrees.
33
34 PLON (real, intput) An array of length NJ containing the longi‐
35 tudes the output grid lines. The value in PLON should be
36 in degrees.
37
38 FF (real, output) An NI by NJ array containing the desired
39 interpolated values. FF(I,J) is the interpolated value at
40 the coordinate specified by PLAT(I) and PLON(J) for I = 1
41 to NI and J = 1 to NJ.
42
43 IWK (integer, input) An integer workspace of length 27*N.
44
45 RWK (double precision, input) A work array dimensioned for
46 13*N. Note that RWK must be typed DOUBLE PRECISION.
47
48 IER (integer, output) An error return value. If IER is
49 returned as 0, then no errors were detected. If IER is non-
50 zero, then refer to the man page for cssgrid_errors for
51 details.
52
54 CSSGRID is called to find an interpolating tension spline for data ran‐
55 domly positioned on a sphere.
56
58 To use CSSGRID, load the NCAR Graphics library ngmath.
59
61 css_overview, csstri, cssgrid_errors
62
63 Complete documentation for Cssgrid is available at URL
64 http://ngwww.ucar.edu/ngdoc/ng/ngmath/cssgrid/csshome.html
65
67 Copyright (C) 2000
68 University Corporation for Atmospheric Research
69
70 The use of this Software is governed by a License Agreement.
71
72
73
74UNIX May 2000 CSSGRID(3NCARG)