OB.DAAC Logo
NASA Logo
Ocean Color Science Software

ocssw V2022
vcal_struc.h
Go to the documentation of this file.
1 #ifndef _VCAL_STRUC_H
2 #define _VCAL_STRUC_H
3 
4 typedef struct vcal_struct {
5  int32_t sensorID;
6  int32_t length;
7  int32_t npix;
8  int32_t nbands;
9  char *data;
10  float *vLt;
11  float *Lw;
12  float *nLw;
13  float *tLw;
14  float *brdfsat;
15  float *brdftgt;
16 } vcstr;
17 
18 #endif
19 
20 
21 
char * data
Definition: vcal_struc.h:9
int32_t sensorID
Definition: vcal_struc.h:5
int32_t npix
Definition: vcal_struc.h:7
float * vLt
Definition: vcal_struc.h:10
float * brdftgt
Definition: vcal_struc.h:15
float * Lw
Definition: vcal_struc.h:11
int32_t nbands
Definition: vcal_struc.h:8
float * tLw
Definition: vcal_struc.h:13
float * brdfsat
Definition: vcal_struc.h:14
int32_t length
Definition: vcal_struc.h:6
float * nLw
Definition: vcal_struc.h:12