Due to the lapse in federal government funding, NASA is not updating this website. We sincerely regret this inconvenience.
NASA Logo
Ocean Color Science Software

ocssw V2022
smiinc.h
Go to the documentation of this file.
1 #ifndef SMIINC_H
2 #define SMIINC_H
3 
4 #define L3M_SOFTNM_VAL "smigen"
5 #define L3M_SOFTVER_VAL "5.20"
6 
7 #define SMI_MIN(a,b) (a) > (b) ? (b) : (a)
8 #define SMI_MAX(a,b) (a) > (b) ? (a) : (b)
9 #define L3M_MEASURES 7
10 #define SMI_NX 4096
11 #define SMI_NY 2048
12 #define SMI_BUFSIZE 250000
13 #define NUM_SMI_ARGS 6
14 #define SMI_LAT_NORTH 90.
15 #define SMI_LAT_SOUTH -90.
16 #define SMI_LON_WEST -180.
17 #define SMI_LON_EAST 180.
18 #define SMI_MAX_STR 1024
19 #define SMI_MAX_INFILES 30
20 #define SMI_MAX_STR_SHORT 50
21 #endif
22 
23