File: he5_za_setup.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 (83 lines) | stat: -rwxr-xr-x 2,519 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
/*
 ----------------------------------------------------------------------------
 |    Copyright (C) 2002   Emergent IT Inc. and Raytheon Systems Company    |
 ----------------------------------------------------------------------------
 */


#include    <HE5_HdfEosDef.h>


/*  In this program we (1) open an HDF-EOS file, (2) create the ZA    */
/*  interface within the file, and (3) define the za field dimensions */
/*  ----------------------------------------------------------------- */

int main()
{
  herr_t         status = FAIL; 

  hid_t          zafid = FAIL;
  hid_t          ZAid  = FAIL;


  
  /* Open a new HDF-EOS za file, "ZA.he5" */
  /* ----------------------------------- */
  zafid = HE5_ZAopen("ZA.he5", H5F_ACC_TRUNC);
  printf("File ID returned by HE5_ZAopen():       %ld \n", (long) zafid);
  
  /* Create the ZA, "ZA1", within the file */
  /* ------------------------------------- */
  ZAid = HE5_ZAcreate(zafid, "ZA1");
  printf("ZA ID returned by HE5_ZAcreate():    %ld \n", (long) ZAid);

  /* Define dimensions and specify their sizes */
  /* ----------------------------------------- */
  status = HE5_ZAdefdim(ZAid, "MyTrack1", 20);
  printf("Status returned by HE5_ZAdefdim():      %d \n", status);

  status = HE5_ZAdefdim(ZAid, "MyTrack2", 10);
  printf("Status returned by HE5_ZAdefdim():      %d \n", status);

  status = HE5_ZAdefdim(ZAid, "Res2tr", 40);
  printf("Status returned by HE5_ZAdefdim():      %d \n", status);

  status = HE5_ZAdefdim(ZAid, "Res2xtr", 20);
  printf("Status returned by HE5_ZAdefdim():      %d \n", status);

  status = HE5_ZAdefdim(ZAid, "Bands", 15);
  printf("Status returned by HE5_ZAdefdim():      %d \n", status);

  status = HE5_ZAdefdim(ZAid, "IndxTrack", 12);
  printf("Status returned by HE5_ZAdefdim():      %d \n", status);

  /* Define "External" Dimension */
  /* --------------------------- */
  status = HE5_ZAdefdim(ZAid, "ExtDim", 60);
  printf("Status returned by HE5_ZAdefdim():      %d \n", status);

  /* Define Unlimited Dimension */
  /* -------------------------- */
  status = HE5_ZAdefdim(ZAid, "Unlim", H5S_UNLIMITED);
  printf("Status returned by HE5_ZAdefdim():      %d \n", status);


  /* Close the za interface */
  /* ---------------------- */
  status = HE5_ZAdetach(ZAid);
  printf("Status returned by HE5_ZAdetach():      %d \n", status);

  /* Close the za file */
  /* ----------------- */
  status = HE5_ZAclose(zafid);
  printf("Status returned by HE5_ZAclose():       %d \n", status);


  return 0;

}