File: he5_pt_definelevels.c

package info (click to toggle)
hdf-eos5 2%3A2.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 14,692 kB
  • sloc: ansic: 92,051; fortran: 31,463; sh: 11,395; makefile: 492
file content (395 lines) | stat: -rwxr-xr-x 10,013 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
/*
 ----------------------------------------------------------------------------
 |    Copyright (C) 1999   Emergent IT Inc. and Raytheon Systems Company    |  
 ----------------------------------------------------------------------------  
 */


#include <HE5_HdfEosDef.h>

/* File name: he5_pt_definelevels.c */
/* -------------------------------- */

/*
 * In this example we will open the "Point.h5" HDF-EOS file 
 *             and define the point levels.
 */


int main()
{
  herr_t            status = FAIL;

  int               i;

  hid_t             ptfid = FAIL, PTid = FAIL;

  HE5_CmpDTSinfo    *dtsinfo;

  typedef struct
	{
	  double          time;
	  float           concentr[4];
	  char            spec[8];

	} InputData1;

  typedef struct
	{
	  char        label[8];
	  double      lon;
	  double      lat;
	  int         date;
	  char        id[8];
	} InputData2;


  typedef struct
	{
	  double      time;
	  float       rain;
	  float       temp;
	  char        id[8];
	} InputData3;


  typedef struct
	{
	  char        label[10];
	  int         date;
	  int         weight;
	  char        id[8];
	} InputData4;


  typedef struct
	{
	  double      time;
	  double      lon;
	  double      lat;
	  float       rain;
	  float       temp;
	  char        id[8];
	} InputData5;


  /*
   * We first open the HDF-EOS point file, "Point.h5".  Because this file
   * already exist and we wish to write to it, we use the H5F_ACC_RDWR access
   * code in the open statement.  The PTopen routine returns the point file
   * id, ptfid, which is used to identify the file in subsequent routines.
   */

  ptfid = HE5_PTopen("Point.h5", H5F_ACC_RDWR);
  if (ptfid != FAIL)
    {
	  /* Simple Point */
	  /* ------------ */
	  PTid = HE5_PTattach(ptfid, "Simple Point");

      dtsinfo = (HE5_CmpDTSinfo *)calloc(1, sizeof(HE5_CmpDTSinfo));

	  /* Set up level data structure */
	  /* --------------------------- */
	  dtsinfo->nfields = 3;

	  dtsinfo->rank[0] = 1;
	  dtsinfo->rank[1] = 1;
	  dtsinfo->rank[2] = 1;

	  dtsinfo->offset[0] = HOFFSET(InputData1, time);
	  dtsinfo->offset[1] = HOFFSET(InputData1, concentr);
	  dtsinfo->offset[2] = HOFFSET(InputData1, spec);
	  
	  dtsinfo->dtype[0] = H5T_NATIVE_DOUBLE;
	  dtsinfo->dtype[1] = H5T_NATIVE_FLOAT;
	  dtsinfo->dtype[2] = H5T_NATIVE_CHAR;

	  dtsinfo->array[0] = 0;
	  dtsinfo->array[1] = 1;
	  dtsinfo->array[2] = 1;

	  for (i = 0; i < 3; i++)
		dtsinfo->fieldname[i] = (char *)calloc(64, sizeof(char));

	  strcpy(dtsinfo->fieldname[0],"Time");
	  strcpy(dtsinfo->fieldname[1],"Concentration");
	  strcpy(dtsinfo->fieldname[2],"Species");
	  
	  dtsinfo->dims[0][0] = 1;
	  dtsinfo->dims[1][0] = 4;
	  dtsinfo->dims[2][0] = 8;

      dtsinfo->datasize = (size_t)sizeof(InputData1);
	
	  status = HE5_PTdeflevel(PTid, "Sensor", dtsinfo);
	  printf("Status returned by HE5_PTdeflevel() :   %d \n", status);
	  
	  for (i = 0; i < 3; i++)
		{
		  free(dtsinfo->fieldname[i]);
		  dtsinfo->fieldname[i] = NULL;
		}

	  free(dtsinfo);


	  HE5_PTdetach(PTid);

	  /* Fixed Buoy Point */
	  /* ---------------- */
	  PTid = HE5_PTattach(ptfid, "FixedBuoy Point");

      dtsinfo = (HE5_CmpDTSinfo *)calloc(1, sizeof(HE5_CmpDTSinfo));

	  /* Set up level data struvcture */
	  /* ---------------------------- */
	  dtsinfo->nfields = 5;

	  dtsinfo->rank[0] = 1;
	  dtsinfo->rank[1] = 1;
	  dtsinfo->rank[2] = 1;
	  dtsinfo->rank[3] = 1;
	  dtsinfo->rank[4] = 1;

	  dtsinfo->array[0] = 1;
	  dtsinfo->array[1] = 0;
	  dtsinfo->array[2] = 0;
	  dtsinfo->array[3] = 0;
	  dtsinfo->array[4] = 1;

	  dtsinfo->offset[0] = HOFFSET(InputData2, label);
	  dtsinfo->offset[1] = HOFFSET(InputData2, lon);
	  dtsinfo->offset[2] = HOFFSET(InputData2, lat);
	  dtsinfo->offset[3] = HOFFSET(InputData2, date);
	  dtsinfo->offset[4] = HOFFSET(InputData2, id);
	  
	  dtsinfo->dtype[0] = H5T_NATIVE_CHAR;
	  dtsinfo->dtype[1] = H5T_NATIVE_DOUBLE;
	  dtsinfo->dtype[2] = H5T_NATIVE_DOUBLE;
	  dtsinfo->dtype[3] = H5T_NATIVE_INT;
	  dtsinfo->dtype[4] = H5T_NATIVE_CHAR;

	  for (i = 0; i < 5; i++)
		dtsinfo->fieldname[i] = (char *)calloc(64, sizeof(char));

	  strcpy(dtsinfo->fieldname[0],"Label");
	  strcpy(dtsinfo->fieldname[1],"Longitude");
	  strcpy(dtsinfo->fieldname[2],"Latitude");
	  strcpy(dtsinfo->fieldname[3],"DeployDate");
	  strcpy(dtsinfo->fieldname[4],"ID");
	  
	  dtsinfo->dims[0][0] = 8;
	  dtsinfo->dims[1][0] = 1;
	  dtsinfo->dims[2][0] = 1;
	  dtsinfo->dims[3][0] = 1;
	  dtsinfo->dims[4][0] = 8;

      dtsinfo->datasize = (size_t)sizeof(InputData2);

	  status = HE5_PTdeflevel(PTid, "Desc-Loc", dtsinfo);
	  printf("Status returned by HE5_PTdeflevel() :   %d \n", status);

	  for (i = 0; i < 5; i++)
		free(dtsinfo->fieldname[i]);

	  free(dtsinfo);

	  dtsinfo = (HE5_CmpDTSinfo *)calloc(1, sizeof(HE5_CmpDTSinfo));
	  
	  /* Set up level data structure */
	  /* --------------------------- */
	  dtsinfo->nfields = 4;

	  dtsinfo->rank[0] = 1;
	  dtsinfo->rank[1] = 1;
	  dtsinfo->rank[2] = 1;
	  dtsinfo->rank[3] = 1;

	  dtsinfo->array[0] = 0;
	  dtsinfo->array[1] = 0;
	  dtsinfo->array[2] = 0;
	  dtsinfo->array[3] = 1;

	  dtsinfo->offset[0] = HOFFSET(InputData3, time);
	  dtsinfo->offset[1] = HOFFSET(InputData3, rain);
	  dtsinfo->offset[2] = HOFFSET(InputData3, temp);
	  dtsinfo->offset[3] = HOFFSET(InputData3, id);
	  
	  dtsinfo->dtype[0] = H5T_NATIVE_DOUBLE;
	  dtsinfo->dtype[1] = H5T_NATIVE_FLOAT;
	  dtsinfo->dtype[2] = H5T_NATIVE_FLOAT;
	  dtsinfo->dtype[3] = H5T_NATIVE_CHAR;

	  for (i = 0; i < 4; i++)
		dtsinfo->fieldname[i] = (char *)calloc(64, sizeof(char));

	  strcpy(dtsinfo->fieldname[0],"Time");
	  strcpy(dtsinfo->fieldname[1],"Rainfall");
	  strcpy(dtsinfo->fieldname[2],"Temperature");
	  strcpy(dtsinfo->fieldname[3],"ID");
	  
	  dtsinfo->dims[0][0] = 1;
	  dtsinfo->dims[1][0] = 1;
	  dtsinfo->dims[2][0] = 1;
	  dtsinfo->dims[3][0] = 8;

      dtsinfo->datasize = (size_t)sizeof(InputData3);

	  status = HE5_PTdeflevel(PTid, "Observations", dtsinfo);
	  printf("Status returned by HE5_PTdeflevel() :   %d \n", status);

	  for (i = 0; i < 4; i++)
		free(dtsinfo->fieldname[i]);

	  free(dtsinfo);


	  status = HE5_PTdeflinkage(PTid, "Desc-Loc", "Observations", "ID");
	  printf("Status returned by HE5_PTdeflinkage() : %d \n", status);

	  status = HE5_PTdetach(PTid);
	  printf("Status returned by HE5_PTdetach() :     %d\n", status);
	
	  /* Floating Buoy Point */
	  /* ------------------- */
	  PTid = HE5_PTattach(ptfid, "FloatBuoy Point");


	  dtsinfo = (HE5_CmpDTSinfo *)calloc(1, sizeof(HE5_CmpDTSinfo));

	  /* Set up level data structure */
	  /* --------------------------- */
	  dtsinfo->nfields = 4;

	  dtsinfo->rank[0] = 1;
	  dtsinfo->rank[1] = 1;
	  dtsinfo->rank[2] = 1;
	  dtsinfo->rank[3] = 1;

	  dtsinfo->array[0] = 1;
	  dtsinfo->array[1] = 0;
	  dtsinfo->array[2] = 0;
	  dtsinfo->array[3] = 1;

	  dtsinfo->offset[0] = HOFFSET(InputData4, label);
	  dtsinfo->offset[1] = HOFFSET(InputData4, date);
	  dtsinfo->offset[2] = HOFFSET(InputData4, weight);
	  dtsinfo->offset[3] = HOFFSET(InputData4, id);
	  
	  dtsinfo->dtype[0] = H5T_NATIVE_CHAR;
	  dtsinfo->dtype[1] = H5T_NATIVE_INT;
	  dtsinfo->dtype[2] = H5T_NATIVE_INT;
	  dtsinfo->dtype[3] = H5T_NATIVE_CHAR;

	  for (i = 0; i < 4; i++)
		dtsinfo->fieldname[i] = (char *)calloc(64, sizeof(char));

	  strcpy(dtsinfo->fieldname[0],"Label");
	  strcpy(dtsinfo->fieldname[1],"DeployDate");
	  strcpy(dtsinfo->fieldname[2],"Weight");
	  strcpy(dtsinfo->fieldname[3],"ID");
	  
	  dtsinfo->dims[0][0] = 8;
	  dtsinfo->dims[1][0] = 1;
	  dtsinfo->dims[2][0] = 1;
	  dtsinfo->dims[3][0] = 8;

      dtsinfo->datasize = (size_t)sizeof(InputData4);

	  status = HE5_PTdeflevel(PTid, "Description",dtsinfo );
	  printf("Status returned by HE5_PTdeflevel() :   %d \n", status);

	  for (i = 0; i < 4; i++)
		free(dtsinfo->fieldname[i]);

	  free(dtsinfo);


	  /* Define Data Level */

	  dtsinfo = (HE5_CmpDTSinfo *)calloc(1, sizeof(HE5_CmpDTSinfo));
	  
	  /* Set up level data structure */
	  /* --------------------------- */
	  dtsinfo->nfields = 6;

	  dtsinfo->rank[0] = 1;
	  dtsinfo->rank[1] = 1;
	  dtsinfo->rank[2] = 1;
	  dtsinfo->rank[3] = 1;
	  dtsinfo->rank[4] = 1;
	  dtsinfo->rank[5] = 1;

	  dtsinfo->array[0] = 0;
	  dtsinfo->array[1] = 0;
	  dtsinfo->array[2] = 0;
	  dtsinfo->array[3] = 0;
	  dtsinfo->array[4] = 0;
	  dtsinfo->array[5] = 1;

	  dtsinfo->offset[0] = HOFFSET(InputData5, time);
	  dtsinfo->offset[1] = HOFFSET(InputData5, lon);
	  dtsinfo->offset[2] = HOFFSET(InputData5, lat);
	  dtsinfo->offset[3] = HOFFSET(InputData5, rain);
	  dtsinfo->offset[4] = HOFFSET(InputData5, temp);
	  dtsinfo->offset[5] = HOFFSET(InputData5, id);
	  
	  dtsinfo->dtype[0] = H5T_NATIVE_DOUBLE;
	  dtsinfo->dtype[1] = H5T_NATIVE_DOUBLE;
	  dtsinfo->dtype[2] = H5T_NATIVE_DOUBLE;
	  dtsinfo->dtype[3] = H5T_NATIVE_FLOAT;
	  dtsinfo->dtype[4] = H5T_NATIVE_FLOAT;
	  dtsinfo->dtype[5] = H5T_NATIVE_CHAR;

	  for (i = 0; i < 6; i++)
		dtsinfo->fieldname[i] = (char *)calloc(64, sizeof(char));

	  strcpy(dtsinfo->fieldname[0],"Time");
	  strcpy(dtsinfo->fieldname[1],"Longitude");
	  strcpy(dtsinfo->fieldname[2],"Latitude");
	  strcpy(dtsinfo->fieldname[3],"Rainfall");
	  strcpy(dtsinfo->fieldname[4],"Temperature");
	  strcpy(dtsinfo->fieldname[5],"ID");
	  
	  dtsinfo->dims[0][0] = 1;
	  dtsinfo->dims[1][0] = 1;
	  dtsinfo->dims[2][0] = 1;
	  dtsinfo->dims[3][0] = 1;
	  dtsinfo->dims[4][0] = 1;
	  dtsinfo->dims[5][0] = 8;

      dtsinfo->datasize = (size_t)sizeof(InputData5);

	  status = HE5_PTdeflevel(PTid, "Measurements", dtsinfo);
	  printf("Status returned by HE5_PTdeflevel() :   %d \n", status);

	  for (i = 0; i < 6; i++)
		free(dtsinfo->fieldname[i]);	  

	  free(dtsinfo);

	  status = HE5_PTdeflinkage(PTid, "Description", "Measurements", "ID");
	  printf("Status returned by HE5_PTdeflinkage() : %d \n", status);

		  
	  HE5_PTdetach(PTid);
	  HE5_PTclose(ptfid);
	}
  else 
    {
	  printf("File ID returned by HE5_PTopen() : %ld \n", (long) ptfid);
    }
  
  return 0;
}