#include #include #include "swepam_dstea.h" #include "df.h" void main(argc, argv) int argc; char *argv[]; { int32 hdf_fp, SD_id; struct DSTEA testdata; int ii,jj,kk,retval; if (argc!=2) { printf("Usage: %s hdf_file\n",argv[0]); exit(1); } /* open hdf input file */ if ((hdf_fp=Hopen(argv[1], DFACC_RDONLY, 0))==FAIL) { fprintf(stderr, "Hopen: could not open hdf file\n"); exit(-1); } Vstart(hdf_fp); if ((SD_id=SDstart(argv[1], DFACC_RDONLY))==FAIL) { fprintf(stderr, "SDstart: could not open hdf file\n"); exit(-1); } if( init_rd_swepam_dstea(hdf_fp, SD_id, "r") <= 0) { fprintf(stderr,"No swepam dstea data\n"); exit(-1); } /* read and print data */ ii=0; while((retval=read_swepam_dstea(&testdata,ii))!=-1) { printf("ii=%4d %10u %3d \n", ii++, testdata.output_sctime, testdata.QAC); printf("\n\t"); for(jj=0;jj<5;jj++) { for(kk=0;kk<6;kk++) printf("%6d ",testdata.COUNT[jj][kk][0][0]); printf("\n\t"); } printf("\n"); } /* all done, close HDF interface */ close_rd_swepam_dstea(); Vend(hdf_fp); SDend(SD_id); if (Hclose(hdf_fp)==FAIL) { fprintf(stderr, "Hclose: could not close hdf file\n"); exit(-1); } exit(0); }