OB.DAAC Logo
NASA Logo
Ocean Color Science Software

ocssw V2022
read_l3bin.h
Go to the documentation of this file.
1 #ifndef _READ_L3BIN_H
2 #define _READ_L3BIN_H
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 
8 #include "l12_proto.h"
9 
10 typedef struct l3bin_struct {
11  char *file;
12  int32_t sensorID;
13  int32_t nbins;
14  int32_t nprods;
15  int32_t nrows;
16  int32_t *numbin;
17  int32_t *basebin;
18  int32_t *bins;
19  int32_t *nobs;
20  int32_t *nscenes;
21  float *chl;
22  float *tau;
23  float **data; // This is to contain nLw or Rrs
24  char **prods;
25  int32_t nwave;
26  int hasRrs;
27  float *wavelengths;
28 } l3binstr;
29 
30 //int32_t read_l3bin (char *file, char prodlist_wt[MAXPROD][32], int32_t nprods_wt, l3binstr *l3bin);
31 int32_t read_l3bin(char *file, l3binstr *l3bin, int32_t nbands);
32 
33 #ifdef __cplusplus
34 }
35 #endif
36 
37 #endif
float * tau
Definition: read_l3bin.h:22
int32_t * bins
Definition: read_l3bin.h:18
char ** prods
Definition: read_l3bin.h:24
float * chl
Definition: read_l3bin.h:21
int32_t * nscenes
Definition: read_l3bin.h:20
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
int32_t nwave
Definition: read_l3bin.h:25
float * wavelengths
Definition: read_l3bin.h:27
int32_t * nobs
Definition: read_l3bin.h:19
int32_t nrows
Definition: read_l3bin.h:15
int32_t read_l3bin(char *file, l3binstr *l3bin, int32_t nbands)
Definition: read_l3bin.cpp:27
int32_t nprods
Definition: read_l3bin.h:14
float ** data
Definition: read_l3bin.h:23
int32_t nbins
Definition: read_l3bin.h:13
int32_t * basebin
Definition: read_l3bin.h:17
int32_t nbands
int32_t * numbin
Definition: read_l3bin.h:16
int32_t sensorID
Definition: read_l3bin.h:12
char * file
Definition: read_l3bin.h:11