#include #include #include "swepam_denge.h" #include "df.h" void main(argc, argv) int argc; char *argv[]; { int32 hdf_fp, SD_id; struct DENGE testdata; int ii,jj,kk,retval; int32 numrec; 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); } numrec = init_rd_swepam_denge(hdf_fp, SD_id, "r"); if(numrec <= 0) { fprintf(stderr,"No swepam_denge data\n"); exit(-1); } /* read and print data */ ii=0; while((retval=read_swepam_denge(&testdata,ii))!=-1) { printf("ii=%4d %10u %3d \n", ii++, testdata.output_sctime, testdata.QAC); for(jj=0;jj<16;jj++) { printf("\t%4d %4d %4d\n", testdata.EventFlag[jj], testdata.StatRec[jj][0], testdata.MinFrmChk[jj]); } printf("\n"); } /* all done, close HDF interface */ close_rd_swepam_denge(); Vend(hdf_fp); SDend(SD_id); if (Hclose(hdf_fp)==FAIL) { fprintf(stderr, "Hclose: could not close hdf file\n"); exit(-1); } exit(0); }