OB.DAAC Logo
NASA Logo
Ocean Color Science Software

ocssw V2022
l1_seabass.h
Go to the documentation of this file.
1 #include "filehandle.h"
2 #include "l1.h"
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 
8 typedef struct seabass {
9  FILE *fp;
10  long int data_start;
11  const char *delimiter;
13  int lon_index;
14  int lat_index;
17  int day_index;
22 } seabass;
23 
24 int open_seabass(filehandle *file);
25 int read_seabass(filehandle *file, l1str *l1rec);
26 int close_seabass(filehandle *file);
27 
28 #ifdef __cplusplus
29 } // extern "C"
30 #endif
31 
int read_seabass(filehandle *file, l1str *l1rec)
Definition: l1_seabass.cpp:143
int minute_index
Definition: l1_seabass.h:19
int current_row
Definition: l1_seabass.h:21
read l1rec
int lon_index
Definition: l1_seabass.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
const char * delimiter
Definition: l1_seabass.h:11
FILE * fp
Definition: l1_seabass.h:9
int day_index
Definition: l1_seabass.h:17
int second_index
Definition: l1_seabass.h:20
long int data_start
Definition: l1_seabass.h:10
int year_index
Definition: l1_seabass.h:15
int * field_indexes
Definition: l1_seabass.h:12
int month_index
Definition: l1_seabass.h:16
int lat_index
Definition: l1_seabass.h:14
int open_seabass(filehandle *file)
Definition: l1_seabass.cpp:31
int hour_index
Definition: l1_seabass.h:18
int close_seabass(filehandle *file)
Definition: l1_seabass.cpp:221