/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright by The HDF Group. * * 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 COPYING file, which can be found at the root of the source code * * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. * * If you do not have access to either file, you may request a copy from * * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* * Programmer: Quincey Koziol * Thursday, November 14, 2002 * * Purpose: Create a dataset compressed with the deflate filter. * This program is used to create the test file `tdeflate.h5' which has * a dataset compressed with the "deflate" I/O filter. This dataset will * be used to verify the correct behavior of the library when a filter is * not available for a dataset which requires it. */ #include "hdf5.h" #define TESTFILE "deflate.h5" /* 2-D dataset with fixed dimensions */ #define SPACE_RANK 2 #define SPACE_DIM1 100 #define SPACE_DIM2 200 #define CHUNK_DIM1 50 #define CHUNK_DIM2 50 /* Dataset data */ int data[SPACE_DIM1][SPACE_DIM2]; /*------------------------------------------------------------------------- * Function: main * * Purpose: * * Return: Success: * * Failure: * * Programmer: Quincey Koziol * Thursday, November 14, 2002 * * Modifications: * *------------------------------------------------------------------------- */ int main(void) { hid_t file, space, dset, dcpl; hsize_t dims[SPACE_RANK]={SPACE_DIM1,SPACE_DIM2}; hsize_t chunk_dims[SPACE_RANK]={CHUNK_DIM1,CHUNK_DIM2}; size_t i,j; /* Local index variables */ /* Initialize the data */ /* (Try for something easily compressible) */ for(i=0; i