2010-06-03 21:24:43 +08:00
|
|
|
/*********************************************************************
|
2018-12-07 06:36:53 +08:00
|
|
|
* Copyright 2018, UCAR/Unidata
|
2010-06-03 21:24:43 +08:00
|
|
|
* See netcdf/COPYRIGHT file for copying and redistribution conditions.
|
|
|
|
* $Header: /upc/share/CVS/netcdf-3/ncdump/cdl.h,v 1.3 2008/12/22 16:42:36 russ Exp $
|
|
|
|
*********************************************************************/
|
|
|
|
#ifndef _CDL_H_
|
|
|
|
#define _CDL_H_
|
|
|
|
|
|
|
|
/* Names of special performance-related virtual attributes for
|
|
|
|
* netCDF-4, displayed with "ncdump -s". ncdump and ncgen need to
|
|
|
|
* know these, as they are used in CDL. */
|
|
|
|
#define NC_ATT_FORMAT "_Format"
|
|
|
|
#define NC_ATT_CHECKSUM "_Fletcher32"
|
|
|
|
#define NC_ATT_CHUNKING "_ChunkSizes"
|
|
|
|
#define NC_ATT_ENDIANNESS "_Endianness"
|
|
|
|
#define NC_ATT_DEFLATE "_DeflateLevel"
|
|
|
|
#define NC_ATT_SHUFFLE "_Shuffle"
|
|
|
|
#define NC_ATT_STORAGE "_Storage"
|
|
|
|
#define NC_ATT_NOFILL "_NoFill"
|
2016-05-04 11:17:06 +08:00
|
|
|
#define NC_ATT_NETCDF4 "_NetCDF4"
|
2017-05-15 08:10:02 +08:00
|
|
|
#define NC_ATT_FILTER "_Filter"
|
2010-06-03 21:24:43 +08:00
|
|
|
|
|
|
|
#endif /*_CDL_H_ */
|