2004-02-10 23:42:55 +08:00
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
2007-02-07 22:56:24 +08:00
|
|
|
* Copyright by The HDF Group. *
|
2004-02-10 23:42:55 +08:00
|
|
|
* Copyright by the Board of Trustees of the University of Illinois. *
|
|
|
|
* All rights reserved. *
|
|
|
|
* *
|
|
|
|
* This file is part of HDF5. The full HDF5 copyright notice, including *
|
|
|
|
* terms governing use, modification, and redistribution, is contained in *
|
|
|
|
* the files COPYING and Copyright.html. COPYING can be found at the root *
|
|
|
|
* of the source code distribution tree; Copyright.html can be found at the *
|
|
|
|
* root level of an installed copy of the electronic HDF5 document set and *
|
|
|
|
* is linked from the top-level documents page. It can also be found at *
|
2007-02-07 22:56:24 +08:00
|
|
|
* http://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have *
|
|
|
|
* access to either file, you may request a copy from help@hdfgroup.org. *
|
2004-02-10 23:42:55 +08:00
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
|
2005-08-14 04:53:35 +08:00
|
|
|
/*
|
1998-07-09 04:41:14 +08:00
|
|
|
* This example writes data to the HDF5 file.
|
2005-08-14 04:53:35 +08:00
|
|
|
* Data conversion is performed during write operation.
|
1998-02-09 02:38:20 +08:00
|
|
|
*/
|
2005-08-14 04:53:35 +08:00
|
|
|
|
2001-04-04 02:33:07 +08:00
|
|
|
#include "hdf5.h"
|
1998-02-09 02:38:20 +08:00
|
|
|
|
2001-06-06 02:00:37 +08:00
|
|
|
#define H5FILE_NAME "SDS.h5"
|
2005-08-14 04:53:35 +08:00
|
|
|
#define DATASETNAME "IntArray"
|
1998-02-09 02:38:20 +08:00
|
|
|
#define NX 5 /* dataset dimensions */
|
|
|
|
#define NY 6
|
|
|
|
#define RANK 2
|
|
|
|
|
1998-09-01 03:21:23 +08:00
|
|
|
int
|
|
|
|
main (void)
|
1998-02-09 02:38:20 +08:00
|
|
|
{
|
1998-09-01 03:21:23 +08:00
|
|
|
hid_t file, dataset; /* file and dataset handles */
|
|
|
|
hid_t datatype, dataspace; /* handles */
|
|
|
|
hsize_t dimsf[2]; /* dataset dimensions */
|
2005-08-14 04:53:35 +08:00
|
|
|
herr_t status;
|
1998-09-01 03:21:23 +08:00
|
|
|
int data[NX][NY]; /* data to write */
|
|
|
|
int i, j;
|
1998-02-09 02:38:20 +08:00
|
|
|
|
2005-08-14 04:53:35 +08:00
|
|
|
/*
|
|
|
|
* Data and output buffer initialization.
|
1998-09-01 03:21:23 +08:00
|
|
|
*/
|
|
|
|
for (j = 0; j < NX; j++) {
|
|
|
|
for (i = 0; i < NY; i++)
|
|
|
|
data[j][i] = i + j;
|
2005-08-14 04:53:35 +08:00
|
|
|
}
|
1998-09-01 03:21:23 +08:00
|
|
|
/*
|
2005-08-14 04:53:35 +08:00
|
|
|
* 0 1 2 3 4 5
|
1998-09-01 03:21:23 +08:00
|
|
|
* 1 2 3 4 5 6
|
|
|
|
* 2 3 4 5 6 7
|
|
|
|
* 3 4 5 6 7 8
|
|
|
|
* 4 5 6 7 8 9
|
|
|
|
*/
|
1998-02-09 02:38:20 +08:00
|
|
|
|
1998-09-01 03:21:23 +08:00
|
|
|
/*
|
|
|
|
* Create a new file using H5F_ACC_TRUNC access,
|
|
|
|
* default file creation properties, and default file
|
|
|
|
* access properties.
|
|
|
|
*/
|
2001-06-06 02:00:37 +08:00
|
|
|
file = H5Fcreate(H5FILE_NAME, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
|
1998-02-09 02:38:20 +08:00
|
|
|
|
1998-09-01 03:21:23 +08:00
|
|
|
/*
|
|
|
|
* Describe the size of the array and create the data space for fixed
|
2005-08-14 04:53:35 +08:00
|
|
|
* size dataset.
|
1998-09-01 03:21:23 +08:00
|
|
|
*/
|
|
|
|
dimsf[0] = NX;
|
|
|
|
dimsf[1] = NY;
|
2005-08-14 04:53:35 +08:00
|
|
|
dataspace = H5Screate_simple(RANK, dimsf, NULL);
|
1998-02-09 02:38:20 +08:00
|
|
|
|
2005-08-14 04:53:35 +08:00
|
|
|
/*
|
1998-09-01 03:21:23 +08:00
|
|
|
* Define datatype for the data in the file.
|
|
|
|
* We will store little endian INT numbers.
|
|
|
|
*/
|
|
|
|
datatype = H5Tcopy(H5T_NATIVE_INT);
|
|
|
|
status = H5Tset_order(datatype, H5T_ORDER_LE);
|
1998-02-09 02:38:20 +08:00
|
|
|
|
1998-09-01 03:21:23 +08:00
|
|
|
/*
|
|
|
|
* Create a new dataset within the file using defined dataspace and
|
|
|
|
* datatype and default dataset creation properties.
|
|
|
|
*/
|
|
|
|
dataset = H5Dcreate(file, DATASETNAME, datatype, dataspace,
|
|
|
|
H5P_DEFAULT);
|
1998-02-09 02:38:20 +08:00
|
|
|
|
1998-09-01 03:21:23 +08:00
|
|
|
/*
|
|
|
|
* Write the data to the dataset using default transfer properties.
|
|
|
|
*/
|
|
|
|
status = H5Dwrite(dataset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL,
|
|
|
|
H5P_DEFAULT, data);
|
1998-02-09 02:38:20 +08:00
|
|
|
|
1998-09-01 03:21:23 +08:00
|
|
|
/*
|
|
|
|
* Close/release resources.
|
|
|
|
*/
|
|
|
|
H5Sclose(dataspace);
|
|
|
|
H5Tclose(datatype);
|
|
|
|
H5Dclose(dataset);
|
|
|
|
H5Fclose(file);
|
2005-08-14 04:53:35 +08:00
|
|
|
|
1998-09-01 03:21:23 +08:00
|
|
|
return 0;
|
2005-08-14 04:53:35 +08:00
|
|
|
}
|