A sphere with three ocean waves in differing shades of blue. Next to the sphere, there is the bolded text "Ocean Color". Under that, there are two acronyms, separated by a vertical pipe: OB.DAAC (Ocean Biology Distributed Active Archive Center) and OBPG (Ocean Biology Processing Group).
Lorem
ipsum
dolor
sit
amet
Toggle navigation
Ocean Color Science Software
Jump to content
ocssw
V2022
web
ocssw
ocssw_src
src
l2gen
target_struc.h
Go to the documentation of this file.
1
#ifndef _TARGET_STRUC_H
2
#define _TARGET_STRUC_H
3
4
typedef
struct
target_struct
{
5
int32_t
sensorID
;
6
int32_t
subsensorID
;
7
int32_t
length
;
8
int32_t
npix
;
9
int32_t
mode
;
10
char
*
data
;
11
int32_t *
year
;
12
int32_t *
day
;
13
int32_t *
msec
;
14
float
*
solz
;
15
float
*
Lw
;
16
float
*
nLw
;
17
} tgstr;
18
19
#endif
20
21
22
target_struct::solz
float * solz
Definition:
target_struc.h:14
target_struct
Definition:
target_struc.h:4
target_struct::Lw
float * Lw
Definition:
target_struc.h:15
target_struct::nLw
float * nLw
Definition:
target_struc.h:16
target_struct::msec
int32_t * msec
Definition:
target_struc.h:13
target_struct::data
char * data
Definition:
target_struc.h:10
target_struct::length
int32_t length
Definition:
target_struc.h:7
target_struct::year
int32_t * year
Definition:
target_struc.h:11
target_struct::mode
int32_t mode
Definition:
target_struc.h:9
target_struct::subsensorID
int32_t subsensorID
Definition:
target_struc.h:6
target_struct::sensorID
int32_t sensorID
Definition:
target_struc.h:5
target_struct::npix
int32_t npix
Definition:
target_struc.h:8
target_struct::day
int32_t * day
Definition:
target_struc.h:12