OB.DAAC Logo
NASA Logo
Ocean Color Science Software

ocssw V2022
l1a_hawkeye.h
Go to the documentation of this file.
1 #ifndef L1A_HAWKEYE_H
2 #define L1A_HAWKEYE_H
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 
8 #include <stdint.h>
9 #include "l1.h"
10 
11 typedef struct hawkeye_t {
13  float roll_offset;
14  float time_offset;
15 } hawkeye_t;
16 
17 // Call sequence
18 // openl1a_hawkeye > qc_hawkeye_CCD_T > nan_wmean // once
19 // readl1a_hawkeye > read_cal_hawkeye // once
20 // readl1a_hawkeye > interp_hawkeye_CCD_T > prep_for_interp_double // per scan
21 // readl1a_hawkeye > calibrate_hawkeye > prep_for_interp_double // per scan
22 
23 // Open, read, close
24 int openl1a_hawkeye(filehandle *file);
25 int readl1a_hawkeye(filehandle *file, int32_t recnum, l1str *l1rec);
26 int closel1a_hawkeye(filehandle *file);
27 
28 
29 #ifdef __cplusplus
30 }
31 #endif
32 
33 #endif
read l1rec
int exposureID
Definition: l1a_hawkeye.h:12
int openl1a_hawkeye(filehandle *file)
Definition: l1a_hawkeye.c:161
float roll_offset
Definition: l1a_hawkeye.h:13
no change in intended resolving MODur00064 Corrected handling of bad ephemeris attitude resolving resolving GSFcd00179 Corrected handling of fill values for[Sensor|Solar][Zenith|Azimuth] resolving MODxl01751 Changed to validate LUT version against a value retrieved from the resolving MODxl02056 Changed to calculate Solar Diffuser angles without adjustment for estimated post launch changes in the MODIS orientation relative to incidentally resolving defects MODxl01766 Also resolves MODxl01947 Changed to ignore fill values in SCI_ABNORM and SCI_STATE rather than treating them as resolving MODxl01780 Changed to use spacecraft ancillary data to recognise when the mirror encoder data is being set by side A or side B and to change calculations accordingly This removes the need for seperate LUTs for Side A and Side B data it makes the new LUTs incompatible with older versions of the and vice versa Also resolves MODxl01685 A more robust GRing algorithm is being which will create a non default GRing anytime there s even a single geolocated pixel in a granule Removed obsolete messages from seed file
Definition: HISTORY.txt:413
read recnum
int closel1a_hawkeye(filehandle *file)
Definition: l1a_hawkeye.c:715
int readl1a_hawkeye(filehandle *file, int32_t recnum, l1str *l1rec)
Definition: l1a_hawkeye.c:499
float time_offset
Definition: l1a_hawkeye.h:14