-
Notifications
You must be signed in to change notification settings - Fork 266
/
Copy pathcdl.h
23 lines (21 loc) · 957 Bytes
/
cdl.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*********************************************************************
* 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_ */