You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
957 B
23 lines
957 B
/*********************************************************************
|
|
* Copyright 2018, UCAR/Unidata
|
|
* 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"
|
|
#define NC_ATT_NETCDF4 "_NetCDF4"
|
|
#define NC_ATT_FILTER "_Filter"
|
|
|
|
#endif /*_CDL_H_ */
|
|
|