RFC: 0013
Title | |||
| Structure in C for the Raw ACF data | |||
Author | |||
| R.J.Barnes | |||
Summary | |||
| 
 A description of the data structure in the C language used to store the Raw ACF Data.  | |||
Description | |||
1. IntroductionThe raw ACF data is the primary (first order) data product from the SuperDARN radars.  Listed below is the C data structure  2. Array LimitsThe array limits are defined as macros in the header  
 3. 
 | 
struct RawData {
  struct {
    int major;                        /* major revision */
    int minor;                        /* minor revision */
  } revision;            
  float thr;                          /* lag-zero power threshold level */
  float pwr0[MAX_RANGE];              /* lag-zero powers
  float acfd[MAX_RANGE][LAG_SIZE][2]; /* ACF data */
  float xcfd[MAX_RANGE][LAG_SIZE][2]; /* XCF data */
};
 | 
References
History
2004/11/19 Initial Revision.