caltrack_reader_modis_myd04.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef CALTRACK_READER_MODIS_MYD04_H
00014 #define CALTRACK_READER_MODIS_MYD04_H
00015
00016 #include "caltrack_reader_common.h"
00017
00021 typedef struct {
00022 float32 lat;
00023 float32 lon;
00024 float64 time;
00025 int16 input_pixel_index [2];
00026 int16 input_file_index;
00027 char input_file [MAX_NC_NAME];
00028 float64 optical_depth_land_and_ocean;
00029 float64 optical_depth_ratio_small_land_and_ocean;
00030 float64 effective_optical_depth_best_ocean[7];
00031 float64 angstrom_exponent_1_ocean[2];
00032 } caltrack_record_MODIS_MYD04;
00033
00041 int read_caltrack_record_MODIS_MYD04 ( const char* filename, const int i_rec, caltrack_record_MODIS_MYD04 *record );
00042
00047 void print_caltrack_record_MODIS_MYD04 ( const caltrack_record_MODIS_MYD04 const *record );
00048
00049 #endif