OB.DAAC Logo
NASA Logo
Ocean Color Science Software

ocssw V2022
table_io_wrapper.h
Go to the documentation of this file.
1 #ifndef _TABLE_IO_WRAPPER_H
2 #define _TABLE_IO_WRAPPER_H
3 
4 int table_column_count(char *input_filename);
5 int table_row_count(char *input_filename);
6 int *table_read_i4(char *input_filename, int m, int n);
7 double *table_read_r8(char *input_filename, int m, int n);
8 float *table_read_r4(char *input_filename, int m, int n);
9 void table_free_i4(int *table);
10 void table_free_r8(double *table);
11 void table_free_r4(float *table);
12 
13 #endif
double * table_read_r8(char *input_filename, int m, int n)
Definition: table_io.cpp:2536
int table_column_count(char *input_filename)
Definition: table_io.cpp:2524
an array had not been initialized Several spelling and grammar corrections were which is read from the appropriate MCF the above metadata values were hard coded A problem calculating the average background DN for SWIR bands when the moon is in the space view port was corrected The new algorithm used to calculate the average background DN for all reflective bands when the moon is in the space view port is now the same as the algorithm employed by the thermal bands For non SWIR changes in the averages are typically less than Also for non SWIR the black body DNs remain a backup in case the SV DNs are not available For SWIR the changes in computed averages were larger because the old which used the black body suffered from contamination by the micron leak As a consequence of the if SV DNs are not available for the SWIR the EV pixels will not be the granule time is used to identify the appropriate tables within the set given for one LUT table(e.g. m1) to be used for interpolation. The table values will be linearly interpolated using the tables corresponding to the node times bracketing the granule time. If the granule time falls before the time of the first node or after the time of the last node
void table_free_i4(int *table)
Definition: table_io.cpp:2544
int table_row_count(char *input_filename)
Definition: table_io.cpp:2528
void table_free_r4(float *table)
Definition: table_io.cpp:2552
float * table_read_r4(char *input_filename, int m, int n)
Definition: table_io.cpp:2540
int * table_read_i4(char *input_filename, int m, int n)
Definition: table_io.cpp:2532
void table_free_r8(double *table)
Definition: table_io.cpp:2548