File: cdl.h

package info (click to toggle)
netcdf-parallel 1%3A4.7.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 105,352 kB
  • sloc: ansic: 229,114; sh: 11,180; yacc: 2,561; makefile: 1,390; lex: 1,173; xml: 173; awk: 2
file content (23 lines) | stat: -rw-r--r-- 957 bytes parent folder | download | duplicates (6)
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_ */