1 /*********************************************************************
2  *   Copyright 1993, UCAR/Unidata
3  *   See netcdf/COPYRIGHT file for copying and redistribution conditions.
4  *   $Header: /upc/share/CVS/netcdf-3/ncdump/cdl.h,v 1.3 2008/12/22 16:42:36 russ Exp $
5  *********************************************************************/
6 #ifndef _CDL_H_
7 #define _CDL_H_
8 
9 /* Names of special performance-related virtual attributes for
10  * netCDF-4, displayed with "ncdump -s".  ncdump and ncgen need to
11  * know these, as they are used in CDL. */
12 #define NC_ATT_FORMAT      "_Format"
13 #define NC_ATT_CHECKSUM    "_Fletcher32"
14 #define NC_ATT_CHUNKING    "_ChunkSizes"
15 #define NC_ATT_ENDIANNESS  "_Endianness"
16 #define NC_ATT_DEFLATE     "_DeflateLevel"
17 #define NC_ATT_SHUFFLE     "_Shuffle"
18 #define NC_ATT_STORAGE     "_Storage"
19 #define NC_ATT_NOFILL      "_NoFill"
20 #define NC_ATT_NETCDF4     "_NetCDF4"
21 #define NC_ATT_FILTER      "_Filter"
22 
23 #endif	/*_CDL_H_ */
24