2006-03-07 00:11:11 +08:00
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
2007-02-07 22:56:24 +08:00
|
|
|
* Copyright by The HDF Group. *
|
2006-03-07 00:11:11 +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 *
|
2017-04-18 03:32:16 +08:00
|
|
|
* the COPYING file, which can be found at the root of the source code *
|
2021-02-17 22:52:36 +08:00
|
|
|
* distribution tree, or in https://www.hdfgroup.org/licenses. *
|
2017-04-18 03:32:16 +08:00
|
|
|
* If you do not have access to either file, you may request a copy from *
|
|
|
|
* help@hdfgroup.org. *
|
2006-03-07 00:11:11 +08:00
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
2006-03-01 23:05:37 +08:00
|
|
|
|
2006-04-13 05:21:38 +08:00
|
|
|
#include "hdf5.h"
|
2006-04-20 12:49:06 +08:00
|
|
|
#include "hdf5_hl.h"
|
2006-03-01 23:05:37 +08:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#define ATTR_SIZE 5
|
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
int
|
|
|
|
main(void)
|
2006-03-01 23:05:37 +08:00
|
|
|
{
|
2020-09-30 22:27:10 +08:00
|
|
|
hid_t file_id;
|
|
|
|
hid_t dset_id;
|
|
|
|
hid_t space_id;
|
|
|
|
hsize_t dims[1] = {ATTR_SIZE};
|
|
|
|
int data[ATTR_SIZE] = {1, 2, 3, 4, 5};
|
|
|
|
int i;
|
2006-06-27 22:45:06 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/* create a file */
|
|
|
|
file_id = H5Fcreate("ex_lite3.h5", H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
|
2006-03-01 23:05:37 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/* create a data space */
|
|
|
|
space_id = H5Screate_simple(1, dims, NULL);
|
2006-03-01 23:05:37 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/* create a dataset named "dset" */
|
|
|
|
dset_id = H5Dcreate2(file_id, "dset", H5T_NATIVE_INT, space_id, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
2006-03-01 23:05:37 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/* close */
|
|
|
|
H5Dclose(dset_id);
|
|
|
|
H5Sclose(space_id);
|
2006-03-01 23:05:37 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* example of H5LTset_attribute_int
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
2006-06-27 22:45:06 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/* create and write the attribute "attr1" on the dataset "dset" */
|
|
|
|
H5LTset_attribute_int(file_id, "dset", "attr1", data, ATTR_SIZE);
|
2006-03-01 23:05:37 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* example of H5LTget_attribute_int
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
2006-03-01 23:05:37 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/* get the attribute "attr1" from the dataset "dset" */
|
|
|
|
H5LTget_attribute_int(file_id, "dset", "attr1", data);
|
2006-03-01 23:05:37 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
for (i = 0; i < ATTR_SIZE; i++)
|
|
|
|
printf(" %d", data[i]);
|
|
|
|
printf("\n");
|
2006-03-01 23:05:37 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/* close file */
|
|
|
|
H5Fclose(file_id);
|
2006-03-01 23:05:37 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
return 0;
|
2006-03-01 23:05:37 +08:00
|
|
|
}
|