1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="GENERATOR" content="Mozilla/4.6 [en] (X11; U; Linux 2.2.12 i686) [Netscape]">
</head>
<body>
<a href="index.html"><img SRC="rsl.gif" ></a>
<hr>
<pre>typedef struct {
int month, day, year;
int hour, minute;
float sec; /* Second plus fractional part. */
char radar_type[50]; /* Type of radar. Use for QC-ing the data.
* Supported types are:
* "wsr88d", "lassen", "uf",
* "nsig", "nsig2", "mcgill",
* "kwajalein", "rsl", "toga".
* Set by appropriate ingest routine.
*/
int nvolumes;
int number; /* arbitrary number of this radar site */
char name[8]; /* Nexrad site name */
char radar_name[8]; /* Radar name. */
char project[24]; /* Project assocated with data. */
char city[15]; /* nearest city to radaar site */
char state[2]; /* state of radar site */
int latd; /* degrees of latitude of site */
int latm; /* minutes of latitude of site */
int lats; /* seconds of latitude of site */
int lond; /* degrees of longitude of site */
int lonm; /* minutes of longitude of site */
int lons; /* seconds of longitude of site */
int height; /* height of site in meters above sea level*/
int spulse; /* length of short pulse (ns)*/
int lpulse; /* length of long pulse (ns) */
int vcp; /* Volume Coverage Pattern (for WSR-88D only) */
} Radar_header;</pre>
</body>
</html>
|