bes  Updated for version 3.20.13
FONcNames.h
1 //
2 // Created by ndp on 7/8/22.
3 //
4 
5 #ifndef BES_FONCNAMES_H
6 #define BES_FONCNAMES_H
7 
8 #define FONC_TEMP_DIR "/tmp"
9 #define FONC_TEMP_DIR_KEY "FONc.Tempdir"
10 
11 // I think this should be true always. I'm leaving it in for now
12 // but the code does not use the key. Maybe this will be used when
13 // there is more comprehensive support for DAP4. jhrg 11/30/15
14 #define FONC_BYTE_TO_SHORT true
15 #define FONC_BYTE_TO_SHORT_KEY "FONc.ByteToShort"
16 
17 #define FONC_USE_COMP true
18 #define FONC_USE_COMP_KEY "FONc.UseCompression"
19 
20 #define FONC_USE_SHUFFLE false
21 #define FONC_USE_SHUFFLE_KEY "FONc.UseShuffle"
22 
23 #define FONC_CHUNK_SIZE 4096
24 #define FONC_CHUNK_SIZE_KEY "FONc.ChunkSize"
25 
26 #define FONC_CLASSIC_MODEL true
27 #define FONC_CLASSIC_MODEL_KEY "FONc.ClassicModel"
28 
29 #define FONC_NO_GLOBAL_ATTRS false
30 #define FONC_NO_GLOBAL_ATTRS_KEY "FONc.NoGlobalAttrs"
31 
32 #define FONC_REQUEST_MAX_SIZE_KB 0
33 #define FONC_REQUEST_MAX_SIZE_KB_KEY "FONc.RequestMaxSizeKB"
34 
35 #define FONC_NC3_CLASSIC_FORMAT false
36 #define FONC_NC3_CLASSIC_FORMAT_KEY "FONc.NC3ClassicFormat"
37 
38 #define FONC_RETURN_AS_NETCDF3 "netcdf"
39 #define FONC_RETURN_AS_NETCDF4 "netcdf-4"
40 #define FONC_NC4_CLASSIC_MODEL "NC4_CLASSIC_MODEL"
41 #define FONC_NC4_ENHANCED "NC4_ENHANCED"
42 
43 // May add netCDF-3 CDF-5 in the future.
44 
45 #endif //BES_FONCNAMES_H