]> Pileus Git - ~andy/rsl/blob - doc/RSL_carpi_struct.html
Initial import
[~andy/rsl] / doc / RSL_carpi_struct.html
1 <head>
2 </head>
3
4 <body>
5 <a HREF="index.html"> <IMG SRC="rsl.gif"> </a>
6 <hr>
7
8
9 <pre>typedef struct {
10   int   month;            /* (1-12). */
11   int   day;              /* (1-31).   */
12   int   year;             /* (eg. 1993). */
13   int   hour;             /* (0-23). */
14   int   minute;           /* (0-59).*/
15   float sec;              /* second + fraction of second. */
16   float dx, dy;           /* Size of cell in km. */
17   int   nx, ny;           /* Number of cells. */
18   int   radar_x, radar_y; /* Location of center of radar. */
19   float height;           /* Height of this Carpi. */
20   float lat, lon;         /* Lat/lon of lower left corner of Carpi. */
21   char  radar_type[50];   /* Radar types. */
22   int   field_type;       /* Same as for Radar. */
23   int   interp_method;    /* ??? string describing interpolation method. */
24   float (*f)(Carpi_value x);    /* Data conversion function. f(x). */
25   Carpi_value (*invf)(float x); /* Data conversion function. invf(x). */
26   Carpi_value **data;     /* data[ny][nx] */
27 } Carpi; </pre>
28
29 </body>