ocssw  1.0
/disk01/web/ocssw/build/src/smigen/smigen_input.h
Go to the documentation of this file.
00001 #ifndef _INPUT_STR_H
00002 #define _INPUT_STR_H
00003 
00004 #include <stdio.h>
00005 #include <stdint.h>
00006 
00007 typedef struct input_struct {
00008 
00009   char    ifile  [FILENAME_MAX];
00010   char    ofile  [FILENAME_MAX];
00011   char    pfile  [FILENAME_MAX];
00012   char    palfile[FILENAME_MAX];
00013   char    parms  [4096];
00014   
00015   char    pversion[255];
00016   char    prod[255];
00017   int32_t    stype;
00018   int32_t    meas;
00019   float   datamin;
00020   float   datamax;
00021   float   lonwest;
00022   float   loneast;
00023   float   latnorth;
00024   float   latsouth;
00025   char    resolution[8];
00026   char    projection[8];
00027   char    palette[768];
00028   int32_t    gap_fill;
00029   float   seam_lon;
00030   char    proddesc[128];
00031   char    units[64];
00032   char    precision[4];
00033   uint32_t minobs;
00034 } instr;
00035 
00036 #endif
00037 
00038 
00039